/* ============================================
   FIZZFOAM FLUSH — Fresh & Vibrant Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --teal-deep:   #0A7E6E;
  --teal:        #10B59A;
  --teal-mid:    #14C9AC;
  --teal-light:  #A8F0E6;
  --teal-pale:   #E0FAF6;
  --green:       #22C55E;
  --green-light: #DCFCE7;
  --green-deep:  #15803D;
  --lime:        #84CC16;
  --yellow:      #FACC15;
  --orange:      #F97316;
  --red:         #EF4444;
  --red-light:   #FEE2E2;
  --white:       #FFFFFF;
  --off-white:   #F0FEFA;
  --grey-50:     #F8FFFE;
  --grey-100:    #F0FAF8;
  --grey-200:    #D4F0EB;
  --grey-300:    #A8D9D1;
  --grey-400:    #6CB8AE;
  --grey-600:    #2D7A70;
  --grey-800:    #134E46;
  --text:        #0D2B27;
  --navy:        #0A3D3D;

  --font-display: 'Nunito', 'Helvetica Neue', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --max-w:       960px;
  --max-w-wide:  1140px;

  --shadow-sm:   0 2px 8px rgba(16,181,154,0.10);
  --shadow-md:   0 4px 20px rgba(16,181,154,0.15);
  --shadow-lg:   0 10px 40px rgba(16,181,154,0.20);
  --shadow-xl:   0 20px 60px rgba(16,181,154,0.25);
  --shadow-teal: 0 8px 32px rgba(16,181,154,0.40);
  --shadow-gold: 0 4px 20px rgba(250,204,21,0.45);

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
}

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

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--teal-pale);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(16,181,154,0.12);
}
.header-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 44px; }
.header-nav { display: flex; align-items: center; gap: 8px; }
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-800);
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: all 0.2s;
}
.header-nav a:hover { color: var(--teal); background: var(--teal-pale); text-decoration: none; }
.header-nav .btn-header {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-teal);
  transition: all 0.2s;
}
.header-nav .btn-header:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(16,181,154,0.5); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white) !important;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none !important;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(16,181,154,0.5); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #F59E0B, #FACC15, #F59E0B);
  color: var(--navy) !important;
  padding: 18px 48px;
  border-radius: var(--r-full);
  font-size: 17px;
  font-weight: 900;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: var(--shadow-gold);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}
.btn-gold:hover::before { left: 150%; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(250,204,21,0.55); }

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--white) !important;
  padding: 18px 48px;
  border-radius: var(--r-full);
  font-size: 17px;
  font-weight: 900;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 8px 32px rgba(34,197,94,0.4);
  transition: all 0.25s;
  width: 100%;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(34,197,94,0.5); }

/* ---- BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
}
.badge-teal  { background: var(--teal);  color: var(--white); }
.badge-gold  { background: var(--yellow); color: var(--navy); }
.badge-green { background: var(--green); color: var(--white); }
.badge-red   { background: var(--red);   color: var(--white); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 2px solid var(--teal-pale);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal-light); }

/* ---- STARS ---- */
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 14px; }

/* ---- ALERTS ---- */
.alert {
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-warning { background: #FEFCE8; border: 2px solid #FDE047; color: #713F12; }
.alert-success { background: var(--green-light); border: 2px solid #86EFAC; color: var(--green-deep); }
.alert-info    { background: var(--teal-pale); border: 2px solid var(--teal-light); color: var(--teal-deep); }
.alert-danger  { background: var(--red-light); border: 2px solid #FCA5A5; color: #991B1B; }

/* ---- SECTION ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-head p  { font-size: 17px; color: var(--grey-600); max-width: 560px; margin: 0 auto; }

/* ---- TABLE ---- */
.premium-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.premium-table th {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.premium-table th:first-child { background: var(--grey-100); color: var(--grey-600); }
.premium-table th:last-child  { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color: var(--white); }
.premium-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--grey-100); vertical-align: top; }
.premium-table td:last-child  { background: var(--teal-pale); }
.premium-table tr:last-child td { border-bottom: none; }
.check { color: var(--green); font-weight: 800; margin-right: 6px; }
.cross { color: var(--red);   font-weight: 800; margin-right: 6px; }

/* ---- REVIEW CARD ---- */
.review-card {
  background: var(--white);
  border: 2px solid var(--teal-pale);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.2s;
}
.review-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--teal-pale);
  position: absolute;
  top: 8px; right: 20px;
  line-height: 1;
}
.review-card .reviewer-name { font-weight: 800; font-size: 15px; color: var(--navy); font-family: var(--font-display); }
.review-card .reviewer-loc  { font-size: 12px; color: var(--grey-400); margin-left: 6px; }
.review-card .review-title  { font-weight: 700; font-size: 14px; margin: 8px 0 4px; color: var(--teal-deep); }
.review-card .review-text   { font-size: 14px; color: var(--grey-600); line-height: 1.65; }
.verified-badge { font-size: 11px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 4px; margin-top: 4px; font-family: var(--font-display); }

/* ---- FOOTER ---- */
.site-footer {
  background: linear-gradient(160deg, #0A2E2A 0%, #0D3D37 100%);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
  margin-top: 80px;
  border-top: 3px solid var(--teal-mid);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-brand img { height: 44px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 16px; }
.footer-brand p   { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 240px; }
.footer-col h6 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal-mid); text-decoration: none; }
.footer-col .contact-item { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal-links a:hover { color: var(--teal-mid); text-decoration: none; }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  padding: 16px 24px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .header-nav a:not(.btn-header) { display: none; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .container, .container-wide { padding: 0 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
