/* ============================================
   Child Care Space Planning App - Exact Clone Stylesheet
   ============================================ */

/* Import Google Fonts (Fredoka, Nunito, Caveat) */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,600;1,700&family=Caveat:wght@600;700&display=swap');

/* ---- CSS Variables & Design Tokens ---- */
:root {
  --font-heading: 'Fredoka', 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Caveat', cursive;

  --teal-primary: #067A75;
  --teal-dark: #045D59;
  --teal-hover: #08948E;
  --teal-mint: #DBF2F0;
  --teal-mint-light: #EDF8F7;
  --teal-mint-card: #DBF2F0;
  --price-green: #16A34A;
  
  --text-dark: #1F3634;
  --text-body: #3E5855;
  --text-muted: #668884;
  --bg-white: #FFFFFF;
  --bg-page: #F4FAF9;
  
  --shadow-sm: 0 4px 12px rgba(6, 122, 117, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 122, 117, 0.1);
  --shadow-lg: 0 16px 36px rgba(6, 122, 117, 0.15);
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.card-heading,
.section-heading,
.cta-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.preloader-spinner {
  text-align: center;
}

.preloader-spinner .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--teal-mint);
  border-top-color: var(--teal-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

.preloader-spinner p {
  color: var(--teal-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   HEADER / NAVIGATION (Floating Narrow Pill Bar)
   ============================================ */
.floating-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1150px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(219, 242, 240, 0.95);
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(6, 122, 117, 0.12);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: headerSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -24px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.header-container {
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover {
  transform: scale(1.04);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4A6360;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--teal-primary);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--teal-primary);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal-primary);
  border-radius: 2px;
}

.nav-links a.nav-contact-btn {
  background: var(--teal-primary);
  color: var(--bg-white) !important;
  padding: 8px 24px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(6, 122, 117, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a.nav-contact-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.6s ease;
  display: block;
}

.nav-links a.nav-contact-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 122, 117, 0.35);
}

.nav-links a.nav-contact-btn:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.canada-badge,
.footer-canada-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--teal-mint);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.canada-badge:hover,
.footer-canada-badge:hover {
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 8px 20px rgba(6, 122, 117, 0.25);
}

.canada-badge img,
.footer-canada-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-icon {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--teal-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--teal-primary);
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* ============================================
   SECTION 1: HERO CONTAINER (Full Width Dark Teal Banner)
   ============================================ */
