/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f2626;
  color: #ffffff;
  line-height: 1.6;
  overflow: hidden;
  height: 100%;
}

/* ===========================
   SCROLL SNAP CONTAINER
=========================== */
.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y; /* iOS Safari: allow vertical scroll but pass taps through */
}

.snap-container section,
.snap-container footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Booking section allows internal scroll if content overflows */
.snap-container .booking {
  overflow-y: auto;
  height: 100vh;
  max-height: 100vh;
}

/* About section needs scroll on mobile to show image + text */
@media (max-width: 767px) {
  .snap-container .about {
    overflow-y: auto;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 56px 0 20px;
  }
  .snap-container .about .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
  }
}

.booking-btn-wrapper {
  margin-top: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

/* Pearl Button - Matrix Red Pill Style (from uiverse.io by marcelodolza) */
.btn-calendly {
  --white: #ffe7ff;
  --bg: #1a0000;
  --radius: 100px;
  outline: none;
  cursor: pointer;
  border: 0;
  position: relative;
  border-radius: var(--radius);
  background-color: var(--bg);
  transition: all 0.2s ease;
  touch-action: manipulation; /* iOS Safari: prevents scroll swallowing tap */
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    inset 0 0.3rem 0.9rem rgba(255, 80, 80, 0.3),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(200, 50, 50, 0.5),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

.btn-calendly .wrap {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 160, 160, 0.85);
  padding: clamp(18px, 2vw, 28px) clamp(36px, 4vw, 60px);
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}

.btn-calendly .wrap p span:nth-child(2) {
  display: none;
}

.btn-calendly:hover .wrap p span:nth-child(1) {
  display: none;
}

.btn-calendly:hover .wrap p span:nth-child(2) {
  display: inline-block;
}

.btn-calendly .wrap p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  transition: all 0.2s ease;
  transform: translateY(2%);
  mask-image: linear-gradient(to bottom, white 40%, transparent);
}

.btn-calendly .wrap::before,
.btn-calendly .wrap::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}

.btn-calendly .wrap::before {
  left: -15%;
  right: -15%;
  bottom: 25%;
  top: -100%;
  border-radius: 50%;
  background-color: rgba(255, 80, 80, 0.1);
}

