/* ============================================================
   TRIVERSE — style.css
   Font: Raleway (Google Fonts)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #f47c20;
  --orange-light: #ff9a45;
  --dark: #0f0f0f;
  --dark-2: #181818;
  --dark-3: #222222;
  --white: #ffffff;
  --muted: #a0a0a0;
  --border: rgba(255, 255, 255, 0.1);
  --font: "Raleway", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font);
  min-height: 100vh;
  overflow-x: hidden;
}

@media (max-width:768px) {
  h1 { font-size: 32px !important; }
  h2 { font-size: 26px !important; }
  h3 { font-size: 20px !important; }

    h1 strong {
    font-size: calc(100% + 10px) !important;
  }

  h2 strong {
    font-size: calc(100% + 10px) !important;
  }

  h3 strong {
    font-size: calc(100% + 10px) !important;
  }
     h1 span {
    font-size: calc(100% + 10px) !important;
  }

  h2 span {
    font-size: calc(100% + 10px) !important;
  }

  h3 span {
    font-size: calc(100% + 10px) !important;
  }
}
/* ============================================================
   SITE HEADER — transparent overlay, 15% | 85% two-row layout
   ============================================================ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  max-width: 1200px;
  margin: auto;
  padding-top: 10px;
}

/* Outer wrapper: two columns */
.header-inner {
  display: grid;
  grid-template-columns: 15% 85%;
  /* border-bottom: 1px solid var(--border); */
}

/* ── Col 1 · Logo (15%) ── */
.header-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  /* border-right: 1px solid var(--border); */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 120px;
}

.logo-text {
  font-family: var(--font);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}

/* ── Col 2 · Right side (85%) — two rows stacked ── */
.header-right-col {
  display: flex;
  flex-direction: column;
}

/* Row 1 · Topbar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 10px 28px;
  /* border-bottom: 1px solid var(--border); */
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fbff7b;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-link:hover {
  color: var(--white);
}

.phone {
  color: #3ce2ff;
}

.topbar-link svg {
  flex-shrink: 0;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

/* Row 2 · Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 28px;
  height: 60px;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--white);
  font-weight: 700;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.97);
  border-top: 1px solid var(--border);
  z-index: 100;
  padding: 12px 24px 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu ul li:last-child a {
  border-bottom: none;
}

.mobile-menu ul li a:hover {
  color: var(--orange);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/authors-lounge\ 1.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Social sidebar */
.social-sidebar {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.social-sidebar a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}

.social-sidebar a:hover {
  color: var(--orange);
}

.social-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}

