@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #f4faf8;
  --bg-secondary: #eef7f4;
  --bg-card: #ffffff;
  --primary: #0d9488;
  --primary-light: #ccfbf1;
  --primary-hover: #0f766e;
  --secondary: #f97316;
  --secondary-hover: #ea580c;
  --text-dark: #0f172a;
  --text-light: #ffffff;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(13, 148, 136, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(13, 148, 136, 0.08);
  --shadow-lg: 0 10px 30px -5px rgba(13, 148, 136, 0.12);
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(13, 148, 136, 0.25);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.logo-dot {
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: inline-block;
}

/* Nav Links - Desktop */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

/* Hide checkbox and label on desktop */
.nav-toggle,
.nav-toggle-label {
  display: none;
}

/* Footer styling */
footer {
  background-color: #0b221e;
  color: #a5b4fc;
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about h3 {
  color: var(--text-light);
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-about h3 span {
  color: var(--secondary);
}

.footer-about p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-links h4 {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #94a3b8;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #64748b;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
}

.footer-socials a:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.alert-overlay:target {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.alert-box {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--primary-light);
}

.alert-overlay:target .alert-box {
  transform: scale(1);
}

.alert-close-top {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.alert-close-top:hover {
  color: var(--text-dark);
}

.alert-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.alert-icon-check {
  font-size: 32px;
  color: var(--primary);
  font-weight: bold;
}

.alert-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.alert-box p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ------------------ HOME PAGE ------------------ */

.home-hero {
  position: relative;
  background-image: linear-gradient(to right, rgba(244, 250, 248, 0.95) 40%, rgba(244, 250, 248, 0.5) 100%),
  url('./10.avif');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 24px;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto 0 10%;
}

.hero-tagline {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 52px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.pillars-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background-color: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Home Section Layout 2: Healthy Habits */
.habits-section {
  background-color: var(--bg-secondary);
  padding: 80px 24px;
}

.habits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.habits-image {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.habits-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.habits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.habit-item {
  display: flex;
  gap: 16px;
}

.habit-number {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.habit-details h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.habit-details p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Home Newsletter Section */
.newsletter-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-box {
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-box h2 {
  color: var(--text-light);
  font-size: 36px;
  margin-bottom: 16px;
}

.newsletter-box p {
  color: var(--primary-light);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 260px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
}

.newsletter-form .btn {
  padding: 16px 32px;
}

/* ------------------ BLOG PAGE ------------------ */

.blog-hero {
  background-color: var(--bg-secondary);
  padding: 64px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.blog-hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.blog-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Blog Layout */
.blog-container {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
}

.featured-article {
  grid-column: 1 / -1;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 32px;
}

.featured-img-wrap {
  position: relative;
  height: 100%;
  min-height: 350px;
}

.featured-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-meta {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-tag {
  align-self: flex-start;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.featured-meta h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-meta p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

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

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 14px;
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Regular Grid of articles */
.blog-grid-section h3.grid-title {
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 8px;
  display: inline-block;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 8px;
}

.blog-card-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Sidebar Layout */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 6px;
}

/* Search widget */
.search-form {
  display: flex;
  gap: 8px;
}

.search-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}

.search-form input:focus {
  border-color: var(--primary);
}

.search-form .btn {
  padding: 10px 16px;
}

/* Categories widget */
.categories-list {
  list-style: none;
}

.categories-list li {
  margin-bottom: 12px;
}

.categories-list li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-color);
}

.categories-list li a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.categories-count {
  background-color: var(--bg-secondary);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
}

/* Popular Posts widget */
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-post-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.popular-post-item img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.popular-post-details h4 {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.popular-post-details span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ------------------ SERVICES PAGE ------------------ */

.services-hero {
  background-image: linear-gradient(rgba(13, 148, 136, 0.88), rgba(15, 118, 110, 0.92)),
  url('./11.avif');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 96px 24px;
  text-align: center;
}

.services-hero h1 {
  color: var(--text-light);
  font-size: 44px;
  margin-bottom: 16px;
}

.services-hero p {
  color: var(--primary-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* Services Grid Layout */
.services-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.service-card-premium {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 32px;
}

.service-card-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.service-features-list {
  list-style: none;
  margin-bottom: 32px;
}

.service-features-list li {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
}

/* Intake/Booking Form Section - Different layout */
.booking-section {
  background-color: var(--bg-secondary);
  padding: 80px 24px;
}

.booking-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.booking-info h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.booking-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-feature-item {
  display: flex;
  gap: 16px;
}

.booking-feature-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.booking-feature-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.booking-feature-text p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
}

/* Booking Form */
.booking-card {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* ------------------ ABOUT PAGE ------------------ */

.about-hero {
  background-color: var(--bg-secondary);
  padding: 80px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.about-hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
}

/* Story and History Timeline Section */
.story-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.timeline {
  position: relative;
  border-left: 2px solid var(--primary-light);
  padding-left: 32px;
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -43px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 4px solid var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  font-weight: 800;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Team section layout - Grid of rounded cards */
.team-section {
  background-color: var(--bg-secondary);
  padding: 80px 24px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.team-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--primary-light);
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-card span {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
}

/* About Feedback Section */
.feedback-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 24px;
}

.feedback-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 48px;
}

.feedback-box h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 12px;
}

.feedback-box p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ------------------ CONTACT PAGE ------------------ */

.contact-hero {
  background-color: var(--bg-secondary);
  padding: 64px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.contact-hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.contact-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact layout */
.contact-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  display: flex;
  gap: 20px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-card-details p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Map visual */
.contact-map-placeholder {
  height: 280px;
  background-image: linear-gradient(135deg, rgba(13, 148, 136, 0.05), rgba(249, 115, 22, 0.05)),
  url('./9.avif');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  width: 48px;
  height: 48px;
  background-color: var(--secondary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
  position: relative;
  animation: bounce 2s infinite;
}

.map-pin::after {
  content: '';
  width: 18px;
  height: 18px;
  background-color: var(--text-light);
  border-radius: 50%;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-45deg); }
  50% { transform: translateY(-10px) rotate(-45deg); }
}

.map-card {
  position: absolute;
  bottom: 16px;
  background-color: var(--bg-card);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border-color);
}

/* Contact form */
.contact-form-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 48px;
}

.contact-form-box h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form-box p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 102;
  }
  
  .nav-toggle-label span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    min-height: 100dvh;
    background-color: var(--bg-card);
    box-shadow: -12px 0 30px -18px rgba(15, 23, 42, 0.35);
    border-left: 1px solid var(--border-color);
    border-radius: 0;
    padding: 96px 20px 32px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    z-index: 101;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(2px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: var(--primary-light);
    color: var(--primary);
  }

  #nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  #nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  
  #nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  #nav-toggle:checked ~ .nav-menu {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  #nav-toggle:checked ~ .nav-menu-backdrop {
    opacity: 1;
    pointer-events: all;
  }

  .home-hero {
    background-image: linear-gradient(rgba(244, 250, 248, 0.95), rgba(244, 250, 248, 0.95)),
    url('./13.avif');
    min-height: auto;
    padding: 80px 24px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 38px;
  }
  
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .habits-container,
  .blog-container,
  .booking-container,
  .story-section,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .featured-article {
    grid-template-columns: 1fr;
  }
  
  .featured-img-wrap {
    height: 250px;
    min-height: auto;
  }
  
  .featured-meta {
    padding: 32px 24px;
  }
  
  .pillars-grid,
  .blog-grid,
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .habits-image {
    height: 300px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .newsletter-box {
    padding: 40px 20px;
  }
  .feedback-box,
  .contact-form-box {
    padding: 32px 20px;
  }
}
