/* ==========================================================================
   LOGIC SYSTEMS — MODERN COMING SOON PAGE STYLESHEET
   Brand: logic-sys.com | Cyan & Deep Obsidian Modern Agency Theme
   ========================================================================== */

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Brand Palette derived from logic-logo.png */
  --color-brand-cyan: #1ea1e3;
  --color-brand-glow: #00d2ff;
  --color-brand-blue: #0284c7;
  --color-brand-darkblue: #0369a1;

  /* Dark Theme Surfaces */
  --bg-base: #060912;
  --bg-surface: rgba(14, 23, 42, 0.65);
  --bg-surface-hover: rgba(22, 35, 62, 0.85);
  --bg-card: rgba(15, 23, 42, 0.55);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-brand: rgba(30, 161, 227, 0.35);
  --border-brand-glow: rgba(0, 210, 255, 0.6);

  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-white: #ffffff;

  /* Elevation & Effects */
  --glass-blur: blur(20px);
  --glass-blur-sm: blur(12px);
  --shadow-glow: 0 0 35px rgba(30, 161, 227, 0.25);
  --shadow-glow-sm: 0 0 20px rgba(30, 161, 227, 0.18);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

  /* Layout */
  --max-width: 1120px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-secondary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(30, 161, 227, 0.15), transparent 70%),
    radial-gradient(circle at 100% 100%, rgba(2, 132, 199, 0.08), transparent 50%);
  background-attachment: fixed;
}

/* Canvas for Logic Interactive Network */
#logic-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Glowing Background Ambient Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: orbFloat 18s ease-in-out infinite alternate;
}

.glow-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(30, 161, 227, 0.35) 0%, rgba(30, 161, 227, 0) 70%);
  top: -100px;
  right: -50px;
}

.glow-orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, rgba(2, 132, 199, 0) 70%);
  bottom: 5%;
  left: -150px;
  animation-duration: 22s;
  animation-delay: -5s;
}

.glow-orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(0, 210, 255, 0) 70%);
  top: 40%;
  right: 15%;
  animation-duration: 15s;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 50px) scale(1.08); }
  100% { transform: translate(-30px, 20px) scale(0.95); }
}

/* Page Shell */
.page-wrapper {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  margin-bottom: 3.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(30, 161, 227, 0.3));
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  transform: scale(1.03);
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-white);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #051a0e;
  border-color: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.icon-whatsapp {
  width: 17px;
  height: 17px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-ghost .icon {
  width: 16px;
  height: 16px;
  color: var(--color-brand-cyan);
}

.btn-ghost:hover {
  background: rgba(30, 161, 227, 0.15);
  border-color: var(--color-brand-cyan);
  box-shadow: 0 0 15px rgba(30, 161, 227, 0.25);
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-brand-cyan), var(--color-brand-blue));
  color: var(--text-white);
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(30, 161, 227, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0, 210, 255, 0.5);
  transform: translateY(-2px);
}

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

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Main Content Hero
   ========================================================================== */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Live Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--border-brand);
  padding: 0.45rem 0.9rem 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  box-shadow: 0 2px 14px rgba(30, 161, 227, 0.15);
  animation: fadeInDown 0.8s ease-out;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #10b981;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 10px #10b981;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1.5px solid #10b981;
  opacity: 0.8;
  animation: pulsePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulsePing {
  0% { transform: scale(0.9); opacity: 0.9; }
  80%, 100% { transform: scale(2.2); opacity: 0; }
}

.status-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

.status-pill {
  background: rgba(30, 161, 227, 0.2);
  color: var(--color-brand-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(30, 161, 227, 0.4);
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 860px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 15%, var(--color-brand-cyan) 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2.75rem;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   Countdown Section
   ========================================================================== */
.countdown-section {
  width: 100%;
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.countdown-card {
  flex: 1;
  min-width: 80px;
  background: var(--bg-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-brand-cyan), transparent);
  opacity: 0.7;
}

.countdown-card:hover {
  border-color: var(--color-brand-glow);
  box-shadow: var(--shadow-glow-sm), var(--shadow-card);
  transform: translateY(-3px);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-brand-cyan);
  font-weight: 600;
}

.countdown-separator {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand-cyan);
  opacity: 0.5;
  animation: separatorBlink 1.5s ease-in-out infinite;
}

@keyframes separatorBlink {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.15; }
}

/* ==========================================================================
   Email Notification Section
   ========================================================================== */
.notify-section {
  width: 100%;
  max-width: 540px;
  margin-bottom: 4.5rem;
}

