/* ===== Mindful Sprouts — Premium Therapeutic Website ===== */

:root {
  --blue-green: #AABFB7;
  --sage: #7A9484;
  --taupe: #A89B87;
  --gentle-green: #B4BFA4;
  --charcoal: #2D2D2D;
  --cream: #FDFBF7;
  --white: #FFFFFF;
  --sage-light: #e8efeb;
  --sage-glow: rgba(122, 148, 132, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blue-green); border-radius: 3px; }

/* ===== Selection ===== */
::selection { background: var(--blue-green); color: var(--white); }

/* ===== Utility ===== */
.section-pad { padding: 100px 0; }
@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

.container-narrow { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(170, 191, 183, 0.2);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(253, 251, 247, 0.95);
  box-shadow: 0 4px 30px rgba(122, 148, 132, 0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; border-radius: 6px; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--sage);
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--charcoal); font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--sage); border-radius: 1px; transition: width 0.3s;
}
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--sage); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-size: 0.85rem !important;
  font-weight: 600 !important; letter-spacing: 0.02em;
  transition: all 0.3s !important; box-shadow: 0 2px 12px rgba(122,148,132,0.25);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #6a8474 !important; color: var(--white) !important;
  transform: translateY(-1px); box-shadow: 0 4px 20px rgba(122,148,132,0.35);
}

/* Mobile menu */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--charcoal);
  margin: 5px 0; border-radius: 2px; transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .mobile-toggle { display: block; z-index: 1001; position: relative; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(253, 251, 247, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--cream) 0%, #f0f4f2 50%, #e8efeb 100%);
}
.hero-bg-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
  pointer-events: none;
}
.hero-bg-orb.orb1 { width: 500px; height: 500px; background: var(--blue-green); top: -100px; right: -100px; }
.hero-bg-orb.orb2 { width: 400px; height: 400px; background: var(--gentle-green); bottom: -80px; left: -80px; }
.hero-bg-orb.orb3 { width: 300px; height: 300px; background: var(--taupe); top: 50%; left: 40%; opacity: 0.15; }

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(122, 148, 132, 0.1); border: 1px solid rgba(122, 148, 132, 0.2);
  padding: 6px 16px; border-radius: 50px; font-size: 0.75rem;
  font-weight: 600; color: var(--sage); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700; line-height: 1.15; color: var(--charcoal);
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--sage); }

.hero-subtitle {
  font-size: 1.05rem; line-height: 1.7; color: #5a5a5a;
  margin-bottom: 36px; max-width: 480px;
}
.hero-creds {
  font-size: 0.8rem; color: var(--taupe); font-weight: 500;
  margin-bottom: 32px; letter-spacing: 0.02em;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(122,148,132,0.3);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #6a8474; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(122,148,132,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--sage);
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  border: 2px solid var(--blue-green); transition: all 0.3s; cursor: pointer;
}
.btn-secondary:hover { background: var(--sage-light); transform: translateY(-2px); }

/* Hero image */
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-img-wrapper {
  position: relative; width: 420px; height: 500px;
  border-radius: 200px 200px 40px 40px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(122,148,132,0.2);
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute; background: var(--white); border-radius: 16px;
  padding: 14px 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600;
}
.hero-img-float.float-1 { bottom: 40px; left: -40px; }
.hero-img-float.float-2 { top: 60px; right: -30px; }
.hero-img-float .float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-light);
}
.hero-img-float .float-icon svg { width: 18px; height: 18px; color: var(--sage); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-img-wrapper { width: 300px; height: 360px; }
  .hero-img-float { display: none; }
}

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 12px;
  background: var(--sage-light); padding: 6px 18px; border-radius: 50px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--charcoal); line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1rem; line-height: 1.7; color: #6b6b6b;
  max-width: 600px; margin: 0 auto;
}

