/* ============================================================
   HAGSTONE GROUP – Coming Soon  |  styles.css
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --black: #090c0f;
  --bg: #0d1117;
  --bg2: #111720;
  --bg3: #161e2a;
  --surface: #1a2235;
  --border: rgba(255, 255, 255, 0.07);
  --border-g: rgba(212, 168, 67, 0.25);

  --gold: #D4A843;
  --gold-light: #E8BE6A;
  --gold-dim: #B8922E;
  --gold-glow: rgba(212, 168, 67, 0.18);
  --white: #F2F5FA;
  --text: #A8B3C8;
  --text-dim: #5c6a7e;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 0 40px rgba(212, 168, 67, 0.15), 0 0 80px rgba(212, 168, 67, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

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

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

/* ---------- Custom Cursor ---------- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s linear;
  mix-blend-mode: screen;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear, width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.25s;
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.8), 0 0 24px rgba(212, 168, 67, 0.4);
}

.cursor-dot.hovered {
  width: 36px;
  height: 36px;
  background: rgba(212, 168, 67, 0.15);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
}

/* ---------- Particle Canvas ---------- */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ---------- Noise overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

/* ---------- Hero Background ---------- */
.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.1s linear;
  filter: brightness(0.25) saturate(0.6);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(9, 12, 15, 0.3) 0%, rgba(9, 12, 15, 0.6) 60%, rgba(9, 12, 15, 1) 100%),
    linear-gradient(135deg, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
}

/* ---------- Site Wrapper ---------- */
.site-wrapper {
  position: relative;
  z-index: 10;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.navbar.scrolled {
  padding: 14px 60px;
  background: rgba(9, 12, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
}

.logo-text em {
  display: block;
  font-style: normal;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  color: var(--gold) !important;
  font-weight: 600 !important;
  background: rgba(212, 168, 67, 0.08);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}

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

.nav-cta:hover {
  background: rgba(212, 168, 67, 0.16) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.2) !important;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary .btn-arrow {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
}

.btn-primary.sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
}

.hero-content {
  max-width: 760px;
  z-index: 5;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-g);
  border-radius: 100px;
  background: rgba(212, 168, 67, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.6);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(212, 168, 67, 0);
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.line-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.anim-line-1 {
  animation: lineReveal 0.9s var(--ease-out) 0.4s forwards;
}

.anim-line-2 {
  animation: lineReveal 0.9s var(--ease-out) 0.55s forwards;
}

.anim-line-3 {
  animation: lineReveal 0.9s var(--ease-out) 0.7s forwards;
}

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

.gradient-word .line-inner {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 40px;
}

.anim-fade {
  animation: fadeInUp 0.9s var(--ease-out) 0.85s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation-delay: 0.95s;
}

/* Countdown */
.countdown-section {
  animation-delay: 1.1s;
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.countdown-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  min-width: 80px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.countdown-num::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.countdown-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}

.countdown-sep {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 22px;
  opacity: 0.7;
}

/* Floating Equipment Cards */
.floating-cards {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 5;
}

.eq-card {
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: default;
}

.eq-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card), 0 0 40px rgba(212, 168, 67, 0.12);
  border-color: var(--border-g);
}

.eq-card-img {
  height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.eq-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 34, 53, 0.9) 0%, transparent 60%);
}

.eq-card-info {
  padding: 12px 16px;
}

.eq-card-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.eq-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.card-1 {
  animation: cardFloat 6s ease-in-out infinite;
}

.card-2 {
  animation: cardFloat 6s ease-in-out infinite 1.5s;
}

.card-3 {
  animation: cardFloat 6s ease-in-out infinite 3s;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: fadeInUp 1s var(--ease-out) 1.5s both;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  to {
    left: 100%;
  }
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  padding: 60px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-num em {
  font-style: normal;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 40px;
}

/* ---------- Section Utilities ---------- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.center-tag {
  display: block;
  text-align: center;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 30px;
}

.section-body.center-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ---------- About Section ---------- */
.about-section {
  padding: 120px 0;
  background: var(--bg);
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(9, 12, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-g);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
}

.img-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--bg);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.list-icon {
  width: 28px;
  height: 28px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.list-icon svg {
  width: 14px;
  height: 14px;
}

/* ---------- Services Section ---------- */
.services-section {
  padding: 120px 0;
  background: var(--bg2);
}

.services-section .section-container {
  display: block;
  max-width: 100%;
  padding: 0;
}

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

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  /* Row 1: Featured horizontal card | Rows 2+: 2 standard cards */
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}