.hero-fullwidth {
  width: 100%;
  background-color: var(--teal-primary);
  padding-top: 130px;
  padding-bottom: 60px;
  color: white;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 0.98rem;
  opacity: 0.95;
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-checklist .check-dot {
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
}

/* Video Card Right */
.video-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.video-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-video-iframe,
.hero-direct-player {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
  background: #000;
  border-radius: inherit;
}

.video-audio-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px 4px;
  color: var(--teal-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   PAGE WRAPPER & GLOBAL CARD CONTAINERS
   ============================================ */
.page-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Reusable Mint Container Card */
.mint-card-container {
  background-color: var(--teal-mint-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.card-heading {
  color: var(--teal-primary);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* ============================================
   SECTION 2: APP FEATURES (Mint Card + Wave)
   ============================================ */
.features-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  padding: 40px 48px 40px 0;
  background-color: #E2F4F1;
  border-radius: var(--radius-lg);
  position: relative;
  margin: 30px 0;
  overflow: visible;
}

.features-left {
  margin-top: -30px;
  margin-bottom: -30px;
  position: relative;
  z-index: 5;
  height: calc(100% + 60px);
}

.teal-wave-bg {
  background-color: var(--teal-primary);
  border-radius: var(--radius-lg);
  padding: 44px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.teal-wave-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #F0F4F4;
  border-radius: 0 0 50% 50% / 0 0 35px 35px;
  z-index: 1;
}

.phone-wrapper {
  position: relative;
  z-index: 2;
  width: 165px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
}

.download-pill-btn {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--teal-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 24px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.download-pill-btn:hover {
  background: var(--teal-mint);
  transform: translateY(-2px);
}

.features-right {
  padding-left: 48px;
}

.mint-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mint-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.bullet-dot {
  width: 8px;
  height: 8px;
  background-color: var(--teal-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================
   SECTION 3: FOR BUSINESS OWNERS (Pricing & Stats)
   ============================================ */
.owners-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 24px;
  align-items: center;
  background-color: #E2F4F1;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.tag-sub {
  font-size: 0.85rem;
  color: #4B6360;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.price-stacked {
  margin-top: 16px;
}

.price-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(6, 122, 117, 0.35), 0 0 3px rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
  line-height: 1.25;
}

.price-or {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  max-width: 220px;
  opacity: 0.95;
  margin: 2px 0;
  text-shadow: 0 1px 6px rgba(6, 122, 117, 0.3);
}

.owners-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hand-phone-img-wrap {
  max-width: 270px;
  margin-top: -30px;
  margin-bottom: -40px;
}

.hand-phone-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.owners-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats-row {
  display: flex;
  gap: 36px;
}

.stat-block {
  text-align: left;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: #5D7975;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--teal-primary);
  line-height: 1.1;
}

.download-now-wrap {
  margin-top: 4px;
}

.download-label {
  display: block;
  font-size: 0.88rem;
  color: var(--teal-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.app-store-badges {
  display: flex;
  gap: 14px;
  align-items: center;
}

.badge-link img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ============================================
   SECTION 4: THRILLED TO HAVE YOU HERE!
   ============================================ */
.thrilled-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.thrilled-left p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.65;
}

.image-gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 240px;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Organic Circles Decor */
.bg-decor-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(6, 122, 117, 0.08);
  pointer-events: none;
}

.circle-1 {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -60px;
}

.circle-2 {
  width: 160px;
  height: 160px;
  bottom: -50px;
  right: -50px;
}

/* ============================================
   SECTION 5: WHY DO YOU NEED OUR SOFTWARE?
   ============================================ */
.why-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  background-color: #E2F4F1;
  background-image: url('../images/3.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
}

.why-left {
  position: relative;
  z-index: 2;
}

.why-left::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -24px;
  width: 180px;
  height: 180px;
  border: 3px solid #B8E4DD;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.team-img-card {
  background: white;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  height: auto;
}

.team-img-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.why-corner-shape {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: #85C5BC;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.diamond-accents {
  position: absolute;
  top: 36px;
  right: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  color: #85C5BC;
  font-size: 20px;
  z-index: 2;
}

.why-right {
  position: relative;
  z-index: 2;
}

.why-right .card-heading {
  color: var(--teal-primary);
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.why-right p {
  font-size: 0.9rem;
  color: #385350;
  margin-bottom: 14px;
  line-height: 1.6;
}

.why-right p.highlight-p {
  font-weight: 600;
  color: #223B38;
}

/* ============================================
   SECTION 6: OUR BLOG
   ============================================ */
.blog-section {
  padding: 20px 0;
}

.blog-container {
  max-width: 1240px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 36px;
}

.text-center {
  text-align: center;
}

.blog-tag {
  color: var(--teal-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.section-heading {
  color: var(--text-dark);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
}

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

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 122, 117, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.blog-card-img-wrap {
  height: 170px;
  overflow: hidden;
}

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

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

.blog-card-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-content p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.5;
  flex-grow: 1;
}

.read-more-btn {
  color: var(--teal-primary);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more-btn:hover {
  color: var(--teal-dark);
}

/* ============================================
   SECTION 7: CTA BANNER (Split Card)
   ============================================ */
.cta-card-wrap {
  padding: 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  background-color: #E2F4F1;
  background-image: url('../images/2.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-dark-box {
  background-color: var(--teal-primary);
  color: white;
  padding: 40px 36px;
  border-radius: 24px 180px 180px 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-heading {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.cta-sub-uppercase {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.95;
  line-height: 1.4;
  color: #FFFFFF;
}

.cta-promise-italic {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  opacity: 0.98;
}

.cta-footer-uppercase {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.95;
  line-height: 1.4;
  color: #FFFFFF;
}

.cta-img-box {
  height: 100%;
  min-height: 320px;
  border-radius: 180px 24px 24px 180px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.cta-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-diamond-accents {
  position: absolute;
  top: 18px;
  left: 52%;
  display: flex;
  gap: 36px;
  color: #85C5BC;
  font-size: 20px;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: #E2F4F1;
  background-image: url('../images/Blue-Dark-Professional-Geometric-Business-Project-Presentation-_2.jpg');
  background-size: cover;
  background-position: center;
  padding: 48px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer-square-accent {
  position: absolute;
  top: 36px;
  right: 48px;
  width: 24px;
  height: 24px;
  background-color: #85C5BC;
  border-radius: 4px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.footer-main-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(6, 122, 117, 0.15);
}

.footer-logo-card {
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.footer-logo-card img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.footer-links-col h4 {
  color: var(--teal-primary);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a,
.footer-links-col span {
  color: #385350;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-col a:hover {
  color: var(--teal-primary);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--teal-dark);
}

.copyright-text {
  font-size: 0.88rem;
  color: #385350;
  font-weight: 600;
}

.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: #0088CC;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 99;
  transition: var(--transition);
}

.back-to-top-btn:hover {
  background: #006699;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Mobile Menu Popup Overlay Style */
.mobile-menu {
  position: fixed;
  top: 75px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: min(92%, 400px);
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mobile-menu a {
  color: var(--teal-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: #E2F4F1;
}

.mobile-contact-btn {
  background: var(--teal-primary) !important;
  color: white !important;
}

@media (max-width: 1024px) {
  .floating-header {
    width: 95%;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-bullets {
    align-items: center;
  }

  .hero-check-item {
    justify-content: center;
  }

  .features-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 32px;
  }

  .features-left {
    margin-top: 0;
    margin-bottom: 0;
    height: auto;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .features-right {
    padding-left: 0;
  }

  .owners-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding: 32px 24px;
  }

  .price-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hand-phone-img-wrap {
    margin-top: 0;
    margin-bottom: 0;
  }

  .stats-row {
    justify-content: center;
  }

  .download-now-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .app-store-badges {
    justify-content: center;
  }

  .thrilled-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .why-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .why-left::before {
    display: none;
  }

  .team-img-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .diamond-accents {
    right: 20px;
    top: 20px;
  }

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

  .cta-card-wrap {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }

  .cta-dark-box {
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
  }

  .cta-img-box {
    border-radius: 20px;
    min-height: 240px;
  }

  .cta-diamond-accents {
    display: none;
  }

  .footer-main-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .canada-badge {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .card-heading {
    font-size: 1.5rem;
  }

  .price-val {
    font-size: 1.8rem;
  }

  .stat-value {
    font-size: 1.9rem;
  }

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

  .footer-main-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-links-col a,
  .footer-links-col span {
    justify-content: center;
  }

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

  .social-icons {
    justify-content: center;
  }

  .image-gallery-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .floating-header {
    padding: 8px 16px;
  }

  .nav-logo img {
    height: 38px;
  }

  .hero-fullwidth {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .cta-heading {
    font-size: 1.4rem;
  }

  .price-val {
    font-size: 1.5rem;
  }

  .app-store-badges {
    flex-direction: column;
    align-items: center;
  }

  .stats-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-page-wrapper {
  padding-top: 130px;
  padding-bottom: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.about-full-card {
  background-color: #E2F4F1;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.about-square-accents {
  position: absolute;
  top: 36px;
  right: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  z-index: 2;
}

.about-square-accents .sq {
  width: 20px;
  height: 20px;
  background-color: #85C5BC;
  border-radius: 4px;
}

.about-corner-shape {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: #85C5BC;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.about-top-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 44px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.founder-photo-card {
  width: 100%;
  max-width: 310px;
  border-radius: 140px 140px 24px 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 122, 117, 0.15);
  background: white;
}

.founder-photo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-bio-intro .hello-label {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.founder-name {
  font-family: var(--font-accent);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal-primary);
  line-height: 1.2;
  margin-bottom: 18px;
}

.founder-bio-intro p {
  font-size: 0.92rem;
  color: #385350;
  line-height: 1.65;
  margin-bottom: 14px;
}

.founder-bio-intro p.highlight-callout {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.about-extended-story {
  position: relative;
  z-index: 2;
}

.about-extended-story p {
  font-size: 0.92rem;
  color: #385350;
  line-height: 1.65;
  margin-bottom: 14px;
}

.about-dot-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.about-dot-row span {
  width: 7px;
  height: 7px;
  background-color: var(--teal-primary);
  border-radius: 50%;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .about-top-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo-card {
    margin: 0 auto 24px;
  }

  .about-full-card {
    padding: 32px 20px;
  }
}

/* ============================================
   OTHER APPS PAGE STYLES
   ============================================ */
.others-app-wrapper {
  padding-top: 130px;
  padding-bottom: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.others-app-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.app-item-card {
  background-color: #E2F4F1;
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.app-card-square-accent {
  position: absolute;
  top: 28px;
  right: 36px;
  width: 20px;
  height: 20px;
  background-color: #85C5BC;
  border-radius: 4px;
  z-index: 2;
}

.app-card-corner-shape {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #85C5BC;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.app-card-img-wrap {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(6, 122, 117, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  z-index: 2;
}

.app-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.app-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.app-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--teal-primary);
  line-height: 1.25;
}

.app-description {
  font-size: 0.9rem;
  color: #385350;
  line-height: 1.6;
}

.btn-visit-app {
  background-color: var(--teal-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 28px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(6, 122, 117, 0.25);
  transition: var(--transition);
  margin-top: 4px;
}

.btn-visit-app:hover {
  background-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 122, 117, 0.35);
}

@media (max-width: 992px) {
  .app-item-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
    gap: 28px;
  }

  .app-card-img-wrap {
    margin: 0 auto;
  }

  .app-card-content {
    align-items: center;
  }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
.blog-page-wrapper {
  padding-top: 130px;
  padding-bottom: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.blog-hero-header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-hero-header .blog-tag {
  color: var(--teal-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.blog-hero-header .section-heading {
  font-size: 2.2rem;
  color: var(--teal-primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.blog-hero-header .section-sub {
  font-size: 0.95rem;
  color: #385350;
  max-width: 680px;
  margin: 0 auto;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}

.page-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--teal-primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 122, 117, 0.2);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.page-num.active,
.page-num:hover {
  background: var(--teal-primary);
  color: white;
  border-color: var(--teal-primary);
}

.page-next {
  padding: 0 20px;
  width: auto;
  border-radius: 20px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
  background-color: var(--teal-primary);
  padding-top: 150px;
  padding-bottom: 70px;
  color: white;
  width: 100%;
  position: relative;
}

.contact-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-hero-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-hero-left h1 {
  font-family: var(--font-accent);
  font-size: 3.8rem;
  color: white;
  line-height: 1.1;
  font-weight: 500;
}

.contact-hero-left h2 {
  font-family: var(--font-accent);
  font-size: 2.8rem;
  color: white;
  line-height: 1.1;
  font-weight: 500;
  margin-top: -10px;
}

.contact-hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contact-hero-right img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
}

.info-request-section {
  padding: 60px 24px;
}

.info-card-wrap {
  max-width: 1240px;
  margin: 0 auto;
  background-color: #E2F4F1;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.info-card-left {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 122, 117, 0.12);
  background: white;
  padding: 12px;
}

.info-card-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.info-card-right {
  background: white;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(6, 122, 117, 0.1);
  position: relative;
  z-index: 2;
}

.info-card-right h3 {
  font-size: 1.8rem;
  color: var(--teal-primary);
  font-weight: 700;
  line-height: 1.3;
}

.info-card-right p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-click-here {
  border: 2px solid var(--teal-primary);
  color: var(--teal-primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 32px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  text-decoration: none;
  background: transparent;
}

.btn-click-here:hover {
  background: var(--teal-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 122, 117, 0.2);
}

.form-banner-section {
  background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), url('../images/1.jpg.bv.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 24px;
  width: 100%;
  position: relative;
}

.form-banner-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.hear-from-you-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 40px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-width: 380px;
  margin: 0 auto;
}

.hear-from-you-card h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.35;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form-card h3 i {
  color: var(--teal-primary);
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(6, 122, 117, 0.15);
}

.btn-submit-form {
  background-color: var(--teal-primary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(6, 122, 117, 0.25);
}

.btn-submit-form:hover {
  background-color: var(--teal-dark);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-hero-right {
    justify-content: center;
  }

  .info-card-wrap {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .form-banner-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hear-from-you-card {
    max-width: 100%;
  }
}

/* ============================================
   APP TRAINING PAGE (Passcode Protected & Video Player)
   ============================================ */
.training-page-wrapper {
  min-height: calc(100vh - 120px);
  padding-top: 130px;
  padding-bottom: 80px;
}

.training-passcode-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 60px;
  min-height: 55vh;
}

.training-passcode-card {
  background-color: #DBF2F0;
  border-radius: 28px;
  width: min(92%, 560px);
  padding: 48px 36px 44px;
  box-shadow: 0 10px 30px rgba(6, 122, 117, 0.08);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.passcode-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: #1F3634;
  margin-bottom: 12px;
}

.passcode-subtitle {
  font-size: 0.95rem;
  color: #4B6B67;
  margin-bottom: 26px;
  font-weight: 500;
}

.passcode-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.passcode-input-group {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.passcode-input {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border: 1.5px solid rgba(6, 122, 117, 0.2);
  border-radius: 30px;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 6px;
  font-weight: 700;
  color: #1F3634;
  outline: none;
  transition: var(--transition);
}

.passcode-input::placeholder {
  letter-spacing: 4px;
  color: #9AB4B1;
  font-size: 1.2rem;
}

.passcode-input:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(6, 122, 117, 0.18);
}

.btn-unlock {
  background-color: #045D59;
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 48px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(4, 93, 89, 0.3);
  transition: var(--transition);
}

.btn-unlock:hover {
  background-color: #067A75;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4, 93, 89, 0.4);
}

.passcode-error {
  color: #D32F2F;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
  margin-top: 8px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.shake {
  animation: shake 0.4s ease-in-out;
}

/* Video Section after Unlock */
.training-videos-section {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 20px 60px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.training-video-item {
  margin-bottom: 56px;
  text-align: center;
}

.training-video-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #1F3634;
  margin-bottom: 20px;
  line-height: 1.3;
}

.training-video-box {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.training-video-box video,
.training-video-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .passcode-title {
    font-size: 1.65rem;
  }
  .training-video-title {
    font-size: 1.3rem;
  }
  .training-passcode-card {
    padding: 36px 20px 32px;
  }
}

/* ============================================
   GLOBAL CSS ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* 1. Keyframe Animations */
@keyframes floatGentle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(8px) rotate(-2deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
    filter: drop-shadow(0 0 0 rgba(6, 122, 117, 0));
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(6, 122, 117, 0.4));
  }
}

@keyframes dotWave {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
    background-color: var(--teal-hover);
  }
}

@keyframes buttonShimmer {
  0% {
    transform: rotate(30deg) translateX(-150%);
  }
  100% {
    transform: rotate(30deg) translateX(150%);
  }
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 2. Scroll Reveal Engine */
.reveal {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.reveal-up {
  transform: translateY(35px);
}

.reveal.reveal-down {
  transform: translateY(-35px);
}

.reveal.reveal-left {
  transform: translateX(35px);
}

.reveal.reveal-right {
  transform: translateX(-35px);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

.reveal.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* 3. Ambient Accents Floating & Pulsing */
.about-square-accents .sq,
.footer-square-accent,
.app-card-square-accent {
  animation: floatGentle 5s ease-in-out infinite;
}

.about-square-accents .sq2,
.about-square-accents .sq4 {
  animation: floatReverse 6s ease-in-out infinite;
}

.diamond-accents .diamond,
.cta-diamond-accents .diamond {
  animation: pulseGlow 3.5s ease-in-out infinite;
  display: inline-block;
}

.diamond-accents .d2, .cta-diamond-accents span:nth-child(2) { animation-delay: 0.4s; }
.diamond-accents .d3, .cta-diamond-accents span:nth-child(3) { animation-delay: 0.8s; }
.diamond-accents .d4 { animation-delay: 1.2s; }
.diamond-accents .d5 { animation-delay: 1.6s; }

.bg-decor-circle {
  animation: floatReverse 8s ease-in-out infinite;
}

.about-dot-row span {
  animation: dotWave 2.4s ease-in-out infinite;
}

.about-dot-row span:nth-child(2n) { animation-delay: 0.2s; }
.about-dot-row span:nth-child(3n) { animation-delay: 0.4s; }
.about-dot-row span:nth-child(4n) { animation-delay: 0.6s; }
.about-dot-row span:nth-child(5n) { animation-delay: 0.8s; }

.check-dot,
.bullet-dot {
  animation: dotWave 3s ease-in-out infinite;
}

/* 4. Global Card Hover Transitions */
.mint-card-container,
.blog-card,
.app-item-card,
.video-card,
.team-img-card,
.founder-photo-card,
.contact-form-card,
.hear-from-you-card,
.training-passcode-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.blog-card:hover,
.app-item-card:hover,
.training-passcode-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(6, 122, 117, 0.14);
}

.founder-photo-card:hover,
.team-img-card:hover,
.video-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 36px rgba(6, 122, 117, 0.16);
}

/* 5. Image Zoom on Hover */
.blog-card-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.blog-card-img-wrap img,
.gallery-img-box img,
.app-card-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img-wrap img,
.gallery-img-box:hover img,
.app-item-card:hover .app-card-img-wrap img {
  transform: scale(1.06);
}

/* 6. Button Shimmer & Press Micro-interactions */
.download-pill-btn,
.btn-unlock,
.btn-submit-form,
.btn-visit-app,
.btn-click-here,
.read-more-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.download-pill-btn::after,
.btn-unlock::after,
.btn-submit-form::after,
.btn-visit-app::after,
.btn-click-here::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg) translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.download-pill-btn:hover::after,
.btn-unlock:hover::after,
.btn-submit-form:hover::after,
.btn-visit-app:hover::after,
.btn-click-here:hover::after {
  transform: rotate(30deg) translateX(120%);
}

.download-pill-btn:hover,
.btn-visit-app:hover,
.btn-click-here:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 122, 117, 0.28);
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(4px);
}

button:active,
a.btn:active,
.btn-unlock:active,
.btn-submit-form:active,
.download-pill-btn:active {
  transform: scale(0.97) !important;
}

/* 7. Interactive Social Icons */
.social-icons a {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
}

/* 8. Back to top button animation */
.back-to-top-btn {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(6, 122, 117, 0.35);
}

/* 9. Video Player Box Hover Glow */
.training-video-box {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.training-video-item:hover .training-video-box {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(6, 122, 117, 0.22);
}

/* 10. Passcode Card Entrance */
.training-passcode-card {
  animation: cardEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