/* ===== About ===== */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%; max-width: 440px; border-radius: 24px;
  box-shadow: 0 20px 50px rgba(122,148,132,0.15);
  object-fit: cover; aspect-ratio: 3/4;
}
.about-img-secondary {
  position: absolute; bottom: -20px; right: -20px;
  width: 180px; height: 180px; border-radius: 20px;
  object-fit: cover; border: 5px solid var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; margin-bottom: 8px; color: var(--charcoal);
}
.about-content .founder-name {
  font-size: 1rem; color: var(--sage); font-weight: 600; margin-bottom: 6px;
}
.about-content .founder-creds {
  font-size: 0.8rem; color: var(--taupe); margin-bottom: 24px; line-height: 1.6;
}
.about-content p { font-size: 0.95rem; line-height: 1.8; color: #555; margin-bottom: 16px; }
.about-content .about-list { list-style: none; margin: 20px 0; }
.about-content .about-list li {
  position: relative; padding-left: 24px; margin-bottom: 12px;
  font-size: 0.9rem; line-height: 1.6; color: #555;
}
.about-content .about-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
}
.about-quote {
  background: var(--sage-light); border-left: 3px solid var(--sage);
  padding: 20px 24px; border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--sage); font-size: 0.95rem;
  line-height: 1.7; margin-top: 24px;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { text-align: center; }
  .about-img-main { max-width: 320px; margin: 0 auto; display: block; }
  .about-img-secondary { right: 10%; bottom: -10px; width: 140px; height: 140px; }
}

/* ===== Services ===== */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }

.services-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 48px;
}
.tab-btn {
  background: var(--white); border: 1.5px solid #e0e0e0;
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: #777;
  cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif;
}
.tab-btn:hover { border-color: var(--sage); color: var(--sage); }
.tab-btn.active {
  background: var(--sage); border-color: var(--sage); color: var(--white);
  box-shadow: 0 4px 15px rgba(122,148,132,0.3);
}

.services-panel { display: none; animation: fadeUp 0.5s ease; }
.services-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.service-card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--white); border: 1px solid #eee;
  border-radius: 16px; padding: 28px;
  transition: all 0.3s; cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(122,148,132,0.12);
  border-color: var(--blue-green);
}
.service-card .card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--sage-light); display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-card .card-icon svg { width: 22px; height: 22px; color: var(--sage); }
.service-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.service-card p { font-size: 0.85rem; line-height: 1.6; color: #777; }

/* Service intro */
.service-intro {
  display: flex; align-items: center; gap: 40px;
  margin-bottom: 36px; background: var(--white);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.service-intro-icon {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, var(--sage), var(--blue-green));
  display: flex; align-items: center; justify-content: center;
}
.service-intro-icon svg { width: 32px; height: 32px; color: var(--white); }
.service-intro-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 6px;
}
.service-intro-text p { font-size: 0.9rem; color: #777; line-height: 1.6; }

@media (max-width: 640px) {
  .service-intro { flex-direction: column; text-align: center; gap: 16px; }
}

/* ===== Gallery/Stats ===== */
.stats {
  background: linear-gradient(135deg, var(--sage) 0%, #6a8474 100%);
  color: var(--white);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  text-align: center;
}
.stat-item h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 4px; }
.stat-item p { font-size: 0.85rem; opacity: 0.85; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ===== Contact ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; margin-bottom: 16px;
}
.contact-info p { font-size: 0.95rem; color: #666; line-height: 1.7; margin-bottom: 28px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--sage-light); display: flex;
  align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--sage); }
.contact-item-text h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.contact-item-text p { font-size: 0.9rem; color: #666; }
.contact-item-text a { color: var(--sage); text-decoration: none; }
.contact-item-text a:hover { text-decoration: underline; }

.contact-form {
  background: var(--cream); border-radius: 20px; padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 6px; color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--white); border: 1.5px solid #ddd;
  border-radius: 12px; font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif; color: var(--charcoal);
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%; padding: 14px; background: var(--sage); color: var(--white);
  border: none; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { background: #6a8474; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 40px; border-radius: 6px; }
.footer-brand .footer-logo span {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--white); font-weight: 600;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }

.footer h4 {
  color: var(--white); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.85rem; transition: color 0.3s;
}
.footer-links a:hover { color: var(--blue-green); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--sage); }
.footer-social a svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center; font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Animations ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== Floating shapes decoration ===== */
.floating-leaf {
  position: absolute; opacity: 0.06; pointer-events: none;
}

