/* =========================================================
   QUEEN BEE KITCHEN – FINAL STABLE STYLESHEET
   Aligned with qnbkitchen.com (safe version)
========================================================= */
:root {
  /* ===== BRAND COLORS (SOLID ONLY) ===== */
  --primary-color: #FF6A3D;     /* ORANGE */
  --primary-light: #FF6A3D;
  --accent-color: #FF6A3D;

  /* ❌ REMOVE GRADIENT */
  --primary-gradient: none;

  /* ===== TEXT ===== */
  --text-dark: #1F2937;
  --text-medium: #6B7280;
  --text-light: #9CA3AF;

  /* ===== BACKGROUND (WHITE THEME) ===== */
  --background-light: #FFFFFF;
  --background-warm: #FFF3EB;
  --background-off-white: #FFFFFF;

  /* ===== UI ===== */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 4px 12px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.12);

  --font-main: "Inter", "Poppins", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--background-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* img {
  max-width: 100%;
  height: auto;
  display: block;
} */
/* .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
} */

a {
  text-decoration: none;
  color: inherit;
}

/* ================= LAYOUT ================= */
.container {
  max-width: 1140px; /* 🔥 SAME AS SAMPLE */
  margin: auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}
/* ================= PARTNER CTA (EXACT LIVE SITE MATCH) ================= */

.partners {
  background: #fff6eb;
  padding: 6rem 0;
}

.partner-cta {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.partner-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.partner-cta p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.partner-cta .btn {
  background: linear-gradient(135deg, #ff7a45, #ff944d);
  color: #ffffff;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 122, 69, 0.35);
  transition: all 0.3s ease;
}

.partner-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 122, 69, 0.45);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .partner-cta {
    padding: 2.5rem 1.75rem;
  }

  .partner-cta h3 {
    font-size: 1.6rem;
  }

  .partner-cta p {
    font-size: 0.95rem;
  }
}
/* ================= BRAND PARTNERS SECTION FIX ================= */
.partners {
  background: #f7f7f7;
  padding: 5rem 0;
}

.partner-cta {
  max-width: 1140px;
  margin: auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.partner-cta h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.partner-cta p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.partner-cta .btn {
  padding: 0.9rem 2.4rem;
  font-size: 0.95rem;
  border-radius: 999px;
}


/* ================= DOWNLOAD SECTION FIX ================= */
.download {
  background: #fff6eb;
  padding: 6rem 0;
}

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

.download-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.download-content p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.8rem;
}

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

.app-btn img {
  width: 165px;
  height: auto;
}

/* Image sizing EXACT like live site */
.download-image img {
  max-width: 420px;
  width: 100%;
  margin-left: auto;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 900px) {
  .download .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-image img {
    margin: 2.5rem auto 0;
  }

  .app-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ================= HEADER ================= */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: var(--primary-gradient);
  box-shadow: var(--shadow-sm);
}

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

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

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.para {
  font-size: 0.8rem;
  color: rgba(255,255,255,.85);
}

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

.nav-links a {
  color: #fff;
  font-weight: 500;
}

/* ================= HERO ================= */
.hero {
  padding-top: 7.5rem;
  background: linear-gradient(135deg, var(--background-warm), #ffffff);
}

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

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--primary-light);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 480px;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

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

/* .secondary-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  margin-bottom: 10px;
} */
 .pricing-btn-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;   /* center horizontally */
}

/* Button style */
.secondary-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

/* Hover effect */
.secondary-btn:hover {
  background: var(--primary-color);
  color: #fff;
}


/* ================= ACTIVITY SECTION (EXACT FIX) ================= */

.activity-section {
  background: #fff7ec;
  padding: 6rem 0;
}

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

/* IMAGE */
.activity-image img {
  width: 100%;
  max-width: 420px;
}

