/* style.css - shared stylesheet for all pages
   - Uses brand colors: #007bff (blue) and #ff6600 (orange)
   - Inter font required in HTML head
*/

/* ================ Design tokens ================ */
:root {
  --brand-blue: #007bff;
  --brand-orange: #ff6600;
  --bg: #f9f9f9;
  --text: #222;
  --muted: #6b7280;
  --card-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  --radius: 12px;
  --container: 1100px;
  --header-height: 72px;
}

.coupon-img {
  /* position:fixed; 
  bottom: 20px; 
   right: 0;  */
  margin-top: 70px;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ------------------------------
   Glassmorphism Header & Logo
------------------------------ */

/* Navigation Bar */
header {
  background: rgba(255, 255, 255, 0.15);
  /* translucent glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* border-radius: 12px; */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  /* margin: 10px; */
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Container Layout (same spacing preserved) */
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo + Stamp Section */
header .container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Logo and Partner Text */
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #007bff;
  text-align: center;
}

.partner-stamp {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff6600;
  margin-top: 4px;
  text-align: center;
  letter-spacing: 0.4px;
}

.stamp-big {
  color: #000;
}

/* Nav links readability on glass background */
nav a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #021931 !important;
  text-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    margin: 5px;
    border-radius: 8px;
  }

  header .container > div {
    padding: 6px 15px;
  }

  nav a {
    margin-left: 12px;
  }
}

/* ///////////////////////////////////////////// */
header {
  background: transparent;
  color: #fff;
  transition: background 0.4s ease, color 0.4s ease;
}

header.scrolled {
  background: #fff;
  color: #222;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

header .logo,
header nav a {
  transition: color 0.4s ease;
}

header:not(.scrolled) .logo,
header:not(.scrolled) nav a {
  color: #fff;
}

header.scrolled .logo,
header.scrolled nav a {
  color: #007bff;
}

/* ================ Reset & base ================ */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ================ Header ================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1200;
  transition: all 220ms ease;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 1.2rem;
}

.partner-stamp {
  font-size: 0.78rem;
  color: rgba(255, 189, 6, 0.89);
  font-weight: 600;
  line-height: 1;
}

nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* nav a:hover,
nav a.active {
  color: var(--brand-blue) !important;
  background: rgba(0, 123, 255, 0.04)
} */

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.15rem;
  padding: 8px;
  color: #333;
}

/* header shrink state */
header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 6px 0;
}

/* mobile nav (hidden by default) */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 12px auto 12px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.12);
}
/* 
.mobile-nav a {
  display: none;
  padding: 10px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 6px;
} */

/* ================ Hero ================ */
.hero {
  margin-top: var(--header-height);
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    #3b9bff 40%,
    var(--brand-orange) 100%
  );
  color: #fff;
  padding: 92px 0 64px;
  text-align: center;
  overflow: hidden;
}

.hero .container {
  display: flex;
  /* flex-direction: column; */
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: 980px;
}
.hero .index-container {
  max-width: 1200px;
  justify-content: space-between;
}
.hero h1 {
  font-size: 2.6rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
}

.hero p {
  font-size: 1.05rem;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.95);
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms;
}

.btn-primary {
  background: #fff;
  color: var(--brand-blue);
}

.btn-primary {
  background: #fff;
  color: var(--brand-blue);
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* small underline */
.hero-underline {
  display: inline-block;
  height: 4px;
  width: 120px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 10px;
}

/* ================ Sections ================ */
section {
  padding: 72px 0;
}

section h2 {
  font-size: 1.9rem;
  color: var(--brand-blue);
  margin-bottom: 12px;
  text-align: center;
}

.lead {
  max-width: 820px;
  margin: 12px auto 28px;
  color: var(--muted);
  text-align: center;
}

/* Features / cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--card-shadow);
  transition: transform 300ms ease, box-shadow 300ms;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-card .icon {
  min-width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.12),
    rgba(255, 102, 0, 0.06)
  );
  color: var(--brand-blue);
  font-size: 20px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brand-orange);
  font-weight: 700;
}

.feature-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.plan {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  text-align: left;
  transition: transform 260ms ease, box-shadow 260ms;
  border: 1px solid rgba(2, 6, 23, 0.03);
}

.plan.highlight {
  border: 2px solid rgba(0, 123, 255, 0.12);
}

.plan h3 {
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.price {
  font-size: 1.25rem;
  color: var(--brand-orange);
  font-weight: 700;
  margin: 10px 0;
}

.plan ul {
  margin: 12px 0 18px 18px;
  color: var(--muted);
}

.plan a {
  display: inline-block;
  margin-top: 6px;
}

/* Testimonials */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  font-style: italic;
}

