/* ==========================================================================
   DS INFRA - Premium Styling Design System
   Black & Gold luxury corporate theme
   ========================================================================== */

:root {
  --bg-darker: #040507;
  --bg-base: #06070a;
  --bg-lighter: #0d0f15;
  --text-primary: #f0f2f7;
  --text-secondary: #9ea4b4;
  
  /* Tailored HSL Gold Palette */
  --gold-primary: #d7b46a;    /* HSL 41, 56%, 63% - Standard premium gold */
  --gold-light: #f4d18a;      /* HSL 40, 84%, 75% - Glowing/highlights */
  --gold-dark: #b98a3f;       /* HSL 37, 49%, 49% - Rich dark gold */
  --gold-deep: #8a6421;       /* HSL 38, 61%, 34% - Shadow gold */
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(13, 15, 24, 0.45);
  --glass-bg-hover: rgba(20, 24, 38, 0.65);
  --glass-border: rgba(215, 180, 106, 0.22);
  --glass-border-hover: rgba(244, 209, 138, 0.45);
  --glass-glow: 0 0 25px rgba(215, 180, 106, 0.15);
  --glass-glow-hover: 0 0 40px rgba(244, 209, 138, 0.28);
  
  /* Layout & Utility */
  --shadow-dark: 0 25px 65px rgba(0, 0, 0, 0.65);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --max-width: 1200px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Poppins', 'Montserrat', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-darker);
  background-image: 
    radial-gradient(1500px 700px at 50% -10%, rgba(215, 180, 106, 0.12), transparent 70%),
    radial-gradient(1000px 500px at 10% 30%, rgba(138, 100, 33, 0.06), transparent 60%),
    radial-gradient(1000px 500px at 90% 70%, rgba(215, 180, 106, 0.05), transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
  border-radius: 99px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

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

/* Premium Fullscreen Loader */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s ease;
}

.loader__wrap {
  width: min(320px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.loader__logo {
  width: 90px;
  height: 90px;
  animation: logoPulse 2s ease-in-out infinite alternate;
}

.loader__logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(215, 180, 106, 0.35));
}

.loader__track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.loader__bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-primary));
  box-shadow: 0 0 10px var(--gold-primary);
  transition: width 0.15s ease-out;
}

.loader__status {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loader__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
}

.loader__pct {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@keyframes logoPulse {
  0% { transform: scale(0.96); filter: drop-shadow(0 0 8px rgba(215,180,106,0.2)); }
  100% { transform: scale(1.04); filter: drop-shadow(0 0 25px rgba(244,209,138,0.55)); }
}

/* Background Canvas & Lighting */
.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.light-streaks {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: 
    radial-gradient(800px 300px at 15% 20%, rgba(215, 180, 106, 0.08), transparent 70%),
    radial-gradient(1000px 400px at 80% 80%, rgba(244, 209, 138, 0.06), transparent 75%);
  mix-blend-mode: screen;
}

/* Top Sticky Header */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(4, 5, 7, 0.65);
  border-bottom: 1px solid rgba(215, 180, 106, 0.1);
  transition: var(--transition-smooth);
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand__logo-wrap {
  width: 42px;
  height: 42px;
  transition: var(--transition-smooth);
}

.brand__logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(215, 180, 106, 0.25));
}

.brand:hover .brand__logo-wrap {
  transform: rotate(10deg) scale(1.08);
}

.brand__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid transparent;
}

.nav__link:hover {
  color: var(--gold-light);
  background: rgba(215, 180, 106, 0.06);
  border-color: rgba(215, 180, 106, 0.2);
}

.nav__link--cta {
  background: linear-gradient(135deg, rgba(215,180,106,0.15), rgba(244,209,138,0.02));
  border-color: var(--glass-border);
  color: var(--gold-primary);
  box-shadow: var(--glass-glow);
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, rgba(215,180,106,0.25), rgba(244,209,138,0.06));
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(215, 180, 106, 0.2);
}

/* Page Overlay and Wrapper */
.page {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section & Ken Burns Background Slideshow */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(6, 7, 10, 0.2) 0%, rgba(4, 5, 7, 0.88) 85%),
    linear-gradient(180deg, rgba(4, 5, 7, 0.4) 0%, rgba(4, 5, 7, 0.95) 100%);
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  animation: kenBurnsFade 28s linear infinite;
}

/* Slideshow timings */
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 7s; }
.hero__slide:nth-child(3) { animation-delay: 14s; }
.hero__slide:nth-child(4) { animation-delay: 21s; }

@keyframes kenBurnsFade {
  0% { opacity: 0; transform: scale(1.04); }
  6% { opacity: 0.45; }
  25% { opacity: 0.45; }
  31% { opacity: 0; transform: scale(1.16); }
  100% { opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-wrap {
  width: 100%;
  max-width: 580px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.logo-img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(215, 180, 106, 0.3));
}

.logoFallback {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  background: rgba(6, 7, 10, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-glow), inset 0 0 15px rgba(215, 180, 106, 0.05);
  transition: var(--transition-smooth);
}

.logoFallback:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 35px rgba(215, 180, 106, 0.22);
}

