/* ============================================
   BOAIS / BackOfficeDost — Website Styles
   Strategy B: Free Audit Funnel
   ============================================ */

:root {
  --navy: #1a2744;
  --navy-light: #243354;
  --orange: #e8852e;
  --orange-hover: #d0741f;
  --orange-light: #fef3e8;
  --green-wa: #25D366;
  --green-wa-hover: #1eba57;
  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-100: #e8ecf1;
  --gray-200: #d1d8e0;
  --gray-400: #8896a7;
  --gray-600: #5a6a7e;
  --gray-800: #2d3a4a;
  --text: #1e293b;
  --text-light: #64748b;
  --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 39, 68, 0.1);
  --shadow-lg: 0 8px 32px rgba(26, 39, 68, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

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

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

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

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}

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

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
}

.btn-full {
  width: 100%;
}

/* ===== NAVIGATION ===== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.logo-accent {
  color: var(--orange);
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-hover);
  color: var(--white) !important;
  transform: translateY(-1px);
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */

.hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--orange-light) 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
}

/* Audit Preview Card */
.audit-preview-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}

.audit-preview-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

.audit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.audit-item:last-child {
  margin-bottom: 0;
}

.audit-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.audit-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.audit-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== RESULTS / SOCIAL PROOF ===== */

.results {
  padding: 80px 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.result-industry {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.result-problem {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.result-solution {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.result-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.result-outcome {
  display: flex;
  gap: 24px;
}

.result-stat {
  display: flex;
  flex-direction: column;
}

.result-stat .stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.result-stat .stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Testimonials */
.testimonial-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--orange);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-style: normal;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== HOW IT WORKS ===== */

.how-it-works {
  padding: 80px 0;
  background: var(--gray-50);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.step-time {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 12px;
  border-radius: 12px;
}

.step-connector {
  width: 48px;
  flex-shrink: 0;
  color: var(--gray-200);
  padding-top: 52px;
}

.steps-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== SERVICES ===== */

.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 4px 12px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
}

.services-custom {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.services-custom p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 16px;
}

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

.pricing {
  padding: 80px 0;
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

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

.pricing-featured {
  border-color: var(--orange);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pricing-tier {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 2px;
}

.per {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--gray-600);
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* ===== WHY US ===== */

.why-us {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.why-item {
  text-align: center;
  padding: 20px 12px;
}

.why-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--orange);
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== ABOUT ===== */

.about {
  padding: 80px 0;
  background: var(--gray-50);
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 20px;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.about-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== BOOK AUDIT ===== */

.book-audit {
  padding: 80px 0;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.audit-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.audit-info-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.audit-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-item svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--orange);
  margin-top: 1px;
}

.check-item span {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.audit-alt {
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.audit-alt p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Audit Form */
.audit-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238896a7' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 133, 46, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 32px 24px;
}

.form-success h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 32px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  text-align: center;
}

.footer-brand .logo-main {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.footer-address,
.footer-gst {
  font-size: 0.82rem !important;
  color: var(--gray-400) !important;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  gap: 24px;
}

.footer-contact a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-400);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  text-align: center;
}

/* ===== FLOATING WHATSAPP ===== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

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

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

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

  .audit-preview-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .results-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 48px;
  }

  .testimonial-strip {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
    width: 40px;
    height: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audit-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 48px auto 0;
  }

  .about-stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 110px 0 60px;
  }

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

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .result-outcome {
    flex-direction: column;
    gap: 12px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 48px auto 0;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links,
  .footer-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .hero-sub {
    font-size: 0.95rem;
  }

  .audit-form {
    padding: 20px;
  }

  .audit-preview-card {
    padding: 24px 20px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
