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

:root {
  --primary: #0ea5e9;
  --secondary: #10b981;
  --primary-dark: #0284c7;
  --primary-light: #e0f2fe;
  --accent: #60a5fa;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', 'Lato', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background-color: var(--bg);
  overflow-x: hidden;
}

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

.section {
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center top;
  min-height: 100vh;
  display: flex;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  background-color: var(--bg);
  content-visibility: auto;
  contain-intrinsic-size: 100vh 500px;
}

.section-dark {
  color: #fff;
  background-color: var(--dark);
}

.section-dark::before {
  background: rgba(15, 23, 42, 0.4);
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-dark .section-header p {
  color: #cbd5e1;
}

.section-light-blue {
  background-color: var(--primary-light);
}

.section-light-blue::before {
  background: rgba(224, 242, 254, 0.2);
}

#faq .section-header h2,
#faq .section-header p,
#faq .section-tag {
  color: #fff;
}

#faq .section-tag {
  background: rgba(0, 0, 0, 0.3);
}

.section > .container {
  position: relative;
  z-index: 1;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 0;
  margin-bottom: 16px;
}

.section-dark .section-tag {
  background: rgba(14, 165, 233, 0.15);
}

.section-light-blue .section-tag {
  background: #fff;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-outline::after {
  background: #fff;
}

@keyframes vibrate {
  0% { transform: translateY(-3px) scale(1.03) translateX(0); }
  25% { transform: translateY(-3px) scale(1.03) translateX(-2px); }
  50% { transform: translateY(-3px) scale(1.03) translateX(2px); }
  75% { transform: translateY(-3px) scale(1.03) translateX(-2px); }
  100% { transform: translateY(-3px) scale(1.03) translateX(0); }
}

.btn:hover {
  animation: vibrate 0.4s ease-in-out infinite;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.btn-primary:active {
  transform: scale(0.99);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline:active {
  transform: scale(0.99);
}

.btn:active {
  transform: scale(0.99);
}

button:active, a:active {
  transform: scale(0.995);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Splash Screen */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 10;
  cursor: pointer;
}

.logo-mobile {
  display: none;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 90px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-left {
}

.nav-right {
  justify-content: flex-end;
  padding-right: 24px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding: 8px 4px;
}

.header.scrolled .nav a {
  color: var(--dark);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:hover {
  color: var(--primary) !important;
}

.menu-item {
  position: relative;
}

.menu-item > a i {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a i {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 100;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #cbd5e1 !important;
}

.sub-menu li a::after {
  display: none;
}

.sub-menu li a:hover {
  background: rgba(14, 165, 233, 0.15);
  color: #fff !important;
}

.btn-nav {
  background: #25d366 !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 0;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav::after {
  display: none !important;
}

.btn-nav:hover {
  animation: vibrate 0.4s ease-in-out infinite;
}

/* Tools Section */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tool-card {
  background: #fff;
  padding: 40px;
  border-radius: 0;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.tool-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-alt);
  color: var(--secondary);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.tool-card:hover .tool-icon {
  background: var(--secondary);
  color: #fff;
  transform: rotate(15deg);
}

.tool-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark);
}

/* Bubble Animations */
#bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.bubble {
  position: absolute;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(200, 230, 255, 0.3));
  border: none;
  border-radius: 0;
  box-shadow: inset -3px -3px 8px rgba(0,0,0,0.05), inset 3px 3px 12px rgba(255,255,255,0.8), 0 0 6px rgba(255,255,255,0.2);
  pointer-events: none;
  animation: soapBubble 2.5s ease-out forwards;
}

@keyframes soapBubble {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.6;
  }
  20% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -200%) scale(1.8);
    opacity: 0;
  }
}

/* Floating Animation for parallax elements */
.parallax-el {
  will-change: transform;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 0;
  transition: var(--transition);
}

