/*
 * Sanjeevita - Nurture & Thrive
 * Shared Premium Stylesheet
 * Custom designed with modern CSS features (variables, grid, flexbox, glassmorphism, animations)
 */

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

:root {
  /* Color Palette (HSL based for harmony) */
  --primary: hsl(168, 79%, 20%);
  /* #0b5d4b - Deep Teal Green */
  --primary-light: hsl(168, 79%, 25%);
  --primary-glow: hsla(168, 79%, 20%, 0.1);
  --accent: hsl(163, 64%, 41%);
  /* #25aa84 - Emerald */
  --accent-glow: hsla(163, 64%, 41%, 0.15);
  --accent-secondary: hsl(38, 92%, 58%);
  /* Warm Amber for CTAs */

  --bg-primary: hsl(34, 30%, 98%);
  /* #faf8f5 - Warm Off-white */
  --bg-secondary: hsl(140, 20%, 95%);
  /* #f0f4f1 - Soft Sage Light */
  --bg-card: hsl(0, 0%, 100%);
  /* Pure White */
  --bg-footer: hsl(168, 40%, 10%);
  /* Very Dark Greenish Teal */

  --text-main: hsl(168, 25%, 15%);
  /* Very Dark Grey/Teal */
  --text-muted: hsl(168, 12%, 40%);
  /* Muted Greenish Grey */
  --text-light: hsl(0, 0%, 100%);

  /* Fonts */
  --font-header: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout Tokens */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 40px;

  --shadow-sm: 0 4px 10px rgba(11, 93, 75, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 93, 75, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 93, 75, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Background Glow Effects */
body::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  bottom: 20%;
  left: -200px;
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

p {
  color: var(--text-muted);
}

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

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

/* Layout Elements */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* NAVIGATION (Glassmorphism & Desktop + Mobile Nav) */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--max-width);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  top: 10px;
  width: 95%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.nav-item a {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-item a:hover {
  color: var(--accent);
}

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

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

/* Nav Button */
.btn-nav {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-light) !important;
  border-radius: 30px;
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--accent-glow);
  transition: var(--transition);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 170, 132, 0.35);
}

/* Hamburger menu button for mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile Nav Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 93, 75, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 999;
  transition: var(--transition);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile-nav-item a {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-secondary);
}

.mobile-nav-item.active a {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* HERO SECTIONS */
.hero-section {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--bg-secondary);
  color: var(--primary);
  border-radius: 30px;
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(11, 93, 75, 0.1);
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-quote {
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 500;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 40px;
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-light);
  box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 170, 132, 0.4);
  color: var(--text-light);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

/* HERO RIGHT SIDE & FLOATING CARDS */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 93, 75, 0.05);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.hero-main-card:hover {
  transform: scale(1.02);
}

.hero-main-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: var(--bg-card);
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(11, 93, 75, 0.06);
}

.floating-badge.badge-1 {
  top: -20px;
  left: -20px;
  animation: float-badge 6s ease-in-out infinite;
}

.floating-badge.badge-2 {
  bottom: -20px;
  right: -20px;
  animation: float-badge 6s ease-in-out infinite 3s;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* SUBPAGE HERO SECTIONS */
.subpage-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.subpage-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subpage-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}


/* STATS SECTION */
.stats-section {
  padding: 60px 0;
  background-color: var(--bg-secondary);
  position: relative;
}

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

.stat-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 93, 75, 0.02);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-header);
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}


/* GENERAL SECTION LAYOUT */
.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

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

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}