.logoFallback__svg {
  width: 58px;
  height: 58px;
}

.logoFallback__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.logoFallback__company {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: 0.15em;
  line-height: 1.1;
  color: var(--text-primary);
}

.logoFallback__tagline {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  margin-top: 4px;
}

.hero__tag-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 99px;
  background: rgba(215, 180, 106, 0.08);
  border: 1px solid rgba(215, 180, 106, 0.25);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-light);
}

.hero__title {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 15%, var(--gold-light) 50%, var(--gold-primary) 85%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7));
}

.hero__subtitle {
  font-size: clamp(1rem, 2.3vw, 1.35rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 820px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Premium Buttons Styling */
.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn__text {
  position: relative;
  z-index: 2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-darker);
  border-color: var(--gold-light);
  box-shadow: 0 10px 30px rgba(215, 180, 106, 0.25);
}

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

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(215, 180, 106, 0.45);
}

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

.btn--glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-color: var(--glass-border);
  color: var(--gold-light);
  box-shadow: var(--glass-glow);
}

.btn--glass:hover {
  background: rgba(215, 180, 106, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(215, 180, 106, 0.2);
}

.btn--full {
  width: 100%;
}

/* Glassmorphism Countdown Timer */
.countdown {
  width: 100%;
  max-width: 900px;
}

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

.time-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  box-shadow: var(--glass-glow), 0 20px 45px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.time-card__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.time-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at 50% 0%, rgba(244, 209, 138, 0.08), transparent 60%);
  pointer-events: none;
}

.time-card__value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, #ffffff 40%, var(--gold-light) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.time-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-top: 8px;
}

.time-card:hover, .time-card:focus-visible {
  transform: translateY(-5px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-glow-hover), 0 25px 50px rgba(0,0,0,0.5);
  outline: none;
}

.time-card:hover .time-card__glow, .time-card:focus-visible .time-card__glow {
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  opacity: 1;
}

.countdown__note {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.gold {
  color: var(--gold-primary);
}

.text-pulse {
  animation: pulseGold 2s infinite alternate;
}

@keyframes pulseGold {
  0% { text-shadow: 0 0 4px rgba(215, 180, 106, 0.3); color: var(--gold-primary); }
  100% { text-shadow: 0 0 15px rgba(244, 209, 138, 0.85); color: var(--gold-light); }
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-hint__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-hint__dot {
  width: 6px;
  height: 18px;
  border-radius: 99px;
  border: 1px solid var(--text-secondary);
  position: relative;
}

.scroll-hint__dot::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  width: 2px;
  height: 4px;
  background-color: var(--gold-primary);
  border-radius: 99px;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { top: 3px; opacity: 1; }
  100% { top: 11px; opacity: 0; }
}

.scroll-hint__text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
}

.scroll-hint__link:hover .scroll-hint__text {
  color: var(--gold-primary);
}

.scroll-hint__link:hover .scroll-hint__dot {
  border-color: var(--gold-primary);
}

/* Section Common Styles */
.section {
  padding: 100px 0;
  position: relative;
}