.btn-calendly .wrap::after {
  left: 6%;
  right: 6%;
  top: 12%;
  bottom: 40%;
  border-radius: 22px 22px 0 0;
  box-shadow: inset 0 10px 8px -10px rgba(255, 120, 120, 0.8);
  background: linear-gradient(
    180deg,
    rgba(255, 80, 80, 0.25) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.btn-calendly:hover {
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 80, 80, 0.4),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(200, 50, 50, 0.7),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

.btn-calendly:hover .wrap::before {
  transform: translateY(-5%);
}

.btn-calendly:hover .wrap::after {
  opacity: 0.4;
  transform: translateY(5%);
}

.btn-calendly:hover .wrap p {
  transform: translateY(-4%);
}

.btn-calendly:active {
  transform: translateY(4px);
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 80, 80, 0.5),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.8),
    inset 0 -0.4rem 0.9rem rgba(200, 50, 50, 0.4),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0a1e1e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: #0a1e1e;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(56px, 5vw, 72px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: clamp(28px, 2.5vw, 40px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(77, 217, 192, 0.5));
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.nav-links a {
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #4dd9c0;
}

.btn-contact {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #ffffff;
  padding: clamp(6px, 0.6vw, 10px) clamp(14px, 1.5vw, 24px);
  border-radius: 6px;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-contact:hover {
  background: rgba(255,255,255,0.1);
  border-color: #4dd9c0;
  color: #4dd9c0;
}

.btn-login {
  background: transparent;
  border: 1.5px solid rgba(77, 217, 192, 0.6);
  color: #4dd9c0;
  padding: clamp(6px, 0.6vw, 10px) clamp(14px, 1.5vw, 24px);
  border-radius: 6px;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.btn-login:hover {
  background: rgba(77, 217, 192, 0.12);
  border-color: #4dd9c0;
  color: #ffffff;
}

.mobile-login-link {
  color: #4dd9c0 !important;
  font-weight: 500;
}

/* Hamburger */
.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: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  gap: 12px;
  background: rgba(10, 30, 30, 0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  pointer-events: none;
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 20, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90%;
  max-width: 900px;
}

.hero-dragon-logo {
  width: clamp(100px, 12vw, 180px);
  height: auto;
  display: block;
  margin: 0 auto clamp(16px, 2vw, 32px);
  object-fit: contain;
  animation: fadeInDown 1s ease, tealPulse 2.8s ease-in-out infinite;
}

@keyframes tealPulse {
  0%   { filter: drop-shadow(0 0 6px rgba(77, 217, 192, 0.4)) drop-shadow(0 0 12px rgba(77, 217, 192, 0.2)); }
  50%  { filter: drop-shadow(0 0 18px rgba(77, 217, 192, 0.9)) drop-shadow(0 0 36px rgba(77, 217, 192, 0.5)) drop-shadow(0 0 60px rgba(77, 217, 192, 0.25)); }
  100% { filter: drop-shadow(0 0 6px rgba(77, 217, 192, 0.4)) drop-shadow(0 0 12px rgba(77, 217, 192, 0.2)); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
  line-height: 1.15;
  white-space: nowrap;
}

/* ===========================
   SERVICES
=========================== */
.services {
  background: #112828;
  padding: clamp(24px, 3vh, 60px) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.service-card {
  background: #163535;
  border: 1px solid rgba(77, 217, 192, 0.2);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 44px) clamp(20px, 2.5vw, 36px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 217, 192, 0.5);
  box-shadow: 0 12px 40px rgba(77, 217, 192, 0.1);
}

.service-icon {
  width: clamp(44px, 4vw, 60px);
  height: clamp(44px, 4vw, 60px);
  background: rgba(77, 217, 192, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(14px, 1.5vw, 24px);
}

.service-icon svg {
  width: clamp(22px, 2.2vw, 30px);
  height: clamp(22px, 2.2vw, 30px);
  color: #4dd9c0;
}

.service-card h3 {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 600;
  margin-bottom: clamp(8px, 1vw, 16px);
  color: #ffffff;
}

.service-card p {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ===========================
   STATS
=========================== */
.stats {
  background: #0f2626;
  padding: clamp(24px, 3vh, 60px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
}

.stat-icon {
  width: clamp(50px, 5vw, 72px);
  height: clamp(50px, 5vw, 72px);
  border: 2px solid #4dd9c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: clamp(22px, 2.5vw, 34px);
  height: clamp(22px, 2.5vw, 34px);
  color: #4dd9c0;
}

.stat-label {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

/* ===========================
   ABOUT
=========================== */
.about {
  background: #112828;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
  width: 100%;
  height: 100%;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  padding: 20px 0;
  box-sizing: border-box;
}

.about-image img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 16px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 400;
  margin-bottom: clamp(16px, 2vw, 28px);
  color: #ffffff;
  line-height: 1.25;
}

.about-content p {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

/* ===========================
   BOOKING
=========================== */
.booking {
  background: #0f2626 url('y_street_ai_theme.webp') center center / cover no-repeat;
  position: relative;
  padding: clamp(20px, 2.5vh, 48px) 0;
  text-align: center;
}

/* Dark overlay so text stays readable over the image */
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 30, 0.72);
  z-index: 0;
}

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

.booking h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 400;
  margin-bottom: clamp(12px, 1.2vw, 20px);
}

.booking > .container > p {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.booking-widget {
  max-width: clamp(480px, 65vw, 900px);
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(77, 217, 192, 0.15);
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 48px) clamp(16px, 2vw, 32px);
}

/* ===========================
   CTA
=========================== */
.cta {
  background: #0a1e1e;
  padding: clamp(20px, 2.5vh, 48px) 0;
  text-align: center;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 400;
  margin-bottom: clamp(14px, 1.5vw, 24px);
  line-height: 1.2;
}

.cta > .container > p {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  max-width: clamp(400px, 50vw, 700px);
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.btn-primary {
  background: linear-gradient(135deg, #4dd9c0, #2ab8a0);
  color: #0a1e1e;
  border: none;
  padding: clamp(10px, 1vw, 16px) clamp(22px, 2.5vw, 40px);
  border-radius: 8px;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77, 217, 192, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #4dd9c0;
  border: 1.5px solid #4dd9c0;
  padding: clamp(10px, 1vw, 16px) clamp(22px, 2.5vw, 40px);
  border-radius: 8px;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(77, 217, 192, 0.1);
  transform: translateY(-2px);
}

.cta-social p {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: clamp(14px, 1.5vw, 24px);
}

.social-icons {
  display: flex;
  gap: clamp(14px, 1.8vw, 28px);
  justify-content: center;
}

.social-icon {
  width: clamp(40px, 4vw, 56px);
  height: clamp(40px, 4vw, 56px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-icon svg {
  width: clamp(16px, 1.8vw, 24px);
  height: clamp(16px, 1.8vw, 24px);
  color: rgba(255,255,255,0.75);
}

.social-icon:hover {
  border-color: #4dd9c0;
  background: rgba(77, 217, 192, 0.1);
}

.social-icon:hover svg {
  color: #4dd9c0;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #071515;
  padding: clamp(16px, 2vh, 40px) 0 0;
}

.footer-center-wrap {
  width: 100%;
  padding: clamp(16px, 2vh, 40px) 0 0;
  display: flex;
  justify-content: center;
}

.footer-single-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(77, 217, 192, 0.2);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 44px) clamp(32px, 5vw, 80px);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  width: 100%;
  max-width: 800px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-single-card .footer-logo {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-single-card:hover {
  border-color: rgba(77, 217, 192, 0.5);
  box-shadow: 0 4px 24px rgba(77, 217, 192, 0.1);
}

.footer-tagline {
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 260px;
  text-align: center;
  margin: 0;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .footer-single-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(20px, 5vw, 32px);
  }
  .footer-nav-links {
    align-items: center;
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-tagline {
    max-width: 100%;
  }
}

.footer-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: clamp(20px, 3vw, 48px);
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-nav-card {
  flex: 0 0 220px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(77, 217, 192, 0.2);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 36px);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 24px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-nav-card:hover {
  border-color: rgba(77, 217, 192, 0.5);
  box-shadow: 0 4px 24px rgba(77, 217, 192, 0.1);
}

.footer-brand-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(77, 217, 192, 0.2);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 36px);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  justify-content: center;
}

.footer-brand-card:hover {
  border-color: rgba(77, 217, 192, 0.5);
  box-shadow: 0 4px 24px rgba(77, 217, 192, 0.1);
}

.footer-single-card .footer-logo,
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(10px, 1.2vw, 20px);
}

.footer-logo-img {
  height: clamp(26px, 2.5vw, 38px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(77, 217, 192, 0.6));
}

.footer-brand .footer-logo span {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 600;
  color: #ffffff;
}

.footer-brand p {
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
  text-align: center;
}

.footer-col h4 {
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(12px, 1.5vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.9vw, 14px);
}

.footer-col ul li a {
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #4dd9c0;
}

/* Blue Pill override */
.btn-blue-pill {
  --bg: #00001a;
  background-color: #00001a;
  box-shadow:
    inset 0 0.3rem 0.9rem rgba(80, 120, 255, 0.3),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(50, 80, 200, 0.5),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

.btn-blue-pill .wrap {
  color: rgba(140, 180, 255, 0.85);
}

.btn-blue-pill .wrap::before {
  background-color: rgba(80, 120, 255, 0.1);
}

.btn-blue-pill .wrap::after {
  box-shadow: inset 0 10px 8px -10px rgba(120, 160, 255, 0.8);
  background: linear-gradient(
    180deg,
    rgba(80, 120, 255, 0.25) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.btn-blue-pill:hover {
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(80, 120, 255, 0.4),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(50, 80, 200, 0.7),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

.btn-blue-pill:hover .wrap p {
  color: rgba(180, 210, 255, 0.95);
}

.footer-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: #4dd9c0;
}

.footer-bottom {
  padding: clamp(14px, 1.5vw, 24px) 0;
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  color: rgba(255,255,255,0.35);
}

/* ===========================
   TOAST
=========================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #4dd9c0;
  color: #0a1e1e;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===========================
   RESPONSIVE — DESKTOP LARGE (1440px+)
=========================== */
@media (min-width: 1440px) {
  .hero-title {
    font-size: 5.5rem;
  }
  .hero-dragon-logo {
    width: 180px;
  }
}

/* ===========================
   RESPONSIVE — DESKTOP MEDIUM (1024px–1439px)
=========================== */
@media (max-width: 1439px) and (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* ===========================
   RESPONSIVE — TABLET (768px–1023px)
=========================== */
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

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

/* ===========================
   RESPONSIVE — MOBILE (max 767px)
=========================== */
@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

  .about .container {
    align-items: flex-start;
    padding-top: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    overflow-y: auto;
    justify-content: center;
    align-content: center;
    padding: 0;
    height: auto;
  }

  .about-image {
    height: auto;
    max-height: 32vh;
    padding: 0;
  }

  .about-image img {
    max-height: 30vh;
    width: auto;
    max-width: 70%;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
    padding: 0 8px;
  }

  .about-content h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
    margin-bottom: 10px;
  }

  .about-content p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

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

  .hero-title {
    white-space: normal;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-dragon-logo {
    width: clamp(80px, 20vw, 130px);
  }
}

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}
