/* ---------- Premium Design System & Variables ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #050508;
  --bg-rgb: 5, 5, 8;
  --fg: #f3f4f6;
  --muted: rgba(243, 244, 246, 0.6);
  --muted-2: rgba(243, 244, 246, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  
  /* Cyber Teal & Purple Accents */
  --teal: #00F5D4;
  --teal-rgb: 0, 245, 212;
  --teal-bright: #00ffd5;
  --purple: #7B2CBF;
  --purple-rgb: 123, 44, 191;
  --indigo: #4CC9F0;
  
  /* Glassmorphism Surface */
  --surface-glass: rgba(255, 255, 255, 0.02);
  --surface-glass-hover: rgba(255, 255, 255, 0.04);
  
  /* Transitions */
  --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s var(--ease-out-expo);
  --transition-card: 0.4s var(--ease-out-expo);
}

/* ---------- Global Reset & Scroll Styling ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  /* Offset anchor scroll by navbar height (~72px) so the section top lines up just below it */
  scroll-padding-top: 72px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--bg);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* ---------- Layout & Grid Constraints ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

#pageWrapper {
  width: 100%;
  position: relative;
  will-change: transform;
}

section {
  padding: 40px 24px 32px;
  position: relative;
  /* Push section top down so it doesn't hide under fixed navbar when scrolled to */
  scroll-margin-top: 72px;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  section {
    padding: 56px 24px 48px;
  }
}

/* Hero overrides: use its own padding and height */
section.hero {
  padding: 0;
  min-height: 100vh;
  scroll-margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner container full-width helper */
.section-flex-wrap {
  width: 100%;
}

.text-balance {
  text-wrap: balance;
}

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

/* ---------- Typography Customizations ---------- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accent-text {
  background: linear-gradient(135deg, var(--teal), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ---------- Background Ambient Glows ---------- */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
  transition: transform 1s ease;
}

/* ---------- Header & Navbar Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out-expo), 
              backdrop-filter 0.4s var(--ease-out-expo), 
              border-color 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
}

.logo-dot {
  color: var(--teal);
  font-size: 30px;
  line-height: 1;
  margin-left: 1px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0, 245, 212, 0.25));
  transition: transform 0.4s var(--ease-out-expo);
}

.logo:hover .logo-icon {
  transform: rotate(60deg) scale(1.08);
}

.nav-links {
  display: none;
  gap: 40px;
  position: relative; /* anchor for the sliding indicator */
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease-out-expo);
  /* No ::after underline for individual links — handled by indicator */
}

/* Hover tint only */
.nav-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Active link text is fully white */
.nav-links a.active {
  color: #fff;
}

.nav-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 80px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(255,255,255,0.9), var(--indigo));
  transform: translateX(0);
  transition: transform 0.4s var(--ease-out-expo), width 0.4s var(--ease-out-expo), opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 10px 2px rgba(0, 245, 212, 0.6), 0 0 24px 4px rgba(0, 245, 212, 0.2);
}

.nav-cta {
  display: none;
  background: linear-gradient(135deg, rgba(var(--teal-rgb), 0.1), rgba(var(--purple-rgb), 0.15));
  border: 1px solid var(--teal);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(0, 245, 212, 0.1);
  transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--bg);
  box-shadow: 0 4px 30px rgba(0, 245, 212, 0.4);
  transform: translateY(-2px);
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.3s;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .nav-links, .nav-cta {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  background: rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 0 solid var(--border);
  transition: max-height 0.4s var(--ease-out-expo), border-width 0.2s ease;
}

.mobile-menu.open {
  max-height: 300px;
  border-bottom-width: 1px;
}

.mobile-menu-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--muted);
}

.mobile-menu a:hover {
  color: var(--teal);
  padding-left: 8px;
}

.mobile-cta {
  background: var(--teal);
  color: var(--bg);
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 10px;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: calc(50% - 300px);
  background: radial-gradient(circle, rgba(0, 245, 212, 0.15) 0%, transparent 70%);
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: 10%;
  background: radial-gradient(circle, rgba(123, 44, 191, 0.1) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  padding-top: 80px;
}

.typewriter {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-wrap: balance;
  min-height: 2.2em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--teal);
  margin: 0 1px;
  vertical-align: middle;
  transform: translateY(2px);
  box-shadow: 0 0 8px var(--teal);
  animation: blink 0.9s step-end infinite;
  -webkit-text-fill-color: initial;
}

.typed-ghost {
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-subtext {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--teal);
  opacity: 0;
  transform: translateY(15px);
  animation: fade-up 0.8s 0.5s var(--ease-out-expo) forwards;
}

.hero-cta-wrap {
  margin-top: 48px;
  opacity: 0;
  transform: translateY(15px);
  animation: fade-up 0.8s 0.8s var(--ease-out-expo) forwards;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.scroll-indicator:hover {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.25);
  transform: translateY(-2px);
}

.drag-up-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal);
  border-top: 2px solid var(--teal);
  transform: rotate(-45deg); /* Upward pointing */
  margin-top: 4px;
  animation: drag-up-anim 1.6s infinite ease-in-out;
  display: block;
}