.header:not(.scrolled) .hamburger span {
  background: #fff;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hamburger for Mobile */
@media (max-width: 900px) {
  .header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header.scrolled {
    background: transparent !important;
    border-bottom: none;
  }

  .header-inner {
    height: 60px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: flex;
  }

  .logo {
    position: static;
    transform: none;
    margin: 0 auto 0 0;
  }

  .logo img {
    height: 90px;
  }

  .header.scrolled .logo img {
    height: 90px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .nav.active {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    text-align: center;
  }

  .nav-left, .nav-right {
    margin: 0;
  }

  .nav a {
    font-size: 1.5rem;
    color: #fff !important;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    margin-left: auto;
  }
}

/* Desktop nav: tighten spacing on narrower screens to prevent logo overlap */
@media (min-width: 901px) and (max-width: 1200px) {
  .nav ul {
    gap: 10px;
  }

  .nav a {
    font-size: 0.75rem;
    padding: 6px 2px;
  }

  .btn-nav {
    font-size: 0.75rem !important;
    padding: 6px 10px !important;
  }
}



/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 90px;
  will-change: transform;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-content h1 span {
  color: var(--primary);
  display: block;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-features i {
  color: var(--secondary);
  font-size: 1rem;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: #e2e8f0;
  letter-spacing: 0.5px;
}

.hero-badge i {
  color: var(--primary);
  font-size: 1rem;
}

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

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px;
  transition: var(--transition);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 0;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.service-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* Equipment Note */
.equipment-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--primary-light);
  border: 1px solid var(--primary);
  padding: 28px 32px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.equipment-note-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
}

.equipment-note-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.equipment-note-content p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .equipment-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
}

/* Steps */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 0;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.step p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.5;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-content > p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.about-image img {
  width: 100%;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 500px;
}

/* What's Included */
#founder {
  position: relative;
  min-height: auto;
  display: block;
  top: auto;
}

.founder-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.founder-decor-img {
  position: absolute;
  width: 800px;
  height: auto;
  will-change: transform, opacity;
  object-fit: contain;
}

.founder-decor-img.fd-left {
  left: -10%;
  top: -5%;
  width: 900px;
  max-width: 80vw;
}

.founder-decor-img.fd-right {
  right: -10%;
  bottom: -10%;
  width: 1000px;
  max-width: 85vw;
}

.founder-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-image {
  flex: 0 0 500px;
}

.founder-image {
  perspective: 1000px;
}

.founder-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border: 6px solid #fff;
  transform-style: preserve-3d;
  will-change: transform;
}

.founder-bio {
  flex: 1;
}

.founder-bio p {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 24px;
  font-weight: 450;
}

.founder-bio blockquote {
  font-family: 'Lato', sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #0f172a;
  border-left: 5px solid #0ea5e9;
  padding: 16px 28px;
  background: rgba(255,255,255,0.7);
  margin-top: 28px;
  line-height: 1.7;
  font-weight: 500;
}

/* Testimonials */
#testimonials {
  min-height: auto;
  align-items: start;
  padding: 100px 0;
  position: relative;
}

#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  z-index: 0;
}

#testimonials .section-header h2 {
  color: #fff;
}

#testimonials .section-header p {
  color: #cbd5e1;
}

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

.testimonial-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 28px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.testimonial-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.stars .far {
  color: #cbd5e1;
}

.testimonial-card > p {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat {
  padding: 20px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
}

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

.team-card {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 28px;
  transition: var(--transition);
}

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

.team-img {
  width: 80px;
  height: 80px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-rating {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

#meet-team {
  background-position: left center;
  justify-content: center;
}

#meet-team > .container {
  width: 55%;
  max-width: 700px;
  padding-left: 48px;
}

#how-it-works {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 60vh;
  padding: 80px 0;
  position: relative;
  align-items: center;
}

#how-it-works .container {
  max-width: 800px;
}

#how-it-works .section-header {
  margin-bottom: 24px;
}

#how-it-works .section-tag {
  background: transparent;
  padding: 0;
  color: var(--primary);
}

#how-it-works .steps {
  gap: 0;
}

#how-it-works .step {
  max-width: 240px;
  flex: 1;
  padding: 0 8px;
}

#how-it-works .step-number {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  margin-bottom: 8px;
  background: var(--primary);
  color: #fff;
}

#how-it-works .step h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