/* CONTENT */
.activity-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* CARD */
.activity-card {
  background: #ffffff;
  padding: 1.6rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.activity-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.activity-card p {
  font-size: 0.95rem;
  color: #6b7280;
}

.activity-card .icon {
  font-size: 1.2rem;
  color: #ff7a45;
}

/* MOBILE */
@media (max-width: 900px) {
  .activity-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .activity-image img {
    margin: 0 auto;
  }

  .activity-card {
    text-align: left;
  }
}

/* ================= ACTIVITY SECTION – FINAL FIX ================= */

.activity-showcase {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.activity-image {
  max-width: 420px;
}

.activity-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.activity-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.activity-feature {
  background: #ffffff;
  padding: 1.6rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.activity-feature i {
  font-size: 1.3rem;
  color: #ff7a33;
  margin-top: 0.2rem;
}

.activity-feature h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
}

.activity-feature p {
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: #6b7280;
}
/* ===============================
   FINAL ALIGNMENT FIXES
================================ */

/* 1️⃣ Force equal height category cards */
.help-categories {
  align-items: stretch;
}

.category-card {
  display: flex;
  flex-direction: column;
}

.category-links {
  flex-grow: 1;
}

/* 2️⃣ Clean spacing between stacked rows */
.help-categories > .category-card {
  margin-bottom: 0;
}

/* 3️⃣ Quick Actions section alignment */
.quick-actions {
  text-align: center;
}

.action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.action-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 4️⃣ Contact Support equal-height cards */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

/* Align icon perfectly */
.contact-method i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(194, 65, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 5️⃣ Fix Back button alignment */
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

/* 6️⃣ Remove any accidental extra padding */
.quick-actions,
.contact-support {
  box-sizing: border-box;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .activity-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .activity-image {
    margin: 0 auto;
  }

  .activity-feature {
    text-align: left;
  }
}

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

.feature-card {
  padding: 2rem;
  text-align: center;
  background: var(--background-off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  margin: auto auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
/* ================================
   RECIPES SECTION – FINAL UI
================================ */

.recipes {
  padding: 80px 0;
  background: #fff;
}

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

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  position: relative;
}

.section-header h2::after {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-header p {
  margin-top: 14px;
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* GRID */
.recipe-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.recipe-category {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recipe-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.recipe-category img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.recipe-category h3 {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 18px 4px;
  color: var(--text-dark);
}

.cuisine-languages {
  font-size: 0.85rem;
  color: var(--primary-color);
  padding: 0 18px;
  font-weight: 600;
}

.recipe-category p {
  font-size: 0.95rem;
  color: var(--text-medium);
  padding: 10px 18px 20px;
}

/* HIDDEN RECIPES */
.hidden-recipe {
  display: none;
}

/* VIEW ALL BUTTON */
.view-all-container {
  text-align: center;
  margin-top: 48px;
}

.view-all-btn {
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  background: var(--primary-gradient);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.recipe-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.recipe-category {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.recipe-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* IMAGE */
.recipe-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT */
.recipe-content {
  padding: 16px 18px 20px;
  text-align: left;
}

.recipe-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.cuisine-languages {
  font-size: 13px;
  color: #ea580c;
  margin-bottom: 8px;
  font-weight: 500;
}

.recipe-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* HIDDEN CARDS */
.hidden-recipe {
  display: none;
}

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

@media (max-width: 1200px) {
  .recipe-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .recipe-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recipe-showcase {
    grid-template-columns: 1fr;
  }

  .recipe-category img {
    height: 200px;
  }
}

/* ================= DOWNLOAD ================= */
.download-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.download-image {
  max-width: 420px;
}

.app-btn img {
  width: 160px;
  margin-right: 1rem;
}

/* ===== COMMUNITY SECTION (EXACT MATCH) ===== */

.community-section {
  background: #fff;
  padding: 5rem 0;
}

.community-header {
  text-align: center;
  margin-bottom: 3rem;
}

.community-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.community-header .underline {
  width: 50px;
  height: 3px;
  background: #ff7a3d;
  display: block;
  margin: 0.6rem auto 1rem;
  border-radius: 2px;
}

.community-header p {
  color: #6b7280;
  font-size: 1rem;
}

/* ===== STATS ===== */

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.stat-card h3 {
  font-size: 2rem;
  color: #ff7a3d;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #6b7280;
}

/* ===== TESTIMONIALS ===== */

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

.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  position: relative;
}

.testimonial-card .quote {
  font-size: 2.5rem;
  color: #ff7a3d;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-card p {
  color: #374151;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.user small {
  color: #6b7280;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
  .community-stats,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .community-stats {
    grid-template-columns: 1fr;
  }
}


/* ================= TESTIMONIALS ================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--background-off-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.testimonial img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

/* ================= CONTACT SECTION ================= */

.contact {
  padding: 5rem 0;
  background: #fff7ed;
}

.contact .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}

.section-header p {
  margin-top: 0.5rem;
  color: #6b7280;
}

/* Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

/* Cards */
.contact-form,
.contact-info {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= FORM ================= */

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2937;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff7a45;
  box-shadow: 0 0 0 3px rgba(255, 122, 69, 0.15);
}

/* Phone input */
.phone-input-group {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
}

.country-code-select {
  padding: 0.85rem 0.6rem;
}

/* Error messages */
.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Submit Button */
.contact-form button {
  margin-top: 1.5rem;
  align-self: flex-start;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff8a50, #ff6a3d);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form button:hover {
  opacity: 0.92;
}

/* ================= CONTACT INFO ================= */

.contact-info {
  background: #fff3e8;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.1rem;
  color: #ff6a3d;
  margin-top: 0.25rem;
}

.info-item h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.info-item p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Social links */
.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff6a3d;
  color: #ffffff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.9rem;
}

.social-icons a:hover {
  opacity: 0.9;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
    justify-content: center;
  }
}



/* ================= FOOTER ================= */

.footer {
  background: linear-gradient(180deg, #2b3a4a, #1f2937);
  color: #d1d5db;
  padding: 4rem 0 2rem;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
}

/* Layout */
.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 2.7fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Brand */
.footer-logo img {
  width: 100px; /* 🔥 reduced logo size */
  height: auto;
}

.footer-logo p {
  margin: 0;
}

.powered-box span {
  font-weight: bold;
  color: #fff;
}

.footer-brand h3 {
  color: #fff;
  margin: 0.5rem 0;
}

.footer-brand p {
  font-size: 0.95rem;
}

/* Powered by */
.powered-box {
  background: transparent; /* removed background */
  border-radius: 2em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4em 1.2em;
  width: fit-content;
  margin-top: 0.5rem;
}

.powered-box img {
  width: 34px;
  height: 34px;
}

/* <span class="powered-brand">VOXLI</span> */
.powered-brand{
  font-family: phatt;
}
.powered-box span {
  font-style: phatt;
  font-weight: 700; /* bold */
  color: #ffffff;  /* white */
}

/* Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.link-column h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.link-column ul {
  list-style: none;
  padding: 0;
}

.link-column li {
  margin-bottom: 0.6rem;
}

.link-column a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
}

.link-column a:hover {
  color: #ff8a50;
}
.footer-logo img {
  width: 56px;
  height: auto;
  margin-bottom: 0.6rem;
}
:root {
  --primary: #EA580C;
  --dark: #1F2937;
}

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

/* GLOBAL FONT */
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--dark);
  line-height: 1.7;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 1.25rem;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: linear-gradient(135deg, #9A3412, #EA580C);
  z-index: 1000;
}

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

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

.header-brand img {
  width: 42px;
  height: auto;
}

.header-brand h1 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.header-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.85);
}

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

.nav-links a {
  color: #fff;
  font-weight: 500;
}

/* ================= BANNER ================= */
.privacy-banner {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: #FFF7ED;
  text-align: center;
}

.privacy-banner h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
}

.policy-heading {
  color: #FF6A3D;
}

.policy-content h3 {
  color: #FF6A3D;
}


/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

  .privacy-banner {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .privacy-banner h1 {
    font-size: 2rem;
  }

  .privacy-banner p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .privacy-banner {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .privacy-banner h1 {
    font-size: 1.6rem;
  }

  .privacy-banner p {
    font-size: 0.9rem;
    padding: 0 1.2rem;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .privacy-banner {
    padding-top: 4.5rem;
    padding-bottom: 1.8rem;
  }

  .privacy-banner h1 {
    font-size: 1.4rem;
  }

  .privacy-banner p {
    font-size: 0.85rem;
  }

}

/* ================= CONTENT ================= */
.policy-content {
  padding: 4rem 0;
}

.policy-content h2 {
  font-family: "Poppins", sans-serif;
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(180deg, #2b3a4a, #1f2937);
  color: #d1d5db;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 2.7fr;
  gap: 3rem;
}

.footer-brand img {
  width: 56px;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-column h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.link-column ul {
  list-style: none;
}

.link-column li {
  margin-bottom: 0.6rem;
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.8);
  /* opacity: 0.8; */
}

/* POWERED BY */
/* .powered-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  width: fit-content;
  margin-top: 0.6rem;
}

.powered-box img {
  width: 30px;
} */

/* .powered-box span {
  font-weight: 700;
  color: #E30613;
} */


/* Bottom */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    width: 80px;
    margin: 0 auto;
  }

  /* .powered-box {
    margin: 0.8rem auto;
  } */
}
/* ===============================
   FAQ ALIGNMENT FIX
================================ */

/* Main FAQ section */
.faq-section {
  background: var(--background-light);
  padding: 120px 20px 80px;
}

/* Center content */
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--background-off-white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* Search bar */
.faq-search {
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
}

.faq-search i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-medium);
}

/* Category header */
.faq-category {
  background: var(--primary-gradient);
  color: white;
  padding: 16px 24px;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==============================
   FAQ CLEAN FINAL LAYOUT
============================== */

/* Main container */
.faqs-content {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.faqs-header {
  padding: 64px 24px 48px;
  text-align: center;
}

/* Search */
.search-box {
  max-width: 520px;
  margin: 0 auto;
}

/* FAQ sections */
.faq-categories {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Each category */
.faq-category {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* Category header */
.category-header {
  background: var(--primary-gradient);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* FAQ list */
.faq-items {
  display: block;
}

/* Question row */
.faq-question {
  width: 100%;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

/* Open state */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-medium);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Bottom section */
.contact-help {
  max-width: 900px;
  margin: 64px auto 40px;
  padding: 32px;
  text-align: center;
  background: var(--background-warm);
  border-radius: var(--border-radius-lg);
}

.help-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.help-btn {
  min-width: 180px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Back button */
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto 0;
  min-width: 200px;
}

/* Mobile */
@media (max-width: 768px) {
  .faqs-content {
    margin: 0 16px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .help-actions {
    flex-direction: column;
  }

  .help-btn,
  .back-button {
    width: 100%;
    max-width: 260px;
  }
}
/* ==============================
   FAQ BOTTOM – FINAL ALIGNMENT
============================== */

/* Bottom container */
.contact-help {
  max-width: 100%;
  margin: 64px auto 32px;
  padding: 40px 24px;
  text-align: center;
}

/* Center buttons perfectly */
.help-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

/* Button sizing consistency */
.help-btn {
  min-width: 190px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Back to Home – CENTERED */
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  min-width: 210px;
  height: 48px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .help-actions {
    flex-direction: column;
    gap: 16px;
  }

  .help-btn,
  .back-button {
    width: 100%;
    max-width: 260px;
  }
}
/* ================= BANNER ================= */
.privacy-banner {
  background: #FFF8F1;
  padding: 150px;
  text-align: center;
}

.privacy-banner h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

.privacy-banner p {
  max-width: 720px;
  margin: auto;
  color: #6B7280;
  font-size: 16px;
}

/* ================= CONTENT ================= */
/* .policy-content {
  max-width: 880px;
  margin: auto;
  padding: 70px 20px 90px;
} */
.policy-content {
  max-width: 880px;
  margin: auto;
  padding: 20px 20px 90px;
}

.policy-content h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 14px;
}

.policy-content h3 {
  font-size: 18px;
  margin-top: 26px;
  margin-bottom: 8px;
}

.policy-content p {
  line-height: 1.8;
  font-size: 15.5px;
  color: #4B5563;
  margin-bottom: 12px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
/* ===============================
   REMOVE ALL GRADIENTS – FORCE SOLID
================================ */

header,
.category-header,
.faq-category,
.partner-cta .btn,
.view-all-btn,
.contact-form button,
.action-btn,
.back-button,
.feature-icon,
.social-icons a {
  background: var(--primary-color) !important;
  background-image: none !important;
}

header {
  background: linear-gradient(180deg, #2b3a4a, #1f2937) !important;
}

.nav-links a {
  display: inline-block;       /* important */
  padding: 7px 10px;           /* SAME padding always */
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: var(--primary-color);
  color: #ffffff;
}



/* ================= LOGO SIZE CONTROL ================= */

/* Header logo image */
.header-brand img,
.logo img {
  width: 72px;   /* 🔥 increase size (try 56px–72px) */
  height: auto;
}
@media (max-width: 768px) {
  .header-brand img,
  .logo img {
    width: 52px;
  }
}
/* ================= FOOTER LOGO ================= */
.footer-brand img,
.footer-logo img {
  width: 80px;      /* Desktop footer logo */
  height: auto;
}

@media (max-width: 768px) {
  .footer-brand img,
  .footer-logo img {
    width: 64px;    /* Mobile footer logo */
  }
}
/* ================= POWERED BY – VOXLI ================= */
/* POWERED BY WRAPPER */
.powered-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;              /* equal spacing */
}

.powered-label,
.powered-brand {
  margin: 0;
  padding: 0;
  line-height: 1;         /* removes vertical mismatch */
  font-size: 16px;        /* SAME font size */
}

.powered-label {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  /* opacity:0.85; */
}

.powered-brand {
  font-weight: 600;
  color: #E30613;
}


/* .powered-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  gap: 6px;
  margin-top: 6px;
} */

/* Tower House badge */
/* .powered-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.powered-box img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
} */

/* .powered-box span {
  font-weight: 700;
  font-size: 1rem;
  color: #E30613;
} */

/* Voxli text */
.powered-voxli {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  padding-left: 6px; /* aligns with badge text */
}
@media (max-width: 900px) {
  .powered-wrapper {
    align-items: center;
  }

  .powered-voxli {
    padding-left: 0;
  }
}


/* SUBSCRIPTION PLANS */

/* SECTION */
.pricing {
  padding: 4rem 0;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* COLUMN LAYOUT */
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* CARD */
.pricing-card {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

/* HEADER INSIDE CARD */
.pricing-header h3 {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
}

/* FEATURES */
pricing-features {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  flex-grow: 1;/*keeps button aligned */
 }

/* .pricing-features li {
  margin-bottom: 0.5rem;
}


.pricing-btn-row {
  margin-top: 1rem;
} */

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.5em;
  background: transparent;
  border: 2px solid var(--primary-color);
  /* color: var(--primary-color); */
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}


/* =========================
   MOBILE HEADER
========================= */
@media (max-width: 768px) {

  header .container {
    padding: 0.75rem 0;
  }

  /* Mobile menu */
  .nav-links {
    position: fixed;
    top: 100%; /* height of header */
    left: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;

    background: linear-gradient(180deg, #2b3a4a, #1f2937);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  /* Show menu */
  .nav-links.show {
    opacity: 1;
    /* visibility: visible; */
    visibility: visible !important;
    transform: translateY(0);
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    font-size: 1rem;
  }

  /* Hamburger button */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-right: 25px;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }
}

/* Keep header above menu */
header {
  position: relative;
  z-index: 1000;
}


/* ===============================
   RESPONSIVE CONTACT SECTION
================================ */

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form,
  .contact-info {
    padding: 2rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .contact {
    padding: 3.5rem 0;
  }

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

  .section-header p {
    font-size: 0.95rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.75rem;
    border-radius: 14px;
  }

  /* Phone input stack */
  .phone-input-group {
    grid-template-columns: 1fr;
  }

  .country-code-select {
    padding: 0.85rem 1rem;
  }

  /* Button full width */
  .contact-form button {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .contact {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.9rem;
  }
}

/* ===============================
   RESPONSIVE FEATURES GRID
================================ */

/* Tablets (≤992px) → 2 columns */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

/* Mobile (≤768px) → 1 column */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.75rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.75rem;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .powered-wrapper {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .powered-label,
  .powered-brand {
    font-size: 13px;
  }
}

/* Phones (481px – 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .powered-wrapper {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .powered-label,
  .powered-brand {
    font-size: 14px;
  }
}

/* Tablets (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .powered-wrapper {
    gap: 10px;
  }

  .powered-label,
  .powered-brand {
    font-size: 15px;
  }
}

/* iPad Air / iPad Portrait (820px width) */
@media (min-width: 820px) and (max-width: 912px) {
  .powered-wrapper {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .powered-label,
  .powered-brand {
    font-size: 15px;
  }
}


/* IMAGE */


/* Mobile tweaks */
/* General image styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero section layout */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* text + image side by side */
  align-items: center;
  gap: 1rem;
}

@media (max-width: 480px) {
  .hero .container {
    display: flex;
    flex-direction: column; /* stack hero content vertically */
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .hero {
  padding-top: 1.5rem;
  background: linear-gradient(135deg, var(--background-warm), #ffffff);
}

  /* Hero image on top */
  .hero-image {
    order: -1;             /* moves image above hero-content */
    width: 100%;
    display: flex;
    justify-content: center; /* center the image */
  }

  .hero-image img {
    height: 9rem;           /* scales with h1 */
    width: auto;
    display: block;
    margin-bottom: 0.5rem;  /* spacing below image */
  }

  /* Stack hero-content */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin: 0;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
}

/* Header alignment fix */
header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.nav-links li a {
  white-space: nowrap;
  font-size: 15px;
  padding: 6px 8px;
}
/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  display: none;   /* MUST be none */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
/* ===== POPUP BOX ===== */
.popup-box {
  background-color: #ffffff !important; /* force solid background */
  width: 650px;
  max-width: 90%;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

/* ===== POPUP TEXT ===== */
.popup-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
}

.popup-box p {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

/* ===== BUTTONS ===== */
.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.popup-buttons a {
  text-decoration: none;
  background:#FF6A3D;
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.popup-buttons a:hover {
  background: #fc6537;
}

/* ===== SHOW POPUP ===== */
.popup-overlay.show {
  display: flex;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .popup-box {
    width: 90%;
    padding: 25px 15px;
  }

  .popup-box h2 {
    font-size: 24px;
  }

  .popup-box p {
    font-size: 16px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .privacy-banner {
    padding: 200px 40px;
  }

  .privacy-banner h1 {
    font-size: 36px;
  }

  .privacy-banner p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  /* .privacy-banner {
    /* padding: 70px 20px; 
  } */

  .privacy-banner h1 {
    font-size: 28px;
  }

  .privacy-banner p {
    font-size: 14px;
  }
}