/* Tables */
.comparison {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
}

th {
  background: var(--brand-blue);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
}

tr:nth-child(even) {
  background: #fafafa;
}

/* Content helpers */
.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

/* ================ Footer ================ */
footer {
  background: #0f1724;
  color: #cbd5e1;
  padding: 48px 0;
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  align-items: start;
}

.footer-brand {
  font-weight: 700;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin: 8px 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  margin-right: 8px;
  text-decoration: none;
}

/* Newsletter Title */
footer strong {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

/* Newsletter Input + Button Layout */
footer .newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

/* Input Styling */
footer .newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
}

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

/* Subscribe Button */
footer .newsletter-form button {
  background: var(--brand-orange);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 9px;
}

footer .newsletter-form button:hover {
  opacity: 0.9;
}

/* Social Icons Row */
footer .socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Social Icon Buttons */
footer .socials a {
  width: 32px;
  height: 32px;
  background: #1e293b;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #94a3b8;
  transition: 0.2s;
}

footer .socials a:hover {
  background: var(--brand-orange);
  color: #fff;
}

/* Reveal animation utility */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: all 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive tweaks */
@media (max-width: 920px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 72px 0 56px;
  }

  header .container {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  header.scrolled {
    padding: 10px 0;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .container {
    width: 94%;
  }

  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter input {
    width: 100%;
  }

  .newsletter button {
    width: 100%;
  }

  .mobile-nav {
    left: 12px;
    right: 12px;
  }

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

/* small helpers for buttons in content */
.btn-secondary {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* //////////////////////////////////////////////////////////////////// */
/* style.css
   Shared external stylesheet for Ryde Web Hosting
   - Brand colors: #007bff and #ff6600
   - Inter font expected to be loaded in each HTML head
*/

/* Design tokens */
:root {
  --brand-blue: #007bff;
  --brand-orange: #ff6600;
  --bg: #f9f9f9;
  --text: #222;
  --muted: #6b7280;
  --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius: 12px;
  --container: 1100px;
  --section-pad: 88px;
  --header-height: 72px;
}

/* Reset & base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1200;
  transition: all 220ms ease;
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

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

.logo {
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 1.15rem;
  letter-spacing: 0.2px;
}

.partner-stamp {
  font-size: 0.78rem;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.15rem;
  padding: 8px;
  color: #222;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 12px auto 12px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.12);
}

.mobile-link {
  display: block;
  padding: 10px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 6px;
}

.mobile-link.active {
  background: rgba(0, 123, 255, 0.06);
  color: var(--brand-blue);
}

/* On scroll - header becomes solid */
/* header.scrolled{background:#fbf8f8;box-shadow:0 14px 40px rgba(15,23,42,0.08)} */
header.scrolled {
  background: rgba(255, 255, 255, 0.561);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* header.scrolled {
  background: rgba(0, 123, 255, 0.18); 
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} */

/* header.scrolled {
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.22) 0%,
    rgba(59, 155, 255, 0.18) 40%,
    rgba(255, 102, 0, 0.18) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
} */

/* HERO: full-screen */
.full-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center center;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.2s linear;
}

/* Gradient overlay for contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.45) 0%,
    rgba(255, 102, 0, 0.3) 100%
  );
  mix-blend-mode: normal;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 6;
  display: flex;
  /* flex-direction: ; */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

.hero-content {
  max-width: 980px;
  color: #fff;
  padding: 48px 16px;
  /* margin-top: 180px; */
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin: 0 0 12px;
  line-height: 1.02;
  font-weight: 700;
}

.hero-content .sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

/* Buttons */
.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: #fff;
  color: var(--brand-blue);
  color: var(--brand-blue);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.08);
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--brand-blue);
}