#how-it-works .step p {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.4;
  margin-bottom: 0;
}

#how-it-works .step-arrow {
  font-size: 1rem;
}

#how-it-works::before {
  display: none !important;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question i {
  transition: var(--transition);
  font-size: 0.85rem;
  color: var(--text-light);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

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

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 36px;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 2px;
  width: 24px;
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item p {
  font-size: 1rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}

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

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-map {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

#contact {
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 0;
}

#contact .container {
  position: relative;
  z-index: 1;
}

#contact .contact-info *,
#contact .contact-info h2,
#contact .contact-info > p,
#contact .contact-item h4,
#contact .contact-item a,
#contact .contact-item p {
  color: #fff;
}

#contact .contact-item i {
  color: var(--primary);
}

#contact .contact-form {
  background: rgba(255, 255, 255, 0.95);
}

.contact-map iframe {
  display: block;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--bg-alt);
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0c1a32, #0f172a, #162a4a);
  color: #94a3b8;
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer .logo {
  position: static;
  transform: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo img {
  height: 70px;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  margin: 16px 0 20px;
  line-height: 1.6;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

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

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

.footer-links ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--primary);
  width: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

.watermark {
  display: flex;
  align-items: center;
  gap: 6px;
}

.watermark img {
  height: 20px;
  width: auto;
  vertical-align: middle;
}

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

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Floating Buttons */
.float-music,
.float-home,
.float-whatsapp {
  position: fixed;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  outline: none;
}

.float-music {
  bottom: 152px;
  background: var(--primary);
}

.float-music:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.float-music.muted {
  background: var(--dark);
  opacity: 0.6;
}

.float-music.muted:hover {
  background: var(--primary);
  opacity: 1;
}

.float-music.muted i {
  animation: none;
}

@keyframes musicPulse {
  0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.float-music:not(.muted) {
  animation: musicPulse 2s infinite;
}

.float-home {
  bottom: 88px;
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
}

.float-home.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-home:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.float-home.show:hover {
  transform: translateY(-3px);
}

.float-whatsapp {
  bottom: 24px;
  background: #25d366;
  animation: pulseWhatsApp 2s infinite;
}

.float-whatsapp:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Registration Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px 8px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--dark);
}

.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.modal-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.modal-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.modal-content {
  display: none;
}

.modal-content.active {
  display: block;
}

.modal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.modal-content > p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.google-btn {
  background: #fff !important;
  color: #333 !important;
  border-color: #ddd !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
}

.google-btn:hover {
  background: #f5f5f5 !important;
  border-color: #ccc !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
}

.modal-divider {
  text-align: center;
  margin: 20px 0;
  font-size: 0.8rem;
  color: var(--text-light);
  position: relative;
}

.modal-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.modal-divider span {
  background: var(--bg);
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.modal-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.modal-note a {
  color: var(--primary);
  font-weight: 600;
}

.form-row {
  margin-bottom: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
}

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

.form-row textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 6px;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  accent-color: var(--primary);
}

.success-icon {
  text-align: center;
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

/* ===== Why Choose Us ===== */
#why-choose-us {
  position: relative;
}
#why-choose-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 0;
}
#why-choose-us .container {
  position: relative;
  z-index: 1;
}
#why-choose-us .section-header h2,
#why-choose-us .section-header p {
  color: #fff;
}
#why-choose-us .section-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.wcu-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 28px;
  transition: var(--transition);
}

.wcu-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.wcu-card-wide {
  grid-column: span 1;
}

.wcu-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.wcu-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.wcu-card > p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 16px;
  line-height: 1.6;
}

.wcu-list {
  list-style: none;
}

.wcu-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
  padding: 6px 0;
}

.wcu-list li i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.wcu-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wcu-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.wcu-feature:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
  color: #fff;
}

.wcu-feature i {
  color: var(--primary);
  font-size: 1rem;
}

/* ===== About (New) ===== */
.about-full {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-story {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
}

#about .about-full .about-story {
  color: #e2e8f0;
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.about-mvv-card,
.about-motto-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.about-mvv-card:hover,
.about-motto-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.mvv-icon,
.motto-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-mvv-card h3,
.about-motto-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.about-mvv-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.motto-text {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--primary) !important;
  font-style: italic;
}

