/* Alston Medicare - Landing Page Styles */

:root {
  --primary: #0a1628;
  --primary-dark: #060e1a;
  --accent: #1a73e8;
  --accent-hover: #1557b0;
  --gold: #f4c542;
  --text-light: #e0e0e0;
  --white: #ffffff;
  --gradient-start: #0a1628;
  --gradient-end: #1a2a4a;
}

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

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--gradient-start) 0%,
    var(--gradient-end) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(26, 115, 232, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(244, 197, 66, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-hero-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
  color: var(--white);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

/* Video Embed */
.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* ========== FORM SECTION ========== */
.form-section {
  background: linear-gradient(135deg, #f8fafd 0%, #eef2f7 100%);
  padding: 80px 0;
}

.form-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-section .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-card .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-card .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-card .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-card .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
}

.form-card textarea.form-control {
  min-height: 100px;
}

.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
  color: var(--white);
}

.btn-submit:disabled {
  background: #ccc;
  transform: none;
  box-shadow: none;
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding: 80px 0;
  background: var(--white);
}

.features-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 50px;
}

.feature-card {
  background: #f8fafd;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.feature-icon.blue {
  background: rgba(26, 115, 232, 0.1);
  color: var(--accent);
}
.feature-icon.green {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.feature-icon.orange {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}
.feature-icon.purple {
  background: rgba(156, 39, 176, 0.1);
  color: #9c27b0;
}

.feature-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ========== BOTTOM CTA ========== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--gradient-start) 0%,
    var(--gradient-end) 100%
  );
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

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

/* ========== SUCCESS TOAST ========== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  justify-content: center;
  align-items: center;
}

.success-overlay.show {
  display: flex;
}

.success-box {
  background: white;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  animation: popIn 0.4s ease-out;
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-box .checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d4edda;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: #28a745;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-section {
    padding: 60px 0;
  }
  .form-card {
    padding: 24px;
  }
  .form-section,
  .features-section,
  .cta-section {
    padding: 50px 0;
  }
  .features-section .section-title,
  .form-section .section-title,
  .cta-section h2 {
    font-size: 1.8rem;
  }
}