.section__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section__separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 0 auto 20px;
  border-radius: 99px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Premium Features/Highlights Grid */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(350px circle at 50% 0%, rgba(215, 180, 106, 0.08), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.feature__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(215, 180, 106, 0.08);
  border: 1px solid rgba(215, 180, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.feature__icon {
  width: 28px;
  height: 28px;
}

.feature__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.feature__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Feature Hover / Focus */
.feature:hover, .feature:focus-visible {
  transform: translateY(-8px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-glow-hover), 0 25px 50px rgba(0, 0, 0, 0.5);
  outline: none;
}

.feature:hover::after, .feature:focus-visible::after {
  opacity: 1;
}

.feature:hover .feature__icon-wrap, .feature:focus-visible .feature__icon-wrap {
  background: var(--gold-primary);
  color: var(--bg-darker);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 15px rgba(215, 180, 106, 0.4);
}

/* Services Banner Section */
.section--services {
  padding: 40px 0 80px;
}

.services-banner {
  background: linear-gradient(135deg, rgba(13, 15, 21, 0.7), rgba(4, 5, 7, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  box-shadow: var(--shadow-dark), var(--glass-glow);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 1.25;
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.services-list li {
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.services-list li .gold {
  font-size: 1.5rem;
  line-height: 1;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.contact-card--glass {
  background: linear-gradient(180deg, rgba(13, 15, 24, 0.65) 0%, rgba(6, 7, 10, 0.4) 100%);
  border-color: rgba(215, 180, 106, 0.18);
}

.contact-card__badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-card__badge--gold {
  color: var(--gold-primary);
  border-color: rgba(215, 180, 106, 0.25);
  background: rgba(215, 180, 106, 0.05);
}

.contact-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.contact-card__tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-top: 6px;
}

.contact-card__separator {
  width: 45px;
  height: 2px;
  background-color: var(--gold-primary);
  margin: 18px 0 25px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: auto;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-item__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-item__value--link {
  display: inline-block;
  width: fit-content;
  position: relative;
}

.contact-item__value--link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

.contact-item__value--link:hover {
  color: var(--gold-light);
}

.contact-item__value--link:hover::after {
  width: 100%;
}

.contact-card__footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* Contact Card Focus */
.contact-card:focus-visible {
  border-color: var(--gold-primary);
  box-shadow: var(--glass-glow), 0 20px 45px rgba(0,0,0,0.5);
  outline: none;
}

/* Newsletter Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.field__input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(4, 5, 7, 0.4);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.field__input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.field__input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(215, 180, 106, 0.15);
  background: rgba(4, 5, 7, 0.6);
}

.form__hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}

.form-status {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 20px;
}

.form-status.success {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

.form-status.error {
  color: #f87171;
  text-shadow: 0 0 10px rgba(248, 113, 113, 0.2);
}

/* Call to Action Panel */
.cta {
  padding-bottom: 40px;
}

.cta__panel {
  background: linear-gradient(185deg, rgba(13, 15, 24, 0.6) 0%, rgba(4, 5, 7, 0.85) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-dark), var(--glass-glow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  max-width: 800px;
}

.cta__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 840px;
  line-height: 1.85;
}

.cta__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}

/* Premium Footer Styling */
.footer {
  background: #020304;
  border-top: 1px solid var(--gold-deep);
  padding: 50px 0 60px;
  position: relative;
  z-index: 10;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer__brand-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.footer__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.footer__copyright-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

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

.footer__developer {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.footer__link {
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: var(--transition-fast);
}

.footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1.2px;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

.footer__link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(244, 209, 138, 0.45);
}

.footer__link:hover::after {
  width: 100%;
}

.footer__seo-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__link-small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.footer__link-small:hover {
  color: var(--gold-primary);
}

/* Animations for Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Breakpoints */

/* ==========================================================================
   Responsive Navigation & Hamburger Toggle
   ========================================================================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.menu-toggle__line {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 99px;
  transition: var(--transition-smooth);
}

/* Transform to X */
.menu-toggle--active .menu-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--gold-light);
}

.menu-toggle--active .menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle--active .menu-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--gold-light);
}

/* Mobile Drawer Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 7, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-menu__content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(340px, 85vw);
  background: rgba(6, 7, 10, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--glass-border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-menu--open .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.menu-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  transition: var(--transition-fast);
}

.menu-close:hover {
  color: var(--gold-light);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav__link:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.mobile-nav__link--cta {
  color: var(--gold-primary);
  border-bottom: none;
}

.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.mobile-menu__tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.mobile-menu__contact {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-menu__contact:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Desktop / Large Screens */
@media (max-width: 1199px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-banner {
    padding: 40px;
    gap: 30px;
  }
}

/* Tablet Screens */
@media (max-width: 991px) {
  .topbar {
    padding: 0 24px;
    height: 70px;
  }
  .nav {
    display: none; /* Hide normal navigation on tablet/mobile */
  }
  .menu-toggle {
    display: flex; /* Show hamburger toggle */
  }
  .hero {
    padding-top: 90px;
  }
  .services-banner {
    grid-template-columns: 1fr;
    padding: 36px 30px;
    text-align: center;
  }
  .services-list {
    justify-items: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .footer__copyright-wrap {
    order: 2;
  }
  .footer__brand-info {
    order: 1;
  }
  .footer__seo-links {
    order: 3;
  }
}

/* Mobile Screens */
@media (max-width: 680px) {
  .topbar {
    padding: 0 16px;
  }
  .brand__name {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }
  .brand__logo-wrap {
    width: 32px;
    height: 32px;
  }
  .hero__title {
    margin-bottom: 12px;
    line-height: 1.0;
  }
  .hero__actions {
    gap: 10px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 100%;
  }
  .countdown__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .time-card {
    padding: 14px 6px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .feature {
    padding: 24px 20px;
  }
  .contact-card {
    padding: 28px 20px;
  }
  .field__input {
    padding: 11px 12px;
  }
  .services-banner {
    padding: 28px 20px;
  }
  .logoFallback {
    padding: 12px 20px;
    gap: 12px;
  }
  .logoFallback__svg {
    width: 44px;
    height: 44px;
  }
  .logoFallback__company {
    font-size: 1.35rem;
  }
  .logoFallback__tagline {
    font-size: 0.52rem;
  }
}

/* Ultra Small Viewports */
@media (max-width: 380px) {
  .time-card__value {
    font-size: 1.8rem;
  }
  .time-card__label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
  .hero__title {
    font-size: 2.2rem;
  }
}

/* Accessibility for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    animation: none !important;
    opacity: 0.45 !important;
    transform: none !important;
  }
  .loader__logo {
    animation: none !important;
  }
  .scroll-hint__dot::before {
    animation: none !important;
  }
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .btn, .feature, .time-card, .contact-card, .mobile-menu__content {
    transition: none !important;
    transform: none !important;
  }
}