.about-values {
  max-width: 1000px;
  margin: 0 auto;
}

.about-values h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.value-letter {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 12px;
}

.value-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-card p {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ===== Testimonial Badges ===== */
.testimonial-card-highlight {
  position: relative;
  border-color: var(--primary) !important;
  background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(16,185,129,0.15));
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 4px 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Service Card Featured ===== */
.service-card-featured {
  border-color: var(--secondary) !important;
  background: linear-gradient(135deg, rgba(16,185,129,0.04), rgba(14,165,233,0.04));
  position: relative;
}

.service-card-featured::before {
  content: 'Popular';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--secondary);
  padding: 3px 10px;
}

/* ===== Staff Portal ===== */
#portal {
  position: relative;
}
#portal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 0;
}
#portal .container {
  position: relative;
  z-index: 1;
}

.portal-tabs {
  max-width: 780px;
  margin: 0 auto;
}

.portal-tab-nav {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.portal-tab-btn {
  flex: 1;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.portal-tab-btn:hover {
  color: #94a3b8;
}

.portal-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.portal-tab-btn i {
  font-size: 1rem;
}

.portal-tab-content {
  display: none;
}

.portal-tab-content.active {
  display: block;
}

.portal-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 36px;
}

.portal-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-card h3 i {
  color: var(--primary);
}

.portal-card > p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 28px;
}

.portal-card .form-group label {
  color: #cbd5e1;
}

.portal-card .form-group input,
.portal-card .form-group select,
.portal-card .form-group textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

.portal-card .form-group input:focus,
.portal-card .form-group select:focus,
.portal-card .form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.portal-card .form-group input::placeholder,
.portal-card .form-group select::placeholder,
.portal-card .form-group textarea::placeholder {
  color: #64748b;
}

.portal-card .form-group select option {
  background: #1e293b;
  color: #fff;
}

/* Track Status */
.track-status {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.track-step.active {
  color: var(--secondary);
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.08);
}

.track-step i {
  font-size: 1.1rem;
  color: inherit;
}

.track-note {
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 16px;
}

.track-note a {
  color: var(--primary);
  font-weight: 600;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 6px;
  font-size: 1.6rem;
  cursor: pointer;
  margin-bottom: 8px;
}

.star-rating i {
  color: #334155;
  transition: var(--transition);
}

.star-rating i.active,
.star-rating i:hover,
.star-rating i:hover ~ i {
  color: #f59e0b;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
  .wcu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wcu-card-wide {
    grid-column: span 2;
  }
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-mvv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-motto-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .wcu-grid {
    grid-template-columns: 1fr;
  }
  .wcu-card-wide {
    grid-column: span 1;
  }
  .wcu-features-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-mvv-grid {
    grid-template-columns: 1fr;
  }
  .about-motto-card {
    grid-column: span 1;
  }
  .portal-tab-btn {
    font-size: 0.8rem;
    padding: 12px 10px;
  }
  .portal-card {
    padding: 24px 20px;
  }
  .portal-tab-nav {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .value-card {
    padding: 16px 12px;
  }
}

/* Ensure About section overlay is always applied */
#about {
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  z-index: 0;
}
#about .container {
  position: relative;
  z-index: 1;
}
#about .section-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
#about .section-header h2 {
  color: #fff;
}
#about .section-header p {
  color: #e2e8f0;
}

/* Video fallback on mobile */
.hero-video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

#about {
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about .section-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

#about .about-content h2 {
  color: #fff;
}

#about .about-content > p {
  color: #e2e8f0;
}

#about .about-feature h4 {
  color: #fff;
}

