/* =========================================================
   Egyptian Festival 2027 - Design System & Stylesheet
   St. George & St. Joseph Coptic Orthodox Church
   ========================================================= */

:root {
  /* Rich Color Palette */
  --bg-dark: #070d17;
  --bg-surface: #0e1a2f;
  --bg-card: rgba(18, 32, 57, 0.7);
  --bg-card-hover: rgba(26, 45, 78, 0.85);
  
  --gold-primary: #d4af37;
  --gold-light: #f7e7a9;
  --gold-dark: #997819;
  --gold-glow: rgba(212, 175, 55, 0.4);

  --lapis-blue: #1e3e62;
  --lapis-light: #2c598d;
  --terracotta: #c84b31;
  --terracotta-glow: rgba(200, 75, 49, 0.3);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-gold: #f3e5ab;

  --border-subtle: rgba(212, 175, 55, 0.22);
  --border-focus: rgba(212, 175, 55, 0.65);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --font-display: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;

  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.35);
  --shadow-elevation: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --glass-blur: blur(16px);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(30, 62, 98, 0.45) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(200, 75, 49, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
  background-attachment: fixed;
}

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

/* Ambient Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  max-width: 100vw;
  overflow: hidden;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-1 {
  width: min(450px, 90vw);
  height: min(450px, 90vw);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
  top: 5%;
  left: 0;
}
.orb-2 {
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  background: radial-gradient(circle, rgba(30, 62, 98, 0.4), transparent 70%);
  top: 40%;
  right: 0;
  animation-duration: 16s;
}
.orb-3 {
  width: min(380px, 80vw);
  height: min(380px, 80vw);
  background: radial-gradient(circle, rgba(200, 75, 49, 0.2), transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-duration: 14s;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.08); }
}

/* Glassmorphic Container Utility */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevation);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  max-width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-primary-pill {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #1a1505;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.btn-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #ffffff, var(--gold-primary));
}

.btn-secondary-pill {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}
.btn-secondary-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #110e04;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}
.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 13, 23, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.9rem 1.2rem;
  width: 100%;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-symbol {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(30, 62, 98, 0.6));
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.church-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.church-sub {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Main Container */
.main-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
  padding-top: 0.5rem;
  width: 100%;
}

.status-badge-wrapper {
  animation: fadeInDown 0.8s ease-out;
  max-width: 100%;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 100%;
  text-align: center;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-light);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--gold-light); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-header {
  max-width: 860px;
  width: 100%;
}

.sub-headline {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.main-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
  word-break: break-word;
}

.title-gold {
  background: linear-gradient(135deg, #ffffff 10%, #f7e7a9 40%, #d4af37 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 35px rgba(212, 175, 55, 0.3);
}

.title-year {
  color: var(--terracotta);
  display: inline-block;
  margin-left: 0.4rem;
  text-shadow: 0 0 25px rgba(200, 75, 49, 0.4);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* Countdown Card */
.countdown-container {
  width: 100%;
  max-width: 760px;
  padding: 2rem 1.5rem;
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

.countdown-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  max-width: 110px;
}

.time-box {
  background: linear-gradient(180deg, rgba(26, 45, 78, 0.9), rgba(11, 25, 44, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.5rem;
  width: 100%;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1), 0 6px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.time-val {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 15px var(--gold-glow);
  line-height: 1;
}

.time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

.time-divider {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-primary);
  opacity: 0.7;
  margin-bottom: 1.4rem;
  line-height: 1;
}

.countdown-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.countdown-footer strong {
  color: var(--gold-light);
}

/* Subscribe Card in Hero */
.hero-subscribe-card {
  width: 100%;
  max-width: 680px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.subscribe-copy h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.subscribe-copy h3 i {
  color: var(--gold-primary);
}
.subscribe-copy p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.subscribe-form .input-group {
  display: flex;
  align-items: center;
  background: rgba(8, 17, 31, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.4rem 0.35rem 1.1rem;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
}

.subscribe-form .input-group:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.input-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-right: 0.7rem;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  width: 100%;
}

.subscribe-form input::placeholder {
  color: #64748b;
}

.form-feedback {
  font-size: 0.9rem;
  margin-top: 0.2rem;
  min-height: 1.2rem;
  transition: all 0.3s ease;
}
.form-feedback.success {
  color: #4ade80;
}
.form-feedback.error {
  color: #f87171;
}

/* Visual Showcase Banner */
.showcase-section {
  width: 100%;
}

.banner-container {
  overflow: hidden;
  padding: 0.6rem;
  border-color: rgba(212, 175, 55, 0.35);
  width: 100%;
}

.banner-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-container:hover .banner-img {
  transform: scale(1.02);
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.2rem 1rem;
  background: linear-gradient(0deg, rgba(7, 13, 23, 0.88) 0%, transparent 100%);
  display: flex;
  justify-content: flex-end;
}

.banner-badge {
  background: rgba(14, 26, 47, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  max-width: 100%;
}
.banner-badge i {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Features Highlights Grid */
.features-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.section-title-wrap {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  color: #ffffff;
}

.gold-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 0.9rem auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.feature-card {
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 45px -15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(30, 62, 98, 0.5));
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.08) rotate(3deg);
  border-color: var(--gold-primary);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #ffffff;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.feature-pill {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Host Church Section */
.host-section {
  width: 100%;
}

.host-card {
  padding: 2.5rem 2rem;
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(14, 26, 47, 0.85), rgba(7, 13, 23, 0.95));
  width: 100%;
}

.host-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.host-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0.3rem 0 1.2rem;
  line-height: 1.25;
}

.host-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.info-item div {
  display: flex;
  flex-direction: column;
}

.info-item strong {
  font-size: 0.86rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item span {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.host-badge-side {
  display: flex;
  justify-content: center;
  width: 100%;
}

.coptic-crest-card {
  width: 100%;
  max-width: 360px;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(180deg, rgba(30, 62, 98, 0.45), rgba(11, 25, 44, 0.6));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.08);
}

.cross-icon-glow {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), rgba(7, 13, 23, 0.8));
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold-light);
  box-shadow: 0 0 25px var(--gold-glow);
  margin-bottom: 0.5rem;
}

.coptic-crest-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #ffffff;
}

