/* ============================================
   ROOF MRI - Global Styles
   Colors: Green #00bd70, Navy #1e2c55
   Fonts: Poppins (headings), Montserrat (body)
   ============================================ */

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

:root {
  --green: #00bd70;
  --green-dark: #00a35f;
  --green-light: #e6f9f0;
  --navy: #1e2c55;
  --navy-light: #2a3d6e;
  --navy-dark: #151f3d;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #dde1e8;
  --gray-400: #9ba3b5;
  --gray-600: #5a6377;
  --gray-800: #2d3344;
  --shadow-sm: 0 1px 3px rgba(30, 44, 85, 0.08);
  --shadow-md: 0 4px 12px rgba(30, 44, 85, 0.1);
  --shadow-lg: 0 8px 30px rgba(30, 44, 85, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-dark); }

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

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-50);
}

.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }

.section-header {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  text-decoration: none;
}

.logo svg {
  width: 36px;
  height: 36px;
}

.logo span.green { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.5rem;
  text-decoration: none;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--green); }
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--green); }

.nav-cta {
  margin-left: 0.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 189, 112, 0.15), transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 189, 112, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
}

.hero-stat-text h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.hero-stat-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* --- Features / Benefits Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* --- Steps / Process --- */
.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.step-number {
  counter-increment: step;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray-600);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--green-light);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-author-info p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Form --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 189, 112, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* --- Downloads / Resources --- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.resource-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.resource-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
}

.resource-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.resource-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.resource-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* --- Certification Cards --- */
.cert-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}

.cert-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cert-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}

.cert-card-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
}

.cert-card.featured .cert-card-header {
  background: var(--navy);
}

.cert-card.featured .cert-card-header h3,
.cert-card.featured .cert-card-header p {
  color: var(--white);
}

.cert-card.featured .cert-card-header .label {
  color: var(--green);
}

.cert-card-body {
  padding: 1.5rem 2rem 2rem;
}

.cert-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cert-card-body li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.cert-card-body li svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Page Header --- */
.page-header {
  padding: 9rem 0 4rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--green);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
  fill: var(--white);
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  list-style: none;
  padding: 1rem 1.5rem;
}

.mobile-nav li { border-bottom: 1px solid var(--gray-100); }
.mobile-nav li:last-child { border-bottom: none; }

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
}

.mobile-nav a:hover,
.mobile-nav a.active { color: var(--navy); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .cert-tiers { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .cert-tiers { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 3.5rem 0; }
  .step { grid-template-columns: 56px 1fr; gap: 1.25rem; }
  .step-number { width: 48px; height: 48px; font-size: 1.2rem; }
  .modal-body { padding: 2rem !important; }
  .modal-body h2 { font-size: 1.3rem !important; }
}

/* --- Modal System --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21, 31, 61, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; }

.modal-body {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(30, 44, 85, 0.25);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}
.modal-body.modal-wide { max-width: 800px; }

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

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gray-200); color: var(--navy); }

.modal-body h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.modal-body .modal-subtitle { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1.75rem; line-height: 1.6; }

.modal-form label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  margin-top: 1.25rem;
}
.modal-form label:first-child { margin-top: 0; }

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 189, 112, 0.1);
}
.modal-form textarea { resize: vertical; min-height: 80px; }

.modal-form .btn { margin-top: 1.5rem; width: 100%; text-align: center; display: block; }

.modal-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.modal-option {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
  background: var(--white);
}
.modal-option:hover { border-color: var(--green); color: var(--navy); }
.modal-option.selected {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
}

/* Calendly modal */
.calendly-container { min-height: 650px; }
.calendly-container iframe { border: none; width: 100%; height: 650px; border-radius: var(--radius); }

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.package-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.package-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
}
.package-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.package-card .package-for { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 1.5rem; }
.package-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}
.package-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}
.package-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Nashville Events */
.nashville-events {
  background: linear-gradient(135deg, rgba(0,189,112,0.04), rgba(0,189,112,0.08));
  border: 1px solid rgba(0,189,112,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.nashville-events h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.nashville-events p { color: var(--gray-600); line-height: 1.8; }
.nashville-detail { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; color: var(--gray-600); font-size: 0.95rem; }
.nashville-detail svg { width: 20px; height: 20px; stroke: var(--green); flex-shrink: 0; }

/* Event Toast Notification */
.event-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(30, 44, 85, 0.2);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green);
  padding: 1.25rem 1.5rem;
  max-width: 340px;
  z-index: 9998;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  cursor: pointer;
}
.event-toast.visible {
  transform: translateX(0);
  opacity: 1;
}
.event-toast.hiding {
  transform: translateX(120%);
  opacity: 0;
}
.event-toast-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  color: var(--gray-400);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.event-toast-close:hover {
  background: var(--gray-100);
  color: var(--gray-600);
}
.event-toast-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.35rem;
}
.event-toast h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.event-toast p {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}
.event-toast-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}
.event-toast-date svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
}
.event-toast-cta {
  display: block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition), transform 0.15s ease;
  letter-spacing: 0.02em;
}
.event-toast-cta:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); }
.event-toast-spots {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  color: #dc2626;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* Expanded toast state */
.event-toast.expanded {
  max-width: 420px;
  cursor: default;
}
.event-toast-preview { }
.event-toast-expanded { display: none; }
.event-toast.expanded .event-toast-preview { display: none; }
.event-toast.expanded .event-toast-expanded { display: block; }

.toast-paths {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.toast-path {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.toast-path:hover {
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(0, 189, 112, 0.12);
}
.toast-path-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.toast-path h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.2rem 0;
}
.toast-path p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.45;
}
.toast-path-deposit {
  background: linear-gradient(135deg, rgba(30,44,85,0.03), rgba(0,189,112,0.04));
  border-color: rgba(0,189,112,0.25);
}
.toast-path-deposit .toast-path-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 0.4rem;
}
.toast-path-deposit .toast-path-refund {
  font-size: 0.68rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 0.15rem;
}

/* Stripe embed inside toast */
.toast-stripe-embed {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
}
.toast-stripe-embed.active { display: block; }

/* Info form inside toast */
.toast-info-form {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
}
.toast-info-form.active { display: block; }
.toast-info-form label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
  margin-top: 0.5rem;
}
.toast-info-form label:first-child { margin-top: 0; }
.toast-info-form input {
  width: 100%;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  transition: border-color var(--transition);
  box-sizing: border-box;
}
.toast-info-form input:focus {
  outline: none;
  border-color: var(--green);
}
.toast-info-form button {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.55rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.toast-info-form button:hover { background: var(--green-dark); }
.toast-back-btn {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: var(--gray-400);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  border: none;
  background: none;
  padding: 0;
  transition: color var(--transition);
}
.toast-back-btn:hover { color: var(--navy); }
.toast-success {
  text-align: center;
  padding: 0.5rem 0;
}
.toast-success svg { width: 36px; height: 36px; stroke: var(--green); margin-bottom: 0.5rem; }
.toast-success h5 { color: var(--navy); font-size: 0.9rem; margin: 0 0 0.25rem 0; }
.toast-success p { font-size: 0.78rem; color: var(--gray-500); margin: 0; }

@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; }
  .nashville-events { grid-template-columns: 1fr; }
  .modal-option-grid { grid-template-columns: 1fr; }
  .event-toast { bottom: 1rem; right: 1rem; left: 1rem; max-width: none; }
  .event-toast.expanded { max-width: none; }
}