/* ===== PREMIUM ANIMATIONS ===== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--blue-green), var(--gentle-green));
  z-index: 9999; transform-origin: left; transform: scaleX(0);
}

/* Custom cursor */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--sage); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1.5px solid rgba(122,148,132,0.4);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.22,1,0.36,1), height 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, background 0.3s;
}
.cursor-ring.hover {
  width: 64px; height: 64px;
  border-color: var(--sage);
  background: rgba(122,148,132,0.06);
}
@media (max-width: 768px) { .cursor-dot, .cursor-ring { display: none; } }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* Text split reveal animation */
.split-line {
  overflow: hidden; display: block;
}
.split-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-line-inner.visible {
  transform: translateY(0);
}

/* Morphing blob background */
.morph-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; opacity: 0.2;
  animation: morphBlob 8s ease-in-out infinite alternate;
}
@keyframes morphBlob {
  0% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: rotate(0deg) scale(1); }
  33% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; transform: rotate(45deg) scale(1.05); }
  66% { border-radius: 30% 70% 30% 70% / 55% 45% 55% 45%; transform: rotate(-25deg) scale(0.95); }
  100% { border-radius: 55% 45% 60% 40% / 40% 60% 40% 60%; transform: rotate(15deg) scale(1.02); }
}

/* Magnetic button effect */
.magnetic-btn {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Card 3D tilt */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* Service card glow on hover */
.service-card {
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: radial-gradient(circle, rgba(122,148,132,0.08), transparent 70%);
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}
.service-card:hover::before { width: 400px; height: 400px; }

/* Service card icon bounce */
.service-card:hover .card-icon {
  animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes iconBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1); }
}

/* Parallax section decorations */
.parallax-deco {
  position: absolute; pointer-events: none; will-change: transform;
}

/* Floating badges in hero — gentle bob */
.hero-img-float {
  animation: gentleBob 4s ease-in-out infinite;
}
.hero-img-float.float-1 { animation-delay: 0s; }
.hero-img-float.float-2 { animation-delay: -2s; }
@keyframes gentleBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Gallery photo strip */
.photo-strip {
  overflow: hidden; padding: 60px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.photo-track {
  display: flex; gap: 16px; width: max-content;
  animation: stripScroll 35s linear infinite;
}
.photo-track img {
  width: 260px; height: 320px; object-fit: cover;
  border-radius: 16px; filter: grayscale(20%);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.photo-track img:hover {
  filter: grayscale(0%); transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 50px rgba(122,148,132,0.2);
}
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Breathing glow ring around founder image */
.hero-img-wrapper::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: inherit; border: 2px solid var(--blue-green);
  opacity: 0; animation: breatheGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breatheGlow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.02); }
}

/* Stats number glow */
.stat-item {
  transition: transform 0.3s;
}
.stat-item:hover {
  transform: scale(1.08);
}
.stat-item:hover h3 {
  text-shadow: 0 0 30px rgba(255,255,255,0.4);
}

/* Reveal variants */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-rotate { opacity: 0; transform: translateY(40px) rotate(3deg); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-rotate.visible { opacity: 1; transform: translateY(0) rotate(0); }

/* Gradient text shimmer */
.text-shimmer {
  background: linear-gradient(90deg, var(--charcoal) 0%, var(--sage) 50%, var(--charcoal) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

/* Navbar links — staggered fade on load */
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-links a { animation: navFadeIn 0.5s ease backwards; }
.nav-links a:nth-child(1) { animation-delay: 0.1s; }
.nav-links a:nth-child(2) { animation-delay: 0.2s; }
.nav-links a:nth-child(3) { animation-delay: 0.3s; }
.nav-links a:nth-child(4) { animation-delay: 0.4s; }
.nav-links a:nth-child(5) { animation-delay: 0.5s; }
.nav-links a:nth-child(6) { animation-delay: 0.6s; }

/* Button ripple */
.btn-primary, .btn-secondary {
  position: relative; overflow: hidden;
}
.btn-primary .ripple, .btn-secondary .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0); animation: ripple 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* Tab btn transition */
.tab-btn {
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.tab-btn:hover {
  transform: translateY(-2px);
}

/* Contact form inputs — underline focus animation */
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  box-shadow: 0 4px 16px rgba(122,148,132,0.12);
  transform: translateY(-1px);
}
.form-group input, .form-group textarea, .form-group select {
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}

/* Social links spin */
.footer-social a:hover {
  transform: scale(1.15) rotate(8deg);
}

/* Quote block border animation */
.about-quote {
  position: relative;
  overflow: hidden;
}
.about-quote::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: linear-gradient(180deg, var(--sage), var(--blue-green));
  transition: height 1s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.about-quote.visible::before {
  height: 100%;
}

/* Section divider grow */
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--blue-green));
  margin: 0 auto 16px; border-radius: 2px;
  transform-origin: center; transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.22,1,0.36,1);
}
.section-divider.visible { transform: scaleX(1); }