/* Sections - consistent spacing */
.section {
  padding: var(--section-pad) 0;
}

.section h2 {
  font-size: 1.9rem;
  color: var(--brand-blue);
  margin: 0 0 10px;
  text-align: center;
}

.lead {
  max-width: 820px;
  margin: 10px auto 28px;
  color: var(--muted);
  text-align: center;
}

/* Features grid & cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform 260ms ease, box-shadow 260ms;
}

.feature-card .icon {
  min-width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.12),
    rgba(255, 102, 0, 0.06)
  );
  color: var(--brand-blue);
  font-size: 18px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brand-orange);
  font-weight: 700;
}

.feature-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.plan {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 220ms ease;
  border: 1px solid rgba(2, 6, 23, 0.03);
}

.plan.highlight {
  border: 2px solid rgba(0, 123, 255, 0.08);
}

.price {
  font-size: 1.2rem;
  color: var(--brand-orange);
  font-weight: 700;
  margin: 8px 0;
}

/* Testimonials */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.testimonial-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  font-style: italic;
}

/* Table */
.table-wrap {
  overflow: auto;
  margin-top: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
}

th {
  background: var(--brand-blue);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
}

tr:nth-child(even) {
  background: #fafafa;
}

/* Footer */
footer {
  background: #071028;
  color: #dbe7f0;
  padding: 48px 0;
  margin-top: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.footer-brand {
  font-weight: 700;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #dbe7f0;
  text-decoration: none;
  margin: 8px 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  margin-right: 8px;
}

.newsletter {
  display: flex;
  gap: 10px;
  align-items: center;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.newsletter button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
}

/* Reveal animation helper */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: all 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive tweaks */
@media (max-width: 920px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  :root {
    --section-pad: 64px;
  }
}

@media (max-width: 768px) {
  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-nav {
    display: none;
  }

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

  :root {
    --section-pad: 56px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content {
    padding: 26px;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
  }
}

/* =========================================
   SECTION SPACING
========================================= */
.section {
  padding: 70px 0;
  margin-bottom: 70px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}

.section .lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #555;
}

/* =========================================
   WHY-CHOOSE SECTION
========================================= */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .icon {
  font-size: 2rem;
  color: #007bff;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

/* =========================================
   PRICING SECTION
========================================= */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.plan {
  background: #fff;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-6px);
}

.plan.highlight {
  border: 2px solid #007bff;
}

.plan h3 {
  margin-bottom: 12px;
}

.price {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #ff6600;
  font-weight: bold;
}

.plan ul {
  list-style: none;
  margin-bottom: 40px;
}

.plan ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* Buttons */
.plan .btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Ghost button */
.btn-ghost {
  border: 1px solid #ccc;
  color: #333;
}

/* Primary button */
.btn-primary {
  background: #007bff;
  color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
    margin-bottom: 50px;
  }

  .section h2 {
    font-size: 1.7rem;
  }

  .feature-card,
  .plan {
    padding: 25px;
  }
}

/* =========================================
   COMPARISON SECTION (Professional Spacing)
========================================= */
.section.comparison {
  padding: 70px 0;
  margin-bottom: 70px;
}

.section.comparison h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* Table wrapper for responsive scroll */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
}

/* Main Table Styling */
.section.comparison table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  min-width: 700px;
  /* ensures proper column width */
}

.section.comparison th,
.section.comparison td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

/* Table Header */
.section.comparison th {
  background: #007bff;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Zebra row */
.section.comparison tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* Last row remove border */
.section.comparison tbody tr:last-child td {
  border-bottom: none;
}

/* Emoji alignment improvement */
.section.comparison td {
  font-size: 1rem;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .section.comparison {
    padding: 50px 0;
    margin-bottom: 50px;
  }

  .section.comparison h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .section.comparison th,
  .section.comparison td {
    padding: 14px;
    font-size: 0.95rem;
  }
}

/* ==============STYLE FOR REVIEW PAGE=============== */
/* ===========================
   GLOBAL SPACING + LAYOUT FIX
   =========================== */

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background: #f8f9fc;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Normalize section spacing */
section {
  padding: 80px 0;
}

/* Remove unnecessary empty white space */
.full-hero {
  min-height: 60vh;
  /* reduced from full height */
  display: flex;
  align-items: center;
}

/* Keep hero content centered */
.hero-inner {
  padding: 60px 0;
}

/* Section headings */
section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}