#about .about-feature p {
  color: #cbd5e1;
}

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

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

  .about-image img {
    height: 350px;
  }

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

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

  .about-image img {
    height: 300px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

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

  .logo img {
    height: 90px;
  }

  .header.scrolled .logo img {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
    position: relative;
    min-height: auto;
    top: auto;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .section-header p,
  .section p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-content {
    padding-top: 80px;
  }

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

  .hero-content h1 span {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .hero-features span {
    font-size: 0.85rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    transition: var(--transition);
    opacity: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    width: 100%;
  }

  .nav ul li a {
    display: block;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    border-radius: 0;
  }

  .nav ul li a::after {
    display: none;
  }

  .menu-item-has-children .sub-menu {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .menu-item-has-children.sub-menu-open .sub-menu {
    max-height: 400px;
    padding: 4px 0 4px 16px;
  }

  .sub-menu li a {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #94a3b8;
  }

  .sub-menu li a:hover {
    background: rgba(14, 165, 233, 0.1);
    color: #fff;
  }

  .menu-item > a i {
    float: right;
    margin-top: 6px;
  }

  .btn-nav {
    justify-content: center;
    margin-top: 8px;
    padding: 14px 24px;
  }

  .hamburger {
    display: flex;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: flex;
  }

  .logo {
    position: static;
    transform: none;
    margin: 0 auto 0 0;
  }

  .logo img {
    height: 90px;
  }

  .header.scrolled .logo img {
    height: 90px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px;
  }

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

  .step-arrow {
    transform: rotate(90deg);
  }

  .step {
    max-width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .stat {
    padding: 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #meet-team > .container {
    width: 100%;
    max-width: 100%;
  }

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

  .contact-form {
    padding: 24px;
  }

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

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

  .footer {
    padding: 60px 0 0;
  }

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

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .section-light-blue::before,
  .section-dark::before,
  .section::before {
    background-attachment: scroll;
  }

  .section {
    background-attachment: scroll !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
    position: relative;
    min-height: auto;
    top: auto;
  }

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

  .section-header p {
    font-size: 0.95rem;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-content h1 {
    font-size: 1.1rem;
  }

  .hero-content h1 span {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .hero-features {
    margin-bottom: 14px;
    gap: 10px;
  }

  .hero-features span {
    font-size: 0.75rem;
  }

  .hero-cta {
    gap: 8px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    margin-top: 12px;
    padding: 6px 14px;
  }

  .logo img {
    height: 90px;
  }

  .header.scrolled .logo img {
    height: 90px;
  }

  .header-inner {
    height: 60px;
  }

  .nav {
    top: 65px;
    max-height: calc(100vh - 65px);
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 20px;
  }

  .about-image img {
    height: 240px;
  }

  .team-card {
    padding: 24px 20px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.85rem;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-bottom {
    padding: 16px 0;
    font-size: 0.8rem;
  }

  .footer-legal {
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content h1 span {
    font-size: 1.2rem;
  }

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

  .logo img {
    height: 30px;
  }

  .header-inner {
    height: 56px;
  }

  .nav {
    top: 56px;
    max-height: calc(100vh - 56px);
  }
}

/* ===== Animations ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.included-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.included-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.watermark img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.watermark img:hover {
  transform: rotate(-5deg) scale(1.1);
}

@media (max-width: 900px) {
  .founder-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .founder-image {
    flex: 0 0 auto;
    max-width: 380px;
  }

  .founder-bio p {
    font-size: 1.1rem;
    text-align: left;
  }

  .founder-bio blockquote {
    text-align: left;
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .founder-image {
    max-width: 280px;
  }

  .founder-content {
    gap: 28px;
  }

  .founder-bio p {
    font-size: 1rem;
  }
}

/* ===== Admin Panel Styles ===== */
.admin-section {
  padding: 60px 0;
  background: #0f172a;
  color: #fff;
}
.admin-section .section-header h2 {
  color: #fff;
}
.admin-section .section-header p {
  color: #94a3b8;
}
.admin-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.admin-stat {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 20px 30px;
  text-align: center;
  min-width: 160px;
}
.admin-stat span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0ea5e9;
}
.admin-stat label {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid #334155;
  flex-wrap: wrap;
}
.admin-tab-btn {
  background: none;
  border: none;
  color: #94a3b8;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.admin-tab-btn:hover {
  color: #fff;
}
.admin-tab-btn.active {
  color: #0ea5e9;
  border-bottom-color: #0ea5e9;
  font-weight: 600;
}
.admin-tab-content {
  display: none;
}
.admin-tab-content.active {
  display: block;
}
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.admin-table th {
  background: #1e293b;
  color: #94a3b8;
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #334155;
  white-space: nowrap;
}
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #1e293b;
  color: #cbd5e1;
  vertical-align: top;
}
.admin-table tr:hover td {
  background: rgba(14,165,233,0.05);
}
.admin-table tr.admin-unread td {
  font-weight: 600;
  color: #fff;
}
.admin-table tr.admin-unread td:first-child::before {
  content: '• ';
  color: #0ea5e9;
  font-size: 1.2rem;
}
.admin-btn-small {
  background: #1e293b;
  border: 1px solid #334155;
  color: #cbd5e1;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 0.75rem;
  border-radius: 4px;
  transition: var(--transition);
}
.admin-btn-small:hover {
  background: #334155;
  color: #fff;
}
.admin-btn-danger {
  border-color: #ef4444;
  color: #ef4444;
}
.admin-btn-danger:hover {
  background: #ef4444;
  color: #fff;
}
.privacy-note {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 8px;
  opacity: 0.8;
}
.section-dark .privacy-note {
  color: #cbd5e1;
}

/* ===== Legal / Privacy Pages ===== */
.legal-page {
  padding: 160px 0 80px;
  min-height: 100vh;
  background: var(--bg);
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.legal-effective {
  color: var(--text-light);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content section {
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
}

.legal-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.legal-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
  top: 2px;
}

.legal-contact {
  background: var(--bg-alt);
  padding: 24px 32px;
  margin-top: 8px;
  border-left: 3px solid var(--primary);
}

.legal-contact p {
  margin-bottom: 8px;
}

.legal-contact p:last-child {
  margin-bottom: 0;
}

.legal-contact i {
  color: var(--primary);
  width: 20px;
  margin-right: 8px;
}

.legal-contact a {
  color: var(--primary);
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

.legal-acknowledgment {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background: var(--primary-light);
  border: 1px solid var(--primary);
}

.legal-acknowledgment p {
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 60px;
  }

  .legal-header h1 {
    font-size: 1.8rem;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .legal-contact {
    padding: 16px 20px;
  }
}

/* ===== Check-In / Check-Out ===== */
.checkin-status {
  text-align: center;
  margin: 20px 0;
}

.checkin-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkin-status-badge.not-checked-in {
  background: #1e293b;
  color: #94a3b8;
  border: 1px solid #334155;
}

.checkin-status-badge.checked-in {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.checkin-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin: 12px 0;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  font-size: 0.85rem;
  color: #7dd3fc;
  word-break: break-word;
}

.checkin-location i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.checkin-actions {
  margin-top: 20px;
}

.btn-checkin {
  font-size: 1.1rem;
  padding: 18px 32px;
}

.btn-checkout {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
}

.btn-checkout:hover {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35) !important;
}

.checkin-history {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.checkin-history h4 {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.checkin-history-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.checkin-history-item:last-child {
  border-bottom: none;
}

.checkin-history-type {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  min-width: 60px;
}

.checkin-history-time {
  color: #94a3b8;
  font-size: 0.8rem;
  min-width: 100px;
}

.checkin-history-loc {
  color: #64748b;
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

/* ===== Admin Attendance ===== */
.admin-attendance-summary {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.admin-attendance-summary div {
  font-size: 0.9rem;
  color: #94a3b8;
}

.admin-attendance-summary strong {
  color: #fff;
}

.admin-attendance-summary span {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== Live Map ===== */
.live-map {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.live-map h4 {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.map-leaflet {
  height: 300px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 1;
}

#adminMap {
  height: 400px;
}

.map-fullscreen {
  border: none;
  border-radius: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .checkin-history-loc {
    max-width: 100px;
  }
  .admin-attendance-summary {
    flex-direction: column;
    gap: 8px;
  }
  .map-leaflet {
    height: 220px;
  }
  #adminMap {
    height: 300px;
  }
}