.notify-form {
  position: relative;
  width: 100%;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.4rem 0.4rem 1.1rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.input-wrapper:focus-within {
  border-color: var(--color-brand-cyan);
  box-shadow: var(--shadow-glow-sm), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.mail-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 0.6rem;
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.input-wrapper input::placeholder {
  color: var(--text-muted);
}

.input-wrapper .btn-primary {
  padding: 0.65rem 1.35rem;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(3px);
}

.notify-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-feedback {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 20px;
  transition: var(--transition-smooth);
}

.form-feedback.success {
  color: #34d399;
}

.form-feedback.error {
  color: #f87171;
}

/* ==========================================================================
   Agency Capabilities Preview Grid
   ========================================================================== */
.services-preview {
  width: 100%;
  margin-bottom: 4.5rem;
}

.services-header {
  margin-bottom: 2rem;
}

.sub-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-brand-cyan);
  margin-bottom: 0.4rem;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  text-align: left;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(30, 161, 227, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-brand);
  background: var(--bg-surface-hover);
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(30, 161, 227, 0.15);
}

.service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(30, 161, 227, 0.12);
  border: 1px solid rgba(30, 161, 227, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-brand-cyan);
  transition: var(--transition-smooth);
}

.service-icon-box svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .service-icon-box {
  background: var(--color-brand-cyan);
  color: var(--text-white);
  box-shadow: 0 0 16px rgba(30, 161, 227, 0.5);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Direct Contact Strip
   ========================================================================== */
.contact-strip {
  width: 100%;
  margin-bottom: 3rem;
}

.contact-card-inline {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 161, 227, 0.08));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-glow-sm), var(--shadow-card);
  text-align: left;
}

.contact-prompt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brand-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-left h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 0.2rem;
}

.contact-info-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.direct-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}

.direct-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.08);
  transition: var(--transition-smooth);
}

.direct-whatsapp-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.direct-whatsapp-link:hover {
  background: #25d366;
  color: #061a0f;
  border-color: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.direct-email-link svg {
  width: 18px;
  height: 18px;
  color: var(--color-brand-cyan);
}

.direct-email-link:hover {
  background: rgba(30, 161, 227, 0.12);
  border-color: var(--color-brand-cyan);
  color: var(--text-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-left strong {
  color: var(--text-primary);
}

.footer-link {
  color: var(--color-brand-cyan);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  text-decoration: underline;
  color: var(--color-brand-glow);
}

.footer-contact-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
}

.footer-whatsapp {
  color: #25d366;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-whatsapp:hover {
  text-decoration: underline;
  color: #4ade80;
}

.footer-email {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-email:hover {
  color: var(--color-brand-cyan);
  text-decoration: underline;
}

.footer-divider {
  color: var(--border-subtle);
}

/* ==========================================================================
   Project Inquiry Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  width: 100%;
  max-width: 580px;
  background: #0d1527;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 35px rgba(30, 161, 227, 0.2);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: var(--color-brand-cyan);
}

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

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 0.25rem;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(6, 11, 23, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #0d1527;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-brand-cyan);
  box-shadow: 0 0 12px rgba(30, 161, 227, 0.3);
}

.modal-actions {
  margin-top: 0.5rem;
}

.modal-status-msg {
  font-size: 0.9rem;
  text-align: center;
  min-height: 22px;
  font-weight: 500;
}

.modal-status-msg.success {
  color: #34d399;
}

.modal-status-msg.error {
  color: #f87171;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: rgba(13, 21, 39, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-brand-cyan);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(30, 161, 227, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.toast svg {
  width: 20px;
  height: 20px;
  color: var(--color-brand-cyan);
  flex-shrink: 0;
}

@keyframes toastSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 820px) {
  .contact-card-inline {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
  }
  
  .contact-info-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .direct-email-link {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-wrapper {
    padding: 1.25rem 1rem 2rem;
  }

  .site-header {
    margin-bottom: 2.5rem;
    padding: 0.6rem 1rem;
  }

  .status-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .countdown-container {
    gap: 0.4rem;
  }

  .countdown-card {
    min-width: 65px;
    padding: 0.9rem 0.35rem;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-label {
    font-size: 0.68rem;
    letter-spacing: 1px;
  }

  .countdown-separator {
    font-size: 1.4rem;
  }

  .input-wrapper {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .input-wrapper .btn-primary {
    width: 100%;
  }

  .mail-icon {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 15px rgba(37, 211, 102, 0.3);
  z-index: 1500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 0 25px rgba(37, 211, 102, 0.45);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(13, 21, 39, 0.95);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .floating-whatsapp-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