/* Paragraph spacing */
section p {
  margin-bottom: 20px;
}

/* Fix table spacing */
table.comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

table.comparison th,
table.comparison td {
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid #547dcf;
}

table.comparison th {
  background: #a5c5e5;
  font-weight: 600;
}

/* Feature cards spacing */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.feature-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Footer spacing */
footer {
  background: #000c2d;
  padding: 60px 0 30px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

footer a {
  margin-top: 8px;
  display: block;
}

/* Newsletter input spacing */
.newsletter input {
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 10px;
}

.newsletter button {
  padding: 10px 20px;
  border-radius: 6px;
}

/* Fix hero background so it doesn't stretch white space */
.hero-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

/* Fix reveal animations spacing */
.reveal {
  opacity: 1;
  transform: none;
}

/* =========================================
   MOBILE VIEW — STACK CARDS ONE BY ONE
========================================= */
@media (max-width: 768px) {
  /* For any .card layout */
  .card {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }

  /* For feature cards */
  .features {
    grid-template-columns: 1fr !important;
  }

  .feature-card {
    width: 100%;
    margin-bottom: 20px;
  }

  /* For pricing plans */
  .plans {
    grid-template-columns: 1fr !important;
  }

  .plan {
    width: 100%;
    margin-bottom: 20px;
  }

  /* For testimonials if needed */
  .testimonial-list {
    grid-template-columns: 1fr !important;
  }

  .testimonial-card {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 350px) {
  header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  header .container > div {
    padding: 6px 12px;
    text-align: center;
  }

  .menu-toggle {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
    gap: 20px;
  }
}

@media (max-width: 340px) {
  .footer-grid {
    grid-template-columns: 1fr;
    /* 1 column for ultra-small screens */
  }
}

/* Dropdown styling (site-matching minimal) */
.dropdown-nav {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
}
.mobile-dropdown-panel {
  background: #ffffff; /* clean white bg */
  color: #333; /* text color */
  z-index: 9999;
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 10px 0; /* <-- missing semicolon fixed */
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-dropdown-panel a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: #222;
  text-decoration: none;
}

.mobile-dropdown-panel a:hover {
  background-color: #e7a32d4f;
  color: #ffff;
}



.dropdown-panel a {
  display: block;
  padding: 12px 18px;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 500;
}

/* dropdown fix */
.dropdown-nav {
  position: relative;
  z-index: 99999 !important;
}
.dropdown-panel {
  background: rgba(0, 0, 0, 0.85) !important;
}

/* Desktop dropdown container */
.dropdown-nav {
  position: relative;
}

/* Dropdown toggle */
.dropdown-nav .dropdown-toggle {
  cursor: pointer;
}

/* DROPDOWN PANEL (Desktop Only) */
#menuDropdownPanel {
  position: absolute;
  top: 100%;
  right: 0;

  background: rgba(0, 0, 0, 0.85);
  color: white;

  max-width: fit-content;
  padding: 10px 0;

  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

  display: none; /* hide by default */
  z-index: 9999;
}

/* Links inside dropdown */
#menuDropdownPanel a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  margin: 0 !important;
}

#menuDropdownPanel a:hover {
  background: rgba(255, 255, 255, 0.476);
  color: #083768;
}
/* MOBILE NAV — FIXED OVERLAY */
#mobileNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: white;
    z-index: 9999;

    overflow-y: auto;   /* allow scrolling INSIDE mobile menu */
    -webkit-overflow-scrolling: touch;

    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* When menu is open */
#mobileNav.open {
    transform: translateY(0);
}
.mobile-close {
    width: 100%;
    text-align: right;
    padding: 16px 20px;
    font-size: 24px;
    cursor: pointer;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10000;
}

.mobile-close i {
    color: #333;
}
