/* H.E.A.L - Simplified Styles */

/* CSS Variables */
:root {
  --primary: #2c5530;
  --primary-dark: #1e3a22;
  --primary-medium: #3c6e41;
  --primary-light: #58925c;
  --accent: #8fbc8f;
  --secondary: #555;
  --text: #2d3436;
  --text-light: #636e72;
  --text-dark: #888;
  --white: #fff;
  --background: #ccc;
  --bg-light: #f8f9fa;
  --bg-accent: #f0f7f0;
  --border: #dee2e6;
  --success: #28a745;
  --container-width: 1200px;
  --border-radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* fonts */
  --font-system-ui: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
  --font-classical-humanist: Optima, Candara, Noto Sans, source-sans-pro,
    sans-serif;
  --font-neo-grotesque: Inter, Roboto, Helvetica Neue, Arial Nova, Nimbus Sans,
    Arial, sans-serif;
  --font-sans: var(--font-system-ui);
  --font-serif: ui-serif, serif;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", var(--font-neo-grotesque);
  line-height: 1.65;
  color: var(--text);
  background: #fafbfc;
  font-size: 16px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ::: ::: Navigation ::: ::: */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  padding: 0.5rem 0 0.6em;
  border-bottom: 1px solid rgba(44, 85, 48, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #fffc;
  backdrop-filter: blur(20px);
  padding: 0.4rem 0;
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 68px;
  width: 68px;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .logo {
  height: 52px;
  width: 52px;
}

.nav-title {
  margin: 0 12px;
}

.nav-title h2 {
  top: 4px;
  color: var(--primary);
  font-family: var(--font-system-ui);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  width: fit-content;
  margin: 0 auto;
  transition: var(--transition);
}

.navbar.scrolled .nav-title h2 {
  font-size: 2.5rem;
}

.nav-title span {
  display: block;
  color: var(--secondary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  /* line-height: 1.1rem; */
  font-weight: 500;
  min-width: 185px;
  transition: var(--transition);
}

.navbar.scrolled .nav-title span {
  display: none;
  opacity: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0 10px 0 40px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

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

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

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

.hamburger {
  z-index: 1001;
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
  position: absolute;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 18px;
}

.hamburger span:nth-child(3) {
  top: 24px;
}

.hamburger.active span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

/* ::: ::: Hero Section ::: ::: */

.hero {
  display: flex;
  min-height: 95vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 50px;
  background: linear-gradient(135deg,
      rgba(44, 85, 48, 0.05),
      rgba(30, 58, 34, 0.55)),
    url("assets/cover-1.jpeg") center/cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%,
      rgba(143, 188, 143, 0.15),
      transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1000px;
  padding: 2rem 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  font-family: "SF Pro";
  margin-bottom: 12rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
  margin: 2rem auto 8rem;
  max-width: 70ch;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.75;
  padding: 0.25rem 0;
  font-weight: 200;
  /* border: red solid 1px; */
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

/* features buttons */
.feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: fit-content;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature span:first-child {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(143, 188, 143, 0.6);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  /* margin-bottom: 2rem; */
}

.hero-trust {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* ::: ::: Buttons ::: ::: */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-medium);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Headers */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 1.25rem auto 0;
  line-height: 1.7;
}

.raised-section {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 85, 48, 0.08);
}

/* ::: ::: About Section ::: ::: */

.about {
  padding: 2.5rem 0 1rem;
  background: var(--white);
}

.about-subsection {
  margin-bottom: 3rem;
}

.subsection-header {
  text-align: center;
  margin: 2.5rem 0;
}

.subsection-header h3 {
  color: var(--primary);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.subsection-header h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ::: ::: Kim Profile Section ::: ::: */

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.profile-text h4 {
  color: var(--primary);
  font-size: 1.85rem;
  margin: 0 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.profile-text p {
  color: var(--text);
  line-height: 1.8;
  margin: 0 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.qualifications,
.key-info {
  background: var(--bg-accent);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  /* margin-bottom: 1.5rem; */
  border: 1px solid rgba(44, 85, 48, 0.1);
  transition: all var(--transition);
}

.qualifications:hover,
.key-info:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.qualifications h5,
.key-info h5 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.qualifications ul,
.key-info ul {
  list-style: none;
  margin: 0;
}

.qualifications li,
.key-info li {
  padding: 0.4rem 0;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.qualifications li::before,
.key-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.profile-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.profile-image img {
  max-width: 80%;
  border-radius: var(--border-radius);
  /* box-shadow: var(--shadow-lg); */
  transition: all var(--transition);
}

.profile-image img:hover {
  transform: scale(1.05);
}

.image-caption {
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  margin-top: -4px;
}

.image-caption p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
}

/* --- HEAL Help Section --- */

.subsection-intro {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.heal-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.heal-what,
.heal-why {
  background: var(--bg-accent);
  padding: 1.75rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(44, 85, 48, 0.1);
  transition: all var(--transition);
}

.heal-what:hover,
.heal-why:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.heal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.heal-what h4,
.heal-why h4 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.heal-what p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.975rem;
}

.compact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compact-list li {
  padding: 0.4rem 0;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
  font-size: 0.975rem;
}

.compact-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.help-areas-modern {
  margin-top: 2rem;
}

.help-title {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.help-card {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(44, 85, 48, 0.08);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  overflow: hidden;
}

.help-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 85, 48, 0.15);
}

.help-card:hover::before {
  transform: scaleX(1);
}

.help-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.help-card h5 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.help-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.help-card li {
  padding: 0.35rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.6;
  font-size: 0.925rem;
}

.help-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.session-info-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.session-info-banner h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--white);
}

.info-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 0.1rem 0;
}

.info-items span {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ::: ::: Services Section ::: ::: */

.services {
  padding: 2rem 0;
  background: linear-gradient(to bottom, var(--bg-light), var(--white));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(44, 85, 48, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 85, 48, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  transition: all var(--transition);
}

.icon-circle {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-accent), #e8f5ea);
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(44, 85, 48, 0.1);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.975rem;
}

.service-card ul {
  list-style: none;
  margin: 0;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--secondary);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(44, 85, 48, 0.08);
}

.pricing-section h3 {
  color: var(--primary);
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pricing-section > p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.pricing-info {
  background: var(--bg-accent);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(44, 85, 48, 0.1);
  transition: all var(--transition);
}

.pricing-info:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pricing-info h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.pricing-info ul {
  list-style: none;
  margin: 0;
}

.pricing-info li {
  padding: 0.4rem 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 0.925rem;
}

.price-card {
  background: linear-gradient(135deg, var(--bg-accent), #e8f5ea);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--accent);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

.price-card.highlight {
  background: linear-gradient(135deg, #e8f5ea, #d4edda);
  border-color: var(--success);
}

.price-card h4 {
  color: var(--primary);
  margin-top: -0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.price.free {
  color: var(--success);
  font-size: 3rem;
  font-weight: 800;
  margin: 0.5rem 0;
}

.price-card p {
  color: var(--text);
  font-size: 0.925rem;
  line-height: 1.5;
}

.pricing-cta {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-accent);
  border-radius: var(--border-radius);
  transition: all var(--transition);
  border: 1px solid rgba(44, 85, 48, 0.1);
}

.pricing-cta:hover {
  background: #e8f5ea;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.pricing-cta p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricing-cta .btn:hover {
  border-color: var(--primary-light);
}

/* ::: ::: Gallery Section ::: ::: */

.gallery {
  padding: 2rem 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all var(--transition);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 85, 48, 0.7), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.gallery-overlay p {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.01em;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* ::: ::: Testimonials Section ::: ::: */

.testimonials {
  padding: 2rem 0;
  background: var(--white);
}

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

.testimonial {
  background: var(--bg-accent);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
  transition: all var(--transition);
  position: relative;
}

.testimonial::before {
  content: "‟";
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-width: 4px;
  border-left-color: var(--primary-light);
}

.testimonial p {
  z-index: 1;
  font-style: italic;
  color: var(--text);
  margin: 1.3rem 0 1rem;
  line-height: 1.6;
  /* font-family: "Noto Sans"; */
  font-size: 1rem;
  position: relative;
}

.testimonial cite {
  display: block;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  color: var(--primary);
  padding-right: 8px;
}

/* ::: ::: Contact Section ::: ::: */

.contact {
  padding: 2.5rem 0 4rem;
  background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-item {
  background: var(--white);
  padding: 1rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(44, 85, 48, 0.1);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 85, 48, 0.2);
}

.contact-item:hover::before {
  transform: scaleY(1);
}

.contact-header {
  display: flex;
  justify-content: space-between;
  margin-right: 12px;
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-item p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--primary-light);
}

.contact-item small {
  color: var(--text-light);
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.contact-map:hover {
  transform: scale(1.02);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 0.6rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(44, 85, 48, 0.1);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.contact-form:hover {
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  color: var(--primary);
  font-size: 1.65rem;
  margin-bottom: 0.6rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-form > p {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}

.contact-form button {
  width: 100%;
  margin-bottom: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

/* ::: ::: Footer ::: ::: */

.footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 1rem 0 0.2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--accent),
      var(--primary),
      var(--accent));
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  gap: 1rem;
}

.footer-section .logo {
  height: 50px;
  width: 50px;
  margin: 0 0 0 5.5rem;
  filter: invert(0.7) grayscale(1);
  transition: var(--transition);
}

.footer-section .logo:hover {
  scale: 1.2;
}

.footer-legal {
  text-align: center;
  padding-top: 0.8rem;
  color: #ffffffb3;
  font-size: 0.9rem;
}

.footer-section .socials {
  display: flex;
  gap: 1.5rem;
  margin: 0.8rem 4.5rem 0 0;

  path {
    fill: #ffffffb3;
  }
}

.footer-section .socials a:hover path {
  fill: #fff;
}

/* ::: ::: Floating CTA ::: ::: */

.floating-cta {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
  transition: opacity 0.5s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease;
  z-index: 100;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;

  &:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(44, 85, 48, 0.45);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-color: rgba(255, 255, 255, 0.3);
  }
}

/* ::: ::: Responsive Design ::: ::: */

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
  background: var(--bg-accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

@media (max-width: 1180px) {
  .help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 950px) {
  .hamburger {
    display: flex;

    & span {
      background: var(--primary) !important;
    }

    &.active span {
      background: #fff;
      color: #fff !important;
    }
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background: rgba(45, 52, 65, 0.99);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    /* color: var(--white); */
    font-size: 1.3rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .nav-link::after {
    background: var(--white);
    bottom: 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .nav-title h2 {
    font-size: 1.8rem;
  }

  .nav-title span {
    font-size: 0.8rem;
  }

  .logo {
    height: 60px;
    width: 60px;
  }

  .navbar.scrolled .logo {
    height: 50px;
    width: 50px;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .hero h1 {
    font-family: "Noto Sans", var(--font-sans);
    font-size: 2.2rem;
    /* padding: 0 3rem; */
  }

  .hero p {
    font-size: 1.1rem;
    margin-top: 8rem;
  }

  .hero-features {
    /* flex-direction: column; */
    gap: 1rem;
  }

  .hero-buttons {
    /* flex-direction: column; */
    align-items: center;
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-areas:
      "image"
      "text";
  }

  .profile-image {
    grid-area: image;
  }

  .profile-image img {
    max-width: 65%;
  }

  .profile-text {
    grid-area: text;
  }

  .eal-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .help-card {
    padding: 1.25rem;
  }

  .info-items {
    flex-direction: column;
    gap: 0.75rem;
  }

  .info-items span {
    width: 100%;
    text-align: center;
  }

  .subsection-header h3 {
    font-size: 1.6rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-content {
    /* grid-template-columns: 1fr; */
    gap: 2rem;
  }

  .footer-section img {
    scale: 0.9 !important;
    margin-left: 1rem !important;
  }

  .footer-legal {
    padding-top: 0 !important;
  }

  .socials {
    margin-right: 1rem !important;
  }

  .socials ul {
    opacity: 0.8;
    scale: 0.9;
    filter: grayscale(1);
    transition: var(--transition);

    &:hover {
      scale: 1.1;
    }
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .nav-title h2 {
    font-size: 1.5rem;
  }

  .nav-title span {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .feature {
    padding: 0.6rem 1rem;
  }

  .service-card,
  .testimonial,
  .contact-form {
    padding: 1.5rem;
  }

  .qualifications,
  .key-info,
  .eal-benefits {
    padding: 1rem;
  }

  .profile-text h4,
  .eal-explanation h4,
  .help-areas h4 {
    font-size: 1.4rem;
  }

  .subsection-header h3 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
  }

  .floating-cta {
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

/* Animations */

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated-element {
  animation: slide-in linear;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}

.slide-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for grouped elements */
.help-grid .help-card:nth-child(1) {
  transition-delay: 0.1s;
}

.help-grid .help-card:nth-child(2) {
  transition-delay: 0.2s;
}

.help-grid .help-card:nth-child(3) {
  transition-delay: 0.3s;
}

.services-grid .service-card:nth-child(1) {
  transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(2) {
  transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3) {
  transition-delay: 0.3s;
}

.services-grid .service-card:nth-child(4) {
  transition-delay: 0.4s;
}

.testimonials-grid .testimonial:nth-child(1) {
  transition-delay: 0.1s;
}

.testimonials-grid .testimonial:nth-child(2) {
  transition-delay: 0.2s;
}

.testimonials-grid .testimonial:nth-child(3) {
  transition-delay: 0.3s;
}

.gallery-grid .gallery-item:nth-child(1) {
  transition-delay: 0.05s;
}

.gallery-grid .gallery-item:nth-child(2) {
  transition-delay: 0.1s;
}

.gallery-grid .gallery-item:nth-child(3) {
  transition-delay: 0.15s;
}

.gallery-grid .gallery-item:nth-child(4) {
  transition-delay: 0.2s;
}

.gallery-grid .gallery-item:nth-child(5) {
  transition-delay: 0.25s;
}

.gallery-grid .gallery-item:nth-child(6) {
  transition-delay: 0.3s;
}