@keyframes drag-up-anim {
  0% {
    transform: rotate(-45deg) translate(-4px, 4px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(4px, -4px);
    opacity: 0;
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Section Header Styling ---------- */
.section-header {
  max-width: 680px;
  margin: 0 auto 28px auto;
  text-align: center;
}

/* Portfolio section header: tighter bottom gap */
#portfolio .section-header {
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium Card Glassmorphism */
.card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px;
  transition: border-color var(--transition-card), 
              background var(--transition-card), 
              box-shadow var(--transition-card), 
              transform var(--transition-card);
}

.card:hover {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 
              0 0 12px rgba(0, 245, 212, 0.06);
  transform: translateY(-4px);
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--teal-rgb), 0.15), rgba(var(--purple-rgb), 0.05));
  border: 1px solid rgba(var(--teal-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform var(--transition-card);
}

.card-icon {
  font-size: 22px;
}

.card:hover .card-icon-wrap {
  transform: scale(1.06);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Vision & Team Section ---------- */
.vision-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 1024px) {
  .vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.vision-text p {
  margin-top: 24px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

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

/* Glowing/Spinning Gradient Border Card */
.team-card {
  position: relative;
  background: #09090E;
  border-radius: 20px;
  padding: 36px 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color var(--transition-card), 
              background var(--transition-card), 
              box-shadow var(--transition-card), 
              transform var(--transition-card);
}

.team-card:hover {
  background: #0c0c14;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--angle, 0deg), var(--teal), var(--purple), var(--teal));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  animation: spin-border 6s linear infinite;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-border {
  to {
    --angle: 360deg;
  }
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 245, 212, 0.25);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
  flex-shrink: 0;
  margin-bottom: 20px;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Portfolio Grid & Cards ---------- */
.portfolio-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition-card),
              background var(--transition-card),
              box-shadow var(--transition-card),
              transform var(--transition-card);
}

.portfolio-card:hover {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
              0 0 15px rgba(0, 245, 212, 0.08);
  transform: translateY(-4px);
}

.portfolio-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proj-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 245, 212, 0.07);
  border: 1px solid rgba(0, 245, 212, 0.2);
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.12);
  flex-shrink: 0;
  margin-bottom: 4px;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s ease;
}

.portfolio-card:hover .proj-badge {
  transform: scale(1.08);
  background: rgba(0, 245, 212, 0.15);
}

.portfolio-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

.portfolio-role {
  font-size: 10px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 4px;
}

/* ---------- Stats (Inline in Portfolio) ---------- */
.stats-inline {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .stats-inline {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.stat-item {
  position: relative;
}

.stat-num {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #fff 40%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.stat-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ---------- Contact Section ---------- */
.contact {
  position: relative;
  overflow: visible;
  z-index: 1;
  /* Natural height — content stacks: title → form → footer */
  padding: 0 !important;
  min-height: auto !important;
  display: block !important;
  justify-content: unset !important;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.8;
  }
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 24px 0;
  width: 100%;
}

/* Override section-title size only inside contact */
#contact .section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 12px;
}

.contact-sub {
  margin-top: 8px;
  font-size: 16px;
  color: var(--muted);
}

/* ---------- Booking Form & Success Card ---------- */
.booking-form {
  max-width: 580px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}



.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  transition: all 0.3s var(--ease-out-expo);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 16px rgba(0, 245, 212, 0.15);
  outline: none;
}

/* Adjust colors for native date/time pickers and select dropdowns */
.form-group select option {
  background: #0d0d12;
  color: #fff;
}

/* Custom Picker Styling */
.custom-picker {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  box-sizing: border-box;
  cursor: text;
  user-select: none;
  outline: none;
  transition: all 0.3s var(--ease-out-expo);
}

.custom-picker:focus-within {
  border-color: var(--teal);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 16px rgba(0, 245, 212, 0.15);
}

.picker-seg {
  padding: 2px 6px;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  text-align: center;
}

.picker-seg:hover {
  background: rgba(255, 255, 255, 0.08);
}

.picker-seg:focus {
  background: var(--teal);
  color: var(--bg);
}

.picker-sep {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
  padding: 0 2px;
}

.picker-day-badge {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  pointer-events: none;
}


.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}


.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--indigo));
  color: var(--bg);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px -10px rgba(0, 245, 212, 0.4);
  transition: all 0.3s var(--ease-out-expo);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(0, 245, 212, 0.6);
  background: linear-gradient(135deg, var(--teal-bright), var(--indigo));
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Spinner Animation for loading state */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(13, 13, 13, 0.25);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Success Card */
.booking-success {
  max-width: 580px;
  margin: 40px auto 0;
  background: rgba(0, 245, 212, 0.01);
  border: 1px solid rgba(0, 245, 212, 0.2);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  animation: fade-in 0.5s var(--ease-out-expo) forwards;
}

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

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 245, 212, 0.08);
  border: 2px solid var(--teal);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.booking-success h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.success-msg {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.success-msg strong {
  color: #fff;
}

.reset-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hidden {
  display: none !important;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  background: #030305;
  padding: 60px 24px 40px 24px;
  position: relative;
  z-index: 10;
}

/* Footer embedded inside Contact section */
footer.contact-footer {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 12px 24px 4px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.socials {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s var(--ease-out-expo);
}

.socials a:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(0, 245, 212, 0.05);
  transform: translateY(-3px);
}

/* WhatsApp icon glows green on hover */
#social-whatsapp:hover {
  color: #25D366;
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.08);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.25);
}

.copyright {
  margin-top: 48px;
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

/* Inside contact section, copyright is right below the row — no big margin */
footer.contact-footer .copyright {
  margin-top: 6px;
  padding-bottom: 4px;
}

/* Force footer-inner to row on all sizes inside contact-footer */
footer.contact-footer .footer-inner {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

footer.contact-footer .footer-links {
  gap: 20px;
  font-size: 12px;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), 
              transform 0.8s var(--ease-out-expo);
}

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