.arabic-text {
  font-size: 1.35rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 1px;
}

.crest-caption {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

.church-quote-border {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  width: 100%;
  max-width: 540px;
  padding: 2rem 1.6rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-focus);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px var(--gold-glow);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: #ffffff;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 0.8rem;
}

.form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-col label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-col input,
.form-col select,
.form-col textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: rgba(7, 13, 23, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-col input:focus,
.form-col select:focus,
.form-col textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.modal-submit-btn {
  margin-top: 0.5rem;
  width: 100%;
}

/* Toast Notification */
.toast-card {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #0f223d;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.3);
  z-index: 1100;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: calc(100vw - 3rem);
}

.toast-card.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.3rem;
  color: #4ade80;
  flex-shrink: 0;
}

.toast-body {
  display: flex;
  flex-direction: column;
}

.toast-body strong {
  font-size: 0.92rem;
  color: #ffffff;
}

.toast-body span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Footer */
.site-footer {
  background: rgba(5, 9, 17, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.5rem 1.2rem 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-cross {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold-primary);
  color: #0b192c;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

/* Responsive Media Queries */
@media (max-width: 900px) {
  .host-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.8rem 1rem;
  }
  .nav-container {
    flex-direction: column;
    gap: 0.9rem;
    text-align: center;
  }
  .brand-logo {
    justify-content: center;
  }
  .nav-actions {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }
  .nav-actions .btn {
    font-size: 0.82rem;
    padding: 0.55rem 0.95rem;
  }

  .main-content {
    padding: 1.5rem 1rem 3rem;
    gap: 3rem;
  }

  .main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .countdown-container {
    padding: 1.4rem 0.8rem;
  }
  .countdown-grid {
    gap: 0.35rem;
  }
  .countdown-item {
    max-width: 75px;
    gap: 0.3rem;
  }
  .time-box {
    padding: 0.6rem 0.2rem;
    min-width: 0;
    border-radius: var(--radius-sm);
  }
  .time-val {
    font-size: 1.5rem;
  }
  .time-label {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }
  .time-divider {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .hero-subscribe-card {
    padding: 1.4rem 1rem;
  }
  .subscribe-form .input-group {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .subscribe-form .input-group .input-icon {
    display: none;
  }
  .subscribe-form input {
    text-align: center;
    padding: 0.3rem 0;
  }
  .subscribe-form .input-group .btn {
    width: 100%;
  }

  .banner-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .feature-card {
    padding: 1.6rem 1.2rem;
  }

  .host-card {
    padding: 1.8rem 1.2rem;
  }
  .host-info h2 {
    font-size: 1.45rem;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .footer-brand {
    flex-direction: column;
  }
  .footer-socials {
    justify-content: center;
  }

  .toast-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100vw - 2rem);
  }
}

