/* ============================================
   SEETTECH - Main Stylesheet
   Premium Minimalist White Aesthetic (21st.dev / Shadcn inspired)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

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

:root {
  /* Dark Theme Support */
  --dark-theme-active: 0;
  /* Light Theme Colors (Inspired by Zinc/Shadcn) */
  --bg-primary: #ffffff;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --border: rgba(0, 0, 0, 0.08);
  --border-bright: rgba(0, 0, 0, 0.15);
  --text-primary: #09090b;
  /* Zinc 950 */
  --text-secondary: #52525b;
  /* Zinc 600 */
  --text-muted: #71717a;
  /* Zinc 500 */

  /* Accents */
  --accent: #18181b;
  /* Almost black for primary buttons */
  --accent-hover: #27272a;
  --accent-glow: rgba(0, 0, 0, 0.15);
  --accent2: #2563eb;
  /* Elegant Blue */
  --accent2-glow: rgba(37, 99, 235, 0.20);
  --danger: #ef4444;
  --success: #10b981;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Inter', sans-serif;
  /* Consistent clean look */
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-h: 72px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg-primary: #09090b;
  --bg-secondary: #020617;
  --bg-card: rgba(24, 24, 27, 0.4);
  --bg-card-hover: rgba(39, 39, 42, 0.6);
  --border: rgba(255, 255, 255, 0.1);
  --border-bright: rgba(255, 255, 255, 0.2);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #ffffff;
  --accent-hover: #e2e8f0;
  --accent-glow: rgba(255, 255, 255, 0.1);
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
}

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

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

ul,
ol {
  list-style: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: #d4d4d8;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1aa;
}

/* ============================================
      NAVIGATION
      ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--accent2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  opacity: 0.7;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* CTA button */
.nav-cta {
  padding: 10px 24px;
  border-radius: 999px;
  /* Pill shape for 21st.dev aesthetic */
  background: var(--accent2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

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

.nav-mobile .nav-link {
  font-size: 1.1rem;
}

@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ============================================
      HERO SECTION (Shape Landing Hero White Match)
      ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
  padding: var(--nav-h) 2rem 4rem;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  /* Soft beautiful light gradient blur effect */
  background:
    radial-gradient(circle at 15% 50%, rgba(240, 244, 255, 0.8), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(255, 240, 245, 0.8), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(240, 255, 250, 0.6), transparent 40%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* 21st.dev style subtle dot grid instead of lines */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, transparent 100%);
  z-index: 1;
  opacity: 0.6;
}

/* Floating Shapes - Light Version */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.elegant-shape {
  position: absolute;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.03);
  animation: float-shape-light 12s ease-in-out infinite;
}

.elegant-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8), transparent 70%);
}

.hero-shape-1 {
  width: 600px;
  height: 140px;
  left: -5%;
  top: 20%;
  background: linear-gradient(90deg, rgba(238, 242, 255, 0.8), transparent);
  transform: rotate(12deg);
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 500px;
  height: 120px;
  right: 0%;
  top: 75%;
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.8), transparent);
  transform: rotate(-15deg);
  animation-delay: -3s;
}

.hero-shape-3 {
  width: 300px;
  height: 80px;
  left: 10%;
  bottom: 10%;
  background: linear-gradient(90deg, rgba(245, 243, 255, 0.8), transparent);
  transform: rotate(-8deg);
  animation-delay: -6s;
}

.hero-shape-4 {
  width: 200px;
  height: 60px;
  right: 20%;
  top: 15%;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.8), transparent);
  transform: rotate(20deg);
  animation-delay: -9s;
}

@keyframes float-shape-light {

  0%,
  100% {
    transform-origin: center;
    translate: 0 0;
  }

  50% {
    translate: 0 15px;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fade-up 1s ease 0.3s both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-title {
  animation: fade-up 1s ease 0.5s both;
  margin-bottom: 1.5rem;
}

.hero-title-line1 {
  display: block;
  color: var(--text-primary);
}

.hero-title-line2 {
  display: block;
  /* Beautiful modern light theme gradient for text */
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fade-up 1s ease 0.7s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 1s ease 0.9s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fade-up 1.2s ease 1.2s both;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border-bright), transparent);
  animation: scroll-line 1.8s ease infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
      BUTTONS (Pill shapes, clean borders)
      ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  outline: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--text-primary);
  border-color: var(--border-bright);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
      SECTIONS COMMON
      ============================================ */
.section {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.section-title {
  color: var(--text-primary);
}

.section-desc {
  margin-top: 1.25rem;
  max-width: 600px;
  font-size: 1.15rem;
}

/* Full-width section wrapper */
.section-full {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 3rem);
}

/* ============================================
      CARDS & GLASSMORPHISM
      ============================================ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  /* Soft elegant shadow */
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* ============================================
      STATS ROW
      ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-item {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  transition: background var(--transition);
}

.stat-item:hover {
  background: var(--bg-secondary);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================
      BENTO GRID (Apple/21st.dev style)
      ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 1.5rem;
}

.bento-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
  box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.03);
}

.bento-item:hover {
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

/* Bento spans */
.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-12 {
  grid-column: span 12;
}

.row-span-2 {
  grid-row: span 2;
}

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

  .col-span-4,
  .col-span-5,
  .col-span-6,
  .col-span-7,
  .col-span-8,
  .col-span-12 {
    grid-column: span 1;
  }

  .row-span-2 {
    grid-row: span 1;
  }
}

.service-icon-large {
  width: 64px;
  height: 64px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.service-icon-large svg {
  width: 30px;
  height: 30px;
}

.bento-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.5;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* ============================================
      PROCESS STEPS
      ============================================ */
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  counter-reset: step;
}

.step-item {
  counter-increment: step;
  position: relative;
}

.step-item::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* ============================================
      CONTACT FORM
      ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
  background: #fff;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--text-primary);
}

.form-textarea {
  min-height: 140px;
}

/* Contact Info overrides */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.map-frame {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.05);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0) contrast(1) hue-rotate(0deg);
  /* Modern light map */
}

@media (max-width: 900px) {
  #contact-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}

/* ============================================
      FOOTER
      ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem) 2rem;
  background: #fff;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-link {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

/* ============================================
      PAGE HERO (inner pages)
      ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 6rem) 2rem 5rem;
  text-align: center;
  position: relative;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-subtitle {
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ============================================
      UTILITIES & EXTRAS
      ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.marquee-wrapper {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-bright);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Highlight lines */
.highlight-line {
  display: inline;
  background: linear-gradient(120deg, rgba(219, 234, 254, 0.8) 0%, rgba(219, 234, 254, 0) 100%);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: 0 88%;
}

/* ============================================
      404 PAGE
      ============================================ */
.err-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 2rem 4rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.err-code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 25vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.err-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.err-label {
  font-weight: 600;
  color: var(--accent2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}