/* CARDS GRID SYSTEM (3 Columns) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.interactive-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 93, 75, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.interactive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: var(--transition);
}

.interactive-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.interactive-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: inline-block;
  padding: 12px;
  background-color: var(--bg-secondary);
  border-radius: 16px;
  transition: var(--transition);
}

.interactive-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--primary-glow);
}

.interactive-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.interactive-card p {
  font-size: 15px;
  line-height: 1.7;
}

.interactive-card ul {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.interactive-card ul li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.interactive-card ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
}


/* ABOUT PAGE FOUNDER & BOOK GRID */
.founder-section {
  padding: 60px 0 100px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.founder-sticky-profile {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.profile-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 93, 75, 0.05);
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 4px solid var(--bg-secondary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.profile-card:hover .profile-img {
  transform: scale(1.05) rotate(2deg);
  border-color: var(--accent);
}

.profile-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.profile-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* Book Advertisement Card */
.book-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 93, 75, 0.05);
}

.book-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.book-img {
  width: 130px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  cursor: pointer;
}

.book-img:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.book-title {
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
}

.book-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 93, 75, 0.02);
}

.about-card h2 {
  font-size: 26px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.about-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.about-card p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 15.5px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* Grid of mini cards for credentials or highlights */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.mini-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 24px;
  transition: var(--transition);
  border: 1px solid rgba(11, 93, 75, 0.02);
}

.mini-card:hover {
  transform: translateY(-4px);
  background-color: var(--primary-glow);
}

.mini-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.mini-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 0;
}

.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.credential-item:hover {
  background-color: var(--primary-glow);
  transform: translateX(5px);
}

.credential-marker {
  font-size: 20px;
  line-height: 1;
}

.credential-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
}

.approach-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: start;
}

.approach-label {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
  background: var(--bg-secondary);
  padding: 6px 12px;
  border-radius: 30px;
  text-align: center;
}

.approach-desc {
  font-size: 15px;
  color: var(--text-muted);
}


/* TESTIMONIALS STYLING */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 93, 75, 0.03);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 90px;
  font-family: Georgia, serif;
  color: var(--primary-glow);
  line-height: 1;
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.author-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0;
}


/* CALL TO ACTION SECTIONS */
.cta-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: -1;
}

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

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-box .btn {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background-color: var(--bg-secondary);
}


/* EMBED PAGES (Calendar & Form wrappers) */
.embed-section {
  padding: 40px 0 100px;
}

.embed-container {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 93, 75, 0.05);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  position: relative;
}

.embed-container iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: var(--border-radius-md);
}

/* Contact Specific Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 93, 75, 0.03);
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

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

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.contact-link-item:hover {
  background-color: var(--primary-glow);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--bg-card);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

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

.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.contact-value {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}


/* PRIVACY & TERMS SECTION */
.document-section {
  padding: 60px 0 100px;
}

.document-box {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 93, 75, 0.05);
}

.document-box h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  color: var(--primary);
  border-bottom: 1px solid var(--bg-secondary);
  padding-bottom: 10px;
}

.document-box h2:first-of-type {
  margin-top: 0;
}

.document-box p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.document-box ul {
  list-style: none;
  margin-left: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.document-box ul li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.document-box ul li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
}


/* FOOTER */
footer {
  background-color: var(--bg-footer);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-info p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  max-width: 400px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-col h4 {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-dev {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-image: url('images/whatsapp-png.png');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

/* RESPONSIVE DESIGN (Media Queries) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 46px;
  }

  .hero-grid {
    gap: 40px;
  }

  .founder-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-menu,
  .btn-nav-wrapper {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-quote {
    border-left: none;
    border-top: 2px solid var(--accent);
    padding-top: 16px;
    padding-left: 0;
    max-width: 500px;
    margin: 0 auto 35px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .founder-sticky-profile {
    position: relative;
    top: 0;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  header {
    top: 10px;
    width: 94%;
  }

  .nav-wrapper {
    padding: 10px 16px;
  }

  .logo-img {
    height: 40px;
  }

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

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

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

  .stat-card {
    padding: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-card {
    padding: 24px;
  }

  .profile-card {
    padding: 30px 20px;
  }

  .document-box {
    padding: 30px 20px;
  }

  .embed-container {
    padding: 16px;
    min-height: 450px;
  }

  .embed-container iframe {
    height: 450px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-link-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-legal {
    justify-content: center;
    width: 100%;
  }
}