.sidebar-line {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero left */
.hero-left {
  padding-left: 0px;
}

.hero-heading {
  font-family: var(--font);
  font-weight: 400;
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 600px;
}

.hero-heading strong {
  font-family: var(--font);
  font-weight: 600;
  font-size: 66px;
}

.hero-heading .orange {
  color: #ffb36e;
  font-family: var(--font);
  font-weight: 600;
  font-size: 66px;
}

.hero-sub {
  color: #ffffff;
  font-family: var(--font);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 36px;
}

/* CTA buttons */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.avatar-stack {
  width: 150px;
  display: flex;
}

.avatar-stack img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  margin-left: -10px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.trust-text {
  line-height: 1.4;
}

.stars {
  color: #f3902d;
  font-size: 22px;
  letter-spacing: 1px;
}

.trust-label {
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   CONTACT CARD
   ============================================================ */

.contact-card {
  background: hsl(0deg 0% 13.33% / 40%);
  border: 3px solid rgb(255 255 255);
  border-radius: 18px;
  padding: 28px 28px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-title-wrap {
  /* border-bottom: 2px solid #2dd4bf; */
  margin-bottom: 14px;
  padding-bottom: 14px;
  text-align: center;
}

.card-title {
  font-family: var(--font);
  font-size: 26px;
  line-height: 2;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-top: -56px;
  background-color: #3a9adf;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}

.card-desc {
  color: var(--white);
  font-family: var(--font);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 12px;
  background-color: white;
  border-radius: 58px;
}

.form-field input,
.form-field select {
  width: 100%;
  background: rgb(255 255 255);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 58px;
  color: var(--dark);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  padding: 11px 14px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  appearance: none;
  -webkit-appearance: none;
  font-size: 20px;
}

.form-field input::placeholder {
  color: rgba(0, 0, 0, 1);
  font-family: var(--font);
  font-weight: 400;
  font-size: 20px;
}

.form-field select option {
  background: #ffffff;
  color: var(--dark);
  font-size: 16px;
}

.form-field select option[value=""] {
  color: rgba(255, 255, 255, 0.35);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--dark);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  padding: 18px 20px;
  border-radius: 58px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.btn-submit:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.3);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left > * {
  animation: fadeUp 0.55s ease both;
}

.hero-left > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-left > *:nth-child(2) {
  animation-delay: 0.15s;
}
.hero-left > *:nth-child(3) {
  animation-delay: 0.25s;
}
.hero-left > *:nth-child(4) {
  animation-delay: 0.35s;
}

.contact-card {
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 6px 10px;
  }
}

/* ============================================================
   RESPONSIVE — 900px (tablet)
   ============================================================ */

@media (max-width: 900px) {
  /* Collapse two-column header into single column */
  .header-inner {
  display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 20px;
        padding-top: 15px;
  }

  /* Logo row spans full width, centred */
  .header-logo-col {
    justify-content: space-between;
    border-right: none;
    /* border-bottom: 1px solid var(--border); */
    padding: 12px 20px;
  }

  /* Hide topbar row on mobile */
  .topbar {
    display: none;
  }

  /* Navbar becomes a flex row: logo-less, just hamburger */
  .navbar {
    padding: 0 20px;
    height: 52px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-left {
    padding-left: 0;
  }

  .social-sidebar {
    display: none;
  }

  .hero-heading {
    font-size: clamp(28px, 6vw, 44px);
  }

  .hero {
    padding: 140px 0 60px;
  }
}

/* ============================================================
   RESPONSIVE — 600px (mobile)
   ============================================================ */

@media (max-width: 600px) {
  .hero-sub {
    color: #ffffff;
    font-family: var(--font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 20px;
}
.trust-label {

    font-size: 13px;

}
  .logo-icon img {
    width: 90px;
}
  .hero-btns {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    padding: 12px 20px;
  }
  .card-title {
    margin-top: -50px;
}

  .contact-card {
    padding: 22px 20px 26px;
  }
  .card-desc {
    font-size: 18px; 
  }
  .btn-submit {
    font-size: 15px;
    padding: 13px 16px;
}
p {
    font-size: 18px !important;
}
.strategy-sub {
    margin: 10px 0 !important;
}
.strategy-badges li {
    font-size: 18px !important;
}
span.solutions-heading-light {
    font-size: 26px !important;
}
.solutions-list li {
    font-size: 20px !important;
}
}

/* ============================================================
   RESPONSIVE — 400px (small mobile)
   ============================================================ */

@media (max-width: 400px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services {
  background: #ffffff;
  padding: 80px 24px 90px;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Heading */
.services-heading {
  text-align: center;
  max-width: 900px;
}

.services-heading h2 {
  font-family: var(--font);
  font-size: 45px;
  font-weight: 300;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-heading-accent {
  font-family: var(--font);
  font-weight: 600;
  color: var(--orange);
  font-size: 66px;
}

.services-heading p {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

/* Cards grid — 4 equal columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

/* Base card */
.service-card {
  background: #ffffff;
  border: 1.5px solid #f18624;
  border-radius: 16px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

/* Card accent border-top colors */
.card-green {
  background: linear-gradient(180deg, #f2fff4 0%, #fdfffd 100%);
}
.card-orange {
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}
.card-yellow {
  background: linear-gradient(180deg, #fbfede 0%, #ffffff 100%);
}
.card-plain {
  background: linear-gradient(180deg, #f8f8ff 0%, #ffffff 100%);
}

/* Icon area */
.service-icon-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card img {
  width: 145px !important;
  height: 145px !important;
}
.service-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.35;
}

.bg-green {
  background: radial-gradient(circle, #c8efc4 0%, #e8f5e9 70%);
  opacity: 0.7;
}
.bg-orange {
  background: radial-gradient(circle, #ffdcb4 0%, #fff3e6 70%);
  opacity: 0.7;
}
.bg-yellow {
  background: radial-gradient(circle, #fff0a0 0%, #fffde7 70%);
  opacity: 0.7;
}
.bg-plain {
  background: radial-gradient(circle, #e0e0e0 0%, #f5f5f5 70%);
  opacity: 0.7;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
}

/* Card title */
.service-title {
  font-family: var(--font);
  font-size: 25px;
  font-weight: 700;
  color: #575757;
  text-align: center;
  line-height: 1.25;
}

/* CTA buttons */
.services-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.services-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.services-btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.3);
}

.services-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.services-btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ── Services responsive ── */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .services-cta {
    flex-direction: column;
    width: 100%;
  }

  .services-btn-primary,
  .services-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SOLUTIONS SECTION — solutions.css
   "Complete Marketing Solutions For Authors"
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

/* ── Section shell ── */
.solutions {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: "Raleway", sans-serif;
  overflow: hidden;
  background: linear-gradient(144.86deg, #d013ad 1.03%, #ff680a 79.34%);
}

/* Main row: flex, full viewport width */
.solutions-row {
  display: flex;
  flex-direction: row;
  min-height: 620px;
}
.solutions-chat-bubble img {
  width: 150px;
  height: 150px;
  z-index: 9999999;
  overflow: visible;
}
/* Container: caps left side at 1200px, pushes from left edge */
.solutions-container {
  /* Left column = 38% of 1200px = 456px, but we use flex so it sizes naturally */
  flex: 0 0 600px; /* fixed width matching ~38% of 1200px */
  max-width: 600px;
  /* Push it to align with 1200px center: auto left margin up to (viewport - 1200px) / 2 */
  margin-left: max(0px, calc((100vw - 1200px) / 2));
  display: flex;
}

/* ============================================================
   LEFT PANEL — gradient background
   ============================================================ */

.solutions-left {
  flex: 1;
  /* background: linear-gradient(160deg, #ff8c00 0%, #e8450a 40%, #c9267a 100%); */
  display: flex;
  align-items: center;
  padding: 52px 44px 52px 52px;
  position: relative;
  z-index: 2;
}

/* Soft inner glow on left panel */
.solutions-left::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 260px;
  height: 260px;
  background: rgba(255, 200, 80, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.solutions-content {
  position: relative;
  z-index: 1;
}

/* Heading */
.solutions-heading {
  font-family: "Raleway", sans-serif;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 28px;
}

.solutions-heading-light {
  font-weight: 400;
  font-size: 45px;
  display: block;
  margin-bottom: 4px;
  opacity: 0.95;
}

.solutions-heading strong {
  font-weight: 600;
  font-size: 66px;
  display: block;
  line-height: 1.1;
}

/* Feature list */
.solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solutions-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.3;
}

.solutions-arrow {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================================
   RIGHT PANEL — fills all remaining width beyond left column
   ============================================================ */

.solutions-right {
  flex: 1; /* takes all remaining width — bleeds to right edge */
  background: url(/assets/marketing-soltion-pic.webp);
  position: relative;
  overflow: hidden;
  min-height: 380px;
      background-position: top center;
    background-size: cover;
}

/* Floating icon labels */
.solutions-float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fi {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.fi small {
  font-family: "Raleway", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Sparkle stars */
.fi-star1,
.fi-star2,
.fi-star3 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Person image */
.solutions-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.solutions-person img {
  height: 100%;
  max-height: 400px;
  width: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Floating chat bubble (bottom-right of right panel) */
.solutions-chat-bubble {
  position: absolute;
  bottom: 48px;
  right: 80px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #e040b0 0%, #c4196a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  animation: floatBubble 3s ease-in-out infinite;
  overflow: visible;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   BOTTOM CTA BAR — full viewport width
   ============================================================ */

.solutions-cta-bar {
  width: 100%;
  background: #ff9000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px 24px;
  flex-wrap: wrap;
  border-top: 2px solid white;
}

.solutions-btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.solutions-btn-chat:hover {
  background: #333;
  transform: translateY(-2px);
}

.solutions-btn-consult {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.solutions-btn-consult:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
  .solutions-row {
    flex-direction: column;
  }

  .solutions-container {
    flex: none;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .solutions-left {
    padding: 44px 32px;
  }

  .solutions-right {
    min-height: 300px;
  }

  .solutions-person img {
    max-height: 300px;
  }

  .fi small {
    display: none;
  }
}

@media (max-width: 500px) {
  .solutions-chat-bubble img {
    width: 70px;
    height: 70px;
}
  .solutions-left {
    padding: 36px 24px;
  }

  .solutions-heading strong {
    font-size: clamp(26px, 8vw, 38px);
  }

  .solutions-cta-bar {
    flex-direction: column;
    gap: 12px;
  }

  .solutions-btn-chat,
  .solutions-btn-consult {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ============================================================
   MARKETING PLAN SECTION — marketing-plan.css
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

.mplan {
  background: #fefbd8;
  padding: 70px 0 80px;
  font-family: "Raleway", sans-serif;
}

.mplan-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ── Heading ── */
.mplan-heading {
  font-family: "Raleway", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
}

.mplan-heading-accent {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #f47c20;
  font-size: 60px;
}

/* ── Form ── */
.mplan-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mplan-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

/* Input fields */
.mplan-input {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #ffffff;
  border: 1.5px solid #f18624;
  border-radius: 8px;
  padding: 13px 16px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
  min-width: 0;
}

.mplan-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.mplan-input:focus {
  border-color: #f47c20;
  box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.1);
}

/* Submit button — fills third slot of row 2 */
.mplan-submit {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: #1a1a1a;
  border: none;
  border-radius: 15px;
  padding: 13px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  width: 100%;
  min-width: 0;
}

.mplan-submit:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ── CTA buttons ── */
.mplan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mplan-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47c20;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.mplan-btn-primary:hover {
  background: #ff9a45;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.3);
}

.mplan-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.mplan-btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 2 columns, submit spans full width */
@media (max-width: 900px) {
  .mplan-row {
    grid-template-columns: 1fr 1fr;
  }

  .mplan-submit {
    grid-column: 1 / -1;
  }
}

/* Large mobile — single column */
@media (max-width: 600px) {
  .mplan {
    padding: 52px 0 60px;
  }

  .mplan-inner {
    gap: 32px;
  }

  .mplan-row {
    grid-template-columns: 1fr;
  }

  .mplan-submit {
    grid-column: auto;
  }
}

/* Small mobile — stack CTA buttons */
@media (max-width: 480px) {
  .mplan-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .mplan-btn-primary,
  .mplan-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ============================================================
   SUCCESS STORIES SECTION — success-stories.css
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

.stories {
  background: #ffffff;
  padding: 72px 0 80px;
  font-family: "Raleway", sans-serif;
}

.stories-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* ── Heading ── */
.stories-heading {
  font-family: "Raleway", sans-serif;
  font-size: 50px;
  font-weight: 300;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.2;
}

.stories-heading-accent {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #f47c20;
  font-size: 66px;
}

/* ── Filter tabs ── */
.stories-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  border-radius: 8px;
  padding: 6px 10px;
}

.stories-filter {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  background: transparent;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
  white-space: nowrap;
}

.stories-filter:hover {
  color: #1a1a1a;
  background: #f5f5f5;
}

.stories-filter.active {
  color: #000000;
  font-weight: 600;
  border: 1px solid #f47c20;
}

/* ── Book grid — 4 columns ── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

/* Book card */
.book-card {
  border-radius: 0px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #f0f0f0;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    opacity 0.25s;
  cursor: pointer;
}

.book-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.book-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hidden state (filter) */
.book-card.hidden {
  display: none;
}

/* ── CTA buttons ── */
.stories-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.stories-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47c20;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.stories-btn-primary:hover {
  background: #ff9a45;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.3);
}

.stories-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.stories-btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 3 columns */
@media (max-width: 960px) {
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small tablet — 2 columns */
@media (max-width: 640px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stories-filters {
    justify-content: center;
  }
}

/* Mobile — stack CTA */
@media (max-width: 480px) {
  .stories {
    padding: 52px 0 60px;
  }

  .stories-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .stories-btn-primary,
  .stories-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ============================================================
   STRATEGY SECTION — strategy.css
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

.strategy {
  background: linear-gradient(144.86deg, #d013ad 1.03%, #ff680a 79.34%);
  padding: 64px 0 72px;
  font-family: "Raleway", sans-serif;
  overflow: hidden;
  position: relative;
}

.strategy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ── Heading ── */
.strategy-heading {
  font-family: "Raleway", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}

.strategy-heading strong {
  font-weight: 600;
  font-size: 63px;
}

/* ── Subtext ── */
.strategy-sub {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  line-height: 1.6;
  margin: 30px 0;
}

/* ── Feature badges ── */
.strategy-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.strategy-badges li {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 6px;
}

.strategy-check {
  font-size: 22px;
  color: #000000;
  font-weight: 800;
}

/* ── Illustration wrapper ── */
.strategy-illustration {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 10px 0 4px;
}
.strategy-illustration img {
  width: 100%;
}
/* Background blobs */
.strat-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.strat-blob-left {
  width: 260px;
  height: 260px;
  top: 10%;
  left: -20px;
}

.strat-blob-right {
  width: 300px;
  height: 300px;
  top: 5%;
  right: -10px;
}

.strat-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
}

/* ── Call Now ── */
.strategy-call {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.strategy-call-label {
  font-weight: 600;
  opacity: 0.9;
}

.strategy-call-number {
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.strategy-call-number:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ── CTA buttons ── */
.strategy-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .strategy-illustration {
    max-width: 560px;
  }

  .strategy-badges {
    gap: 8px 18px;
  }
}

@media (max-width: 560px) {
  .strategy {
    padding: 48px 0 56px;
  }

  .strategy-inner {
    gap: 16px;
  }

  .strategy-illustration {
    max-width: 100%;
  }

  .strategy-call {
    font-size: 16px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .strategy-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding-left: 16px;
  }

  .strategy-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .strategy-btn-primary,
  .strategy-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ============================================================
   PRICING SECTION — pricing.css
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

.pricing {
  background: #fff;
  padding: 72px 0 80px;
  font-family: "Raleway", sans-serif;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

/* ── Header ── */
.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.pricing-heading {
  font-family: "Raleway", sans-serif;
  font-size: 55px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
}

.pricing-heading-accent {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #f47c20;
  font-size: 63x px;
}

.pricing-sub {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  max-width: 1100px;
  text-align: center;
}

/* ── Cards grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  align-items: start;
}

/* ── Base card ── */
.pricing-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

/* Featured card — slightly taller via padding */
.pricing-card-featured {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.14);
}

.pricing-card-featured:hover {
  transform: translateY(-8px);
}

/* ── Card top (coloured header) ── */
.pricing-card-top {
  padding: 28px 28px 24px;
  border-radius: 16px 16px 0px 0px;
}

.top-silver {
  background: #4b83d8;
}

.top-gold {
  background: #ce3a97;
}

.top-platinum {
  background: #893ace;
}

.pricing-plan-name {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.pricing-starting {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.pricing-price {
  font-family: "Archivo", sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-currency {
  font-size: 44px;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-per {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin-left: 2px;
}

.pricing-label {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  text-transform: capitalize;
  letter-spacing: 0px;
}

/* ── Card body ── */
.pricing-card-body {
  padding: 24px 28px 32px;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
}

/* CTA button inside card */
.pricing-cta-btn {
  display: block;
  width: max-content;
  text-align: left;
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 24px;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.pricing-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-silver {
  background: #4B83D8;
}
.btn-gold {
  background: #CE3A97;
}
.btn-platinum {
  background: #893ACE;
}

/* Feature list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
font-family: "Archivo", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5; 
}

/* Coloured dot per plan */
.feat-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 4px;
}

.dot-silver {
  background: #4a90d9;
}
.dot-gold {
  background: #e0407a;
}
.dot-platinum {
  background: #7c5cbf;
}

/* ── Bottom CTA ── */
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47c20;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.pricing-btn-primary:hover {
  background: #ff9a45;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.3);
}

.pricing-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.pricing-btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 2 columns (Gold card spans full width or first) */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gold (featured) spans both columns on tablet */
  .pricing-card-featured {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }
}

/* Mobile — single column */
@media (max-width: 580px) {
  .pricing {
    padding: 52px 0 60px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    grid-column: auto;
    max-width: 100%;
  }

  .pricing-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .pricing-btn-primary,
  .pricing-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}




/* ============================================================
   TESTIMONIALS SECTION — testimonials.css
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

.testi {
  position: relative;
  padding: 72px 0 80px;
  font-family: 'Raleway', sans-serif;
  overflow: hidden;
}

/* Background image + dark overlay */
.testi-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/testimonial-bg.webp');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.testi-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(10 10 10 / 14%);
}

/* Inner container */
.testi-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* ── Eyebrow ── */
.testi-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1.5px;
    text-transform: capitalize;
    text-align: center;
}

/* ── Heading ── */
.testi-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 55px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  margin-top: -8px;
}

.testi-heading-accent {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #F18624;
    font-size: 66px;
}

/* ── Cards grid ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 8px;
}

/* ── Base card ── */
.testi-card {
  border-radius: 55px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.testi-card:hover {
  transform: translateY(-4px);
}

/* Active / orange card */
.testi-card-active {
  background: #f47c20;
}

.testi-card-active .testi-quote {
  color: #ffffff;
}

.testi-card-active .testi-author-name {
  color: #ffffff;
}

/* White cards */
.testi-card-white {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.testi-card-white .testi-quote {
  color: #333333;
}

.testi-card-white .testi-author-name {
  color: #1a1a1a;
}

/* ── Quote text ── */
.testi-quote {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    flex: 1;
}

/* ── Author row ── */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-avatar-orange {
  background: #f47c20;
}

/* Override avatar bg on active card to a darker shade */
.testi-card-active .testi-avatar-orange {
  background: rgba(255, 255, 255, 0.25);
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testi-author-name {
    position: relative;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: #000;
    color: #fff;
    padding: 8px 38px 8px 18px;
    border-radius: 12px;
    display: inline-block;
}

/* right rounded extension */
.testi-author-name::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 80.5%;
    transform: translateY(-50%);
    width: 60px;
    height: 22px;
    background: #000;
    border-radius: 12px;
}

.testi-card-white .testi-author-name {
  color: white;
}

.testi-author-dash {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.testi-author-dash-dark {
  background: #f47c20;
}

/* ── CTA buttons ── */
.testi-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.testi-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47c20;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.testi-btn-primary:hover {
  background: #ff9a45;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.35);
}

.testi-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.testi-btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* First card (active) spans full width on tablet */
  .testi-card-active {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .testi {
    padding: 52px 0 60px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-card-active {
    grid-column: auto;
  }

  .testi-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .testi-btn-primary,
  .testi-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}



/* ============================================================
   BOOK SALES CTA SECTION — book-sales.css
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

.bsales {
  background: #FFF7CF;
  padding: 72px 0 80px;
  font-family: 'Raleway', sans-serif;
}

.bsales-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* ── Heading ── */
.bsales-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 55px;
    font-weight: 300;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

.bsales-heading-accent {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #F18624;
    font-size: 66px;
}

/* ── Form ── */
.bsales-form {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bsales-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bsales-input {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background: #ffffff;
    border: 1.5px solid #f18230;
    border-radius: 8px;
    padding: 16px 16px;
    outline: none;
    width: 100%;
    min-width: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bsales-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.bsales-input:focus {
  border-color: #f47c20;
  box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.1);
}

/* Submit row — centred */
.bsales-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 25px;
}

.bsales-submit {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: #1a1a1a;
    border: none;
    border-radius: 10px;
    padding: 13px 36px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.bsales-submit:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ── CTA buttons ── */
.bsales-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bsales-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47c20;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.bsales-btn-primary:hover {
  background: #ff9a45;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.3);
}

.bsales-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.bsales-btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
  .bsales {
    padding: 52px 0 60px;
  }

  .bsales-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bsales-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .bsales-btn-primary,
  .bsales-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}



/* ============================================================
   DISTRIBUTION SECTION — distribution.css
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

/* ══════════════════════════════════════════
   TOP — white background, heading + logos
══════════════════════════════════════════ */

.dist {
  font-family: 'Raleway', sans-serif;
}

.dist-top {
  background: #ffffff;
  padding: 68px 0 60px;
}

.dist-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ── Heading ── */
.dist-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 50px;
  font-weight: 300;
  color: #000;
  text-align: center;
  line-height: 1.25;
}

.dist-heading-accent {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 60px;
  color: #F18624;
}

.dist-sub {
font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 1.5;
}
.dist-logo-item img {
    width: 200px;
    height: 100px;
    object-fit: contain;
} 
/* ── Logo grid ── */
.dist-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
  width: 100%;
  max-width: 780px;
  margin-top: 16px;
  align-items: center;
  justify-items: center;
}
.dist-logos-2nd-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
    width: 100%;
    max-width: 580px;
    margin-top: 0;
    align-items: center;
    justify-items: center;
}
/* Last two logos centred in the second row */
.dist-logos .dist-logo-item:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: end;
}

.dist-logos .dist-logo-item:nth-child(5) {
  grid-column: 2 / 3;
  justify-self: start;
}

.dist-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.dist-logo-item:hover {
  opacity: 1;
}

.logo-svg {
  height: 36px;
  width: auto;
}

.logo-icon-svg {
  height: 52px;
  width: 52px;
}

/* ══════════════════════════════════════════
   BOTTOM — dark band: books + guarantee + form
══════════════════════════════════════════ */

.dist-bottom {
  background: #1a1a2e;
  position: relative;
  overflow: visible;
}

/* Subtle dark texture overlay */
.dist-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1400&q=40') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.dist-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px 56px;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Book mockups ── */
.dist-books {
  position: relative;
  height: 200px;
}

.dist-book {
  position: absolute;
  overflow: hidden;
}

.dist-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Back book (slightly behind, tilted left) */
.dist-book-back {
    width: auto;
    height: auto;
    left: 20px;
    top: -175px;
    z-index: 9999999;
}

/* Front book (main, tablet-shaped) */
.dist-book-front {
  width: 148px;
  height: 196px;
  left: 130px;
  top: 0;
  border-radius: 10px;
  border: 6px solid #2a2a3e;
  z-index: 2;
  transform: perspective(400px) rotateY(-4deg);
}

/* ── Guarantee text ── */
.dist-guarantee {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dist-guarantee-heading {
font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
}

.dist-guarantee-accent {
font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 60px;
    color: #F18624;
}

.dist-guarantee-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dist-gbtn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47c20;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.dist-gbtn-primary:hover {
  background: #ff9a45;
  transform: translateY(-2px);
}

.dist-gbtn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.dist-gbtn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ── Footer form bar ── */
.dist-form-bar {
  padding: 18px 0 50px;
  position: relative;
  z-index: 1;
}

.dist-form-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

.dist-form-input {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    background: rgb(255 255 255);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    padding: 13px 14px;
    outline: none;
    width: 100%;
    min-width: 0;
    transition: border-color 0.2s, background 0.2s;
}

.dist-form-input::placeholder {
  color: rgba(3, 3, 3, 0.45);
  font-weight: 400;
}

.dist-form-input:focus {
  border-color: #f47c20;
  background: rgba(255, 255, 255, 0.8);
}

.dist-form-submit {
font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: #F18624;
    border: none;
    border-radius: 42px;
    padding: 12px 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}

.dist-form-submit:hover {
  background: #ff9a45;
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .dist-bottom-inner {
    grid-template-columns: 280px 1fr;
    gap: 10px;
  }

  .dist-logos {
    gap: 10px;
  }
  .dist-logos-2nd-row {
    gap: 10px;
  }
  .dist-logo-item img {
    width: 150px;
    height: 70px;
    object-fit: contain;
}
}

@media (max-width: 768px) {
  .dist-book-back {

    top: -120px;
}
    h2 span {
        line-height: 1.1 !important;
    }
  .dist-bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .dist-books {
    width: 300px;
    height: 180px;
  }

  .dist-guarantee {
    align-items: center;
  }

  .dist-guarantee-btns {
    justify-content: center;
  }

  .dist-form-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .dist-form-submit {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .dist-logos {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }

  .dist-logos .dist-logo-item:nth-child(4),
  .dist-logos .dist-logo-item:nth-child(5) {
    grid-column: auto;
    justify-self: center;
  }

  .dist-form-bar-inner {
    grid-template-columns: 1fr;
  }
}



/* ============================================================
   FOOTER — footer.css
   Font: Raleway (load via Google Fonts in your HTML head)
   ============================================================ */

.footer {
  background: #111111;
  padding: 64px 0 0;
  font-family: 'Raleway', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* ── Brand name ── */
.footer-brand {
font-family: 'Raleway', sans-serif;
    font-size: 55px;
    font-weight: 300 !important;
    color: #ffffff;
    text-align: center;
}

/* ── Primary nav ── */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-nav-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  user-select: none;
}

/* ── Secondary nav ── */
.footer-nav-secondary {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-secondary a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-secondary a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Call Now ── */
.footer-call {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.footer-call-label {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f47c20;
}

.footer-call-number {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-call-number:hover {
  color: #f47c20;
}

/* ── CTA buttons ── */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47c20;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.footer-btn-primary:hover {
  background: #ff9a45;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.3);
}

.footer-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2a2a2a;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.footer-btn-secondary:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
}

/* ── Social icons ── */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
    background: rgb(255 255 255);
    color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.footer-social-icon:hover {
  background: #f47c20;
  transform: translateY(-2px);
}

/* ── Copyright bar ── */
.footer-copy {
    width: 100%;
    text-align: center;
    font-family: 'Roboto';
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    padding: 18px 24px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 560px) {
  .footer {
    padding: 48px 0 0;
  }

  .footer-call {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .footer-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .footer-btn-primary,
  .footer-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}