/* ===== BOOKING CTA FLASH ===== */
.booking-trigger {
  animation: ctaFlash 2s ease-in-out infinite;
  position: relative;
}
@keyframes ctaFlash {
  0%, 100% { box-shadow: 0 2px 12px rgba(122,148,132,0.25); }
  50% { box-shadow: 0 4px 25px rgba(122,148,132,0.6), 0 0 40px rgba(122,148,132,0.2); transform: scale(1.03); }
}
.booking-trigger::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: inherit; border: 2px solid var(--sage);
  opacity: 0; animation: ctaPulseRing 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaPulseRing {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.08); }
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1);
}
.booking-modal.open { opacity: 1; pointer-events: all; }

.booking-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-content {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 24px;
  padding: 40px; max-width: 560px; width: 90%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.booking-modal.open .booking-content {
  transform: translateY(0) scale(1);
}

.booking-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage-light); border: none;
  font-size: 1.4rem; color: var(--charcoal);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.booking-close:hover { background: var(--sage); color: white; }

.booking-header { text-align: center; margin-bottom: 28px; }

.booking-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 520px) {
  .booking-form .form-row { grid-template-columns: 1fr; }
  .booking-content { padding: 28px 20px; }
}

.booking-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.booking-submit .submit-loader svg {
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.booking-success { text-align: center; padding: 20px 0; }

/* Scrollbar for modal */
.booking-content::-webkit-scrollbar { width: 4px; }
.booking-content::-webkit-scrollbar-thumb { background: var(--blue-green); border-radius: 2px; }

/* ============================================================
   MOBILE APP-LIKE PREMIUM DESIGN
   ============================================================ */

@media (max-width: 768px) {

  /* --- Typography: small, elegant, app-like --- */
  body { font-size: 14px; }

  .hero-title { font-size: 2.2rem !important; letter-spacing: -0.03em; line-height: 1.1; }
  .hero-subtitle { font-size: 0.88rem !important; line-height: 1.65; margin-bottom: 24px !important; }
  .hero-badge { font-size: 0.65rem; padding: 5px 12px; margin-bottom: 16px; }
  .hero-creds { font-size: 0.72rem; margin-bottom: 20px; }

  .section-title { font-size: 1.6rem !important; letter-spacing: -0.02em; }
  .section-label { font-size: 0.65rem; padding: 4px 14px; margin-bottom: 8px; }
  .section-desc { font-size: 0.85rem; }
  .section-divider { width: 40px; }
  .section-header { margin-bottom: 36px; }

  /* --- Section spacing: tighter, app-feel --- */
  .section-pad { padding: 48px 0 !important; }
  .container-narrow { padding: 0 18px; }

  /* --- Navbar: compact app bar --- */
  .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(253, 251, 247, 0.98); }
  .nav-inner { height: 60px; padding: 0 16px; }
  .nav-logo img { height: 36px; }
  .nav-logo span { font-size: 0.95rem; }

  /* --- Mobile menu: full-screen app-like --- */
  .nav-links {
    top: 60px;
    background: var(--cream);
    padding: 32px 24px 40px;
    gap: 0;
    justify-content: flex-start;
    z-index: 9999;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block !important;
    padding: 16px 20px !important;
    font-size: 0.92rem !important;
    border-radius: 12px;
    transition: background 0.2s;
  }
  .nav-links a:hover { background: var(--sage-light); }
  .nav-links a::after { display: none !important; }
  .nav-cta {
    margin-top: 12px !important;
    text-align: center !important;
    border-radius: 16px !important;
    padding: 14px 20px !important;
  }

  /* --- Hero: stacked, centered, app-like --- */
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 48px; }
  .hero-inner {
    padding: 80px 18px 40px !important;
    gap: 32px !important;
    text-align: center;
  }
  .hero-text { order: 2; }
  .hero-image { order: 1; }
  .hero-img-wrapper {
    width: 200px !important; height: 240px !important;
    border-radius: 100px 100px 28px 28px !important;
    margin: 0 auto;
  }
  .hero-buttons { justify-content: center; gap: 10px; }
  .hero-buttons a, .btn-primary, .btn-secondary {
    padding: 12px 24px !important;
    font-size: 0.82rem !important;
    border-radius: 14px !important;
  }
  .hero-bg-orb.orb1 { width: 250px; height: 250px; top: -60px; right: -60px; }
  .hero-bg-orb.orb2 { width: 200px; height: 200px; bottom: -40px; left: -40px; }
  .hero-bg-orb.orb3 { width: 150px; height: 150px; }

  /* --- About: stacked, card-like --- */
  .about-grid { gap: 28px !important; }
  .about-img-main {
    max-width: 260px !important;
    border-radius: 20px !important;
    aspect-ratio: 3/4;
  }
  .about-img-secondary {
    width: 110px !important; height: 110px !important;
    border-radius: 16px !important; border-width: 3px !important;
    right: 5% !important; bottom: -10px !important;
  }
  .about-content h3 { font-size: 1.35rem; }
  .about-content .founder-name { font-size: 0.88rem; }
  .about-content .founder-creds { font-size: 0.72rem; line-height: 1.5; }
  .about-content p { font-size: 0.85rem; line-height: 1.7; }
  .about-content .about-list li { font-size: 0.82rem; padding-left: 20px; margin-bottom: 8px; }
  .about-content .about-list li::before { width: 6px; height: 6px; top: 7px; }
  .about-quote {
    padding: 16px 18px; font-size: 0.85rem;
    border-radius: 0 10px 10px 0;
  }

  /* --- Service cards: compact app cards --- */
  .services-tabs { gap: 6px; margin-bottom: 32px; }
  .tab-btn {
    padding: 8px 14px !important;
    font-size: 0.72rem !important;
    border-radius: 10px !important;
  }
  .service-card-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .service-card {
    padding: 20px !important;
    border-radius: 14px !important;
    display: flex; align-items: flex-start; gap: 14px;
    text-align: left !important;
  }
  .service-card .card-icon {
    width: 40px !important; height: 40px !important; min-width: 40px;
    border-radius: 12px !important; margin-bottom: 0 !important;
  }
  .service-card .card-icon svg { width: 18px !important; height: 18px !important; }
  .service-card h4 { font-size: 0.88rem !important; margin-bottom: 4px !important; }
  .service-card p { font-size: 0.78rem !important; line-height: 1.55 !important; }

  .service-intro {
    padding: 20px !important; border-radius: 16px !important;
    margin-bottom: 24px !important;
  }
  .service-intro-icon {
    width: 52px !important; height: 52px !important; min-width: 52px;
    border-radius: 14px !important;
  }
  .service-intro-icon svg { width: 24px !important; height: 24px !important; }
  .service-intro-text h3 { font-size: 1.1rem !important; }
  .service-intro-text p { font-size: 0.82rem !important; }

  /* --- Why different cards --- */
  .service-card[style*="text-align:center"] {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 24px 18px !important;
  }

  /* --- Stats: 2-column compact grid --- */
  .stats .container-narrow { padding: 0 18px; }
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  .stat-item h3 { font-size: 1.8rem !important; }
  .stat-item p { font-size: 0.72rem; }

  /* --- Approach: single column, mobile-optimized --- */
  .approach-flow > .reveal {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  }
  .approach-flow > .reveal > div[style*="width: 64px"] {
    width: 48px !important; height: 48px !important;
    margin: 0 auto; order: -1;
  }
  .approach-flow > .reveal > div[style*="width: 64px"] span {
    font-size: 1rem !important;
  }
  .approach-flow > .reveal > div:first-child { text-align: center !important; }
  .approach-flow > .reveal h4 { font-size: 1.05rem !important; }
  .approach-flow > .reveal p { font-size: 0.82rem !important; }
  .approach-flow > .reveal img {
    max-width: 100% !important; height: 160px !important;
    margin: 0 auto !important; display: block; border-radius: 12px !important;
  }
  .approach-flow > div[style*="position: absolute"] { display: none !important; }

  /* --- Photo strip --- */
  .photo-strip { padding: 40px 0 !important; }
  .photo-track img {
    width: 180px !important; height: 220px !important;
    border-radius: 12px !important;
  }

  /* --- Contact: stacked, app form --- */
  .contact-grid { gap: 32px !important; }
  .contact-info h3 { font-size: 1.35rem; }
  .contact-info p { font-size: 0.85rem; margin-bottom: 20px; }
  .contact-item { gap: 12px; margin-bottom: 18px; }
  .contact-item-icon { width: 38px; height: 38px; border-radius: 10px; }
  .contact-item-text h4 { font-size: 0.8rem; }
  .contact-item-text p, .contact-item-text a { font-size: 0.82rem; }

  .contact-form {
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }
  .form-group label { font-size: 0.72rem; margin-bottom: 4px; }
  .form-group input, .form-group textarea, .form-group select {
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
    border-radius: 10px !important;
  }
  .form-submit {
    padding: 12px !important;
    font-size: 0.85rem !important;
    border-radius: 14px !important;
  }

  /* --- Footer: compact --- */
  .footer { padding: 40px 0 20px; }
  .footer-grid { gap: 28px; margin-bottom: 28px; }
  .footer-brand .footer-logo img { height: 32px; }
  .footer-brand .footer-logo span { font-size: 0.95rem; }
  .footer-brand p { font-size: 0.78rem; }
  .footer h4 { font-size: 0.75rem; margin-bottom: 12px; }
  .footer-links a { font-size: 0.78rem; }
  .footer-social a { width: 34px; height: 34px; border-radius: 8px; }
  .footer-bottom { font-size: 0.7rem; padding-top: 18px; }
  .footer-bottom p { font-size: 0.7rem; }

  /* --- Booking modal: mobile full-screen --- */
  .booking-content {
    border-radius: 20px 20px 0 0 !important;
    max-height: 92vh; width: 100% !important;
    padding: 28px 18px !important;
    position: fixed; bottom: 0; left: 0; right: 0;
    transform: translateY(100%) !important;
  }
  .booking-modal.open .booking-content {
    transform: translateY(0) !important;
  }
  .booking-header h3 { font-size: 1.25rem; }
  .booking-header p { font-size: 0.82rem; }
  .booking-form .form-row { grid-template-columns: 1fr !important; gap: 0; }

  /* --- Morph blobs: smaller on mobile --- */
  .morph-blob { opacity: 0.12 !important; filter: blur(60px) !important; }

  /* --- Smooth iOS-like momentum scrolling --- */
  html { -webkit-overflow-scrolling: touch; }

  /* --- Safe area for notch phones --- */
  .navbar { padding-top: env(safe-area-inset-top, 0); }
  .footer-bottom { padding-bottom: env(safe-area-inset-bottom, 0); }
}

/* --- Extra small phones (< 380px) --- */
@media (max-width: 380px) {
  .hero-title { font-size: 1.8rem !important; }
  .hero-img-wrapper { width: 160px !important; height: 200px !important; }
  .stats-grid { gap: 14px !important; }
  .stat-item h3 { font-size: 1.5rem !important; }
  .tab-btn { padding: 6px 10px !important; font-size: 0.65rem !important; }
  .service-card { padding: 16px !important; }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-float {
  animation: whatsapp-pulse 2s infinite;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