.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  /* Ensure cards don't shrink or grow awkwardly */
  min-width: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 50px rgba(212, 168, 67, 0.1);
  border-color: var(--border-g);
}

/* Featured card: spans all columns, horizontal design */
.sc-featured {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}


.sc-img {
  position: relative;
  overflow: hidden;
}

.sc-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.sc-featured .sc-img {
  width: 50%;
  min-height: 340px;
}

.sc-featured .sc-img img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.sc-featured .sc-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-card:hover .sc-img img {
  transform: scale(1.06);
}

.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 34, 53, 0.95) 0%, transparent 60%);
}

.sc-content {
  padding: 24px;
}

.sc-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-g);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sc-icon svg {
  width: 28px;
  height: 28px;
}

.sc-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.sc-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.sc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-g);
  border-radius: 100px;
  padding: 4px 12px;
}

/* CTA card: spans full bottom row */
.sc-cta-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), rgba(26, 34, 53, 0.8));
  border-color: var(--border-g);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.sc-cta-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15), transparent 70%);
  pointer-events: none;
}

.sc-cta-content {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.sc-cta-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.sc-cta-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

/* ---------- Parallax Strip ---------- */
.parallax-strip {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-img {
  position: absolute;
  inset: -100px 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.5);
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06), rgba(9, 12, 15, 0.5));
}

.parallax-content {
  position: relative;
  text-align: center;
  padding: 0 60px;
  max-width: 900px;
}

.parallax-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.parallax-content h2 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parallax-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

/* ---------- Notify / Email Section ---------- */
.notify-section {
  padding: 120px 0;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}

.notify-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.notify-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.notify-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 48px;
}

/* Form */
.notify-form {
  display: grid;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  color: var(--text);
}

.form-group select option {
  background: var(--bg3);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.form-group label {
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: 0.3s var(--ease-smooth);
  pointer-events: none;
  display: none;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: none;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.35);
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.5);
}

.form-submit .btn-arrow {
  width: 18px;
  height: 18px;
}

/* Form success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border-g);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.6s var(--ease-out);
}

.form-success svg {
  width: 64px;
  height: 64px;
}

.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-badges span {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 340px;
}


.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.3s, transform 0.3s;
}

.footer-col a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-tagline {
  color: var(--text-dim);
  opacity: 0.6;
}

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

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

/* ---------- Interactive glow on elements ---------- */
.service-card .card-inner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 168, 67, 0.07), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover .card-inner-glow {
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .floating-cards {
    display: none;
  }

  .hero {
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .sc-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    flex-direction: column;
  }

  .sc-featured .sc-img {
    width: 100%;
    min-height: auto;
  }

  .sc-featured .sc-img img {
    position: relative;
    height: 300px;
  }

  .sc-featured .sc-content {
    width: 100%;
    padding: 24px;
  }
}

@media (max-width: 820px) {
  .navbar {
    padding: 16px 30px;
  }

  .navbar.scrolled {
    padding: 12px 30px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 30px 80px;
  }

  .scroll-indicator {
    left: 30px;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 30px;
  }

  .stat-divider {
    display: none;
  }

  .section-container {
    grid-template-columns: 1fr;
    padding: 0 30px;
    gap: 40px;
  }

  .about-visual {
    order: -1;
    height: 320px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 30px;
  }

  .sc-featured {
    grid-column: 1;
  }

  .section-header.center {
    padding: 0 30px;
  }

  .notify-container {
    padding: 0 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px 40px;
  }

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

  .footer-bottom {
    padding: 20px 30px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .parallax-content {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .countdown-num {
    font-size: 1.5rem;
    min-width: 56px;
    padding: 8px 12px;
  }

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

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

/* Hide Custom Cursor on Touch Devices */
@media (pointer: coarse),
(max-width: 820px) {
  body {
    cursor: auto;
  }

  .form-submit {
    cursor: pointer;
  }

  .cursor-glow,
  .cursor-dot {
    display: none !important;
  }
}