/*
Theme Name: Auto Drive Info
Theme URI: https://autodriveinfo.com
Author: Buraq Tech LLC
Author URI: https://buraqtech.com
Description: Custom WordPress theme for Auto Drive Info - Vehicle History Reports
Version: 1.0
Text Domain: autodriveinfo
*/

/* ============================
   GLOBAL RESET & BASE
============================ */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1A2740;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
}


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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   HEADER
============================ */
.asl-header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.asl-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo - Left */
.asl-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.asl-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.asl-logo a {
  display: flex;
  align-items: center;
}

/* Nav - Center */
.asl-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.asl-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.asl-nav li a {
  color: #1c2e28;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.asl-nav li a:hover,
.asl-nav li a.active {
  color: #0f5132;
}

.asl-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #C8A951;
  transition: width 0.3s ease;
}

.asl-nav li a:hover::after {
  width: 100%;
}

/* Right side spacer (keeps nav truly centered) */
.asl-header-spacer {
  flex: 0 0 auto;
  width: 50px;
}

/* Mobile Toggle */
.asl-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.asl-mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1c2e28;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.asl-mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.asl-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.asl-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu */
.asl-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  z-index: 1100;
  padding: 90px 30px 30px;
}

.asl-mobile-menu.active {
  right: 0;
}

.asl-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.asl-mobile-menu ul li a {
  font-size: 18px;
  font-weight: 600;
  color: #1c2e28;
  display: block;
}

.asl-mobile-menu ul li a:hover {
  color: #0f5132;
}

.asl-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1050;
}

.asl-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .asl-nav-wrap,
  .asl-header-spacer {
    display: none;
  }

  .asl-mobile-toggle {
    display: flex;
  }

  .asl-logo img {
    height: 40px;
  }
}

/* ============================
   GENERIC PAGE
============================ */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1c2e28;
  margin-bottom: 20px;
}

.page-content p {
  margin-bottom: 16px;
  color: #4f5f58;
}

/* ============================
   FOOTER
============================ */
.asl-footer {
  background: #171717;
  color: #fff;
  padding: 60px 20px 30px;
}

.asl-footer-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #eee;
  padding: 25px 10px;
}

.footer-logo-img {
  width: 250px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-logo p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #c0c0c0;
  transition: all 0.3s;
}

.footer-links ul li a:hover {
  color: #C8A951;
  transform: translateX(3px);
  display: inline-block;
}

.footer-contact p {
  font-size: 14px;
  margin: 6px 0;
  color: #c0c0c0;
}

.footer-contact a {
  color: #c0c0c0;
}

.footer-contact a:hover {
  color: #C8A951;
}

.footer-newsletter p {
  font-size: 14px;
  color: #c0c0c0;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 300px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.newsletter-form input[type="email"]::placeholder {
  color: #888;
}

.newsletter-form button {
  background: #0f5132;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.newsletter-form button:hover {
  background: #198754;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 14px;
  color: #c0c0c0;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .asl-footer-container {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .asl-footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* ============================
   HERO SECTION
============================ */
.asl-hero-bg {
  width: 100%;
  height: 460px;
  background-image: url('https://cdn.shopify.com/s/files/1/0785/8919/8594/files/20251107_1753_Professional_Auto_Inspection_simple_compose_01k9f5ynexfez82j29sxf3kyd1.png?v=1762520118');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0px 25px 45px rgba(0, 60, 40, 0.35);
  overflow: hidden;
}

.asl-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 25, 0.65);
  backdrop-filter: blur(1px);
}

.asl-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding: 0 20px;
}

.asl-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.asl-hero-content p {
  font-size: 19px;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

.asl-btn {
  background: linear-gradient(90deg, #C8A951, #E6C873);
  color: #1a1a1a !important;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 45px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.asl-btn:hover {
  transform: translateY(-3px);
}

.asl-btn::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.4);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0;
}

.asl-btn:active::after {
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  from { opacity: 1; }
  to {
    opacity: 0;
    transform: scale(25);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .asl-hero-bg {
    height: 360px;
  }
  .asl-hero-content h1 {
    font-size: 28px;
  }
  .asl-hero-content p {
    font-size: 16px;
  }
  .asl-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* ============================
   FEATURES SECTION
============================ */
.asl-features-section {
  padding: 60px 0;
  text-align: center;
}

.asl-features-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c2e28;
}

.asl-features-subtitle {
  font-size: 16px;
  color: #4f5f58;
  margin-bottom: 45px;
}

.asl-features-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.asl-feature-card {
  background: #fff;
  border-radius: 20px;
  width: 300px;
  padding: 25px;
  box-shadow: 0 0 0 2px #e3efe8;
  transition: .35s;
  position: relative;
}

.asl-feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0,80,50,0.15);
  border-color: transparent;
}

.asl-feature-icon img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.asl-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
  color: #0f5132;
}

.asl-feature-card p {
  font-size: 15px;
  color: #5a6b63;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .asl-feature-card {
    width: 90%;
  }
  .asl-features-title {
    font-size: 26px;
  }
}

/* ============================
   HOW IT WORKS
============================ */
.asl-how-section {
  padding: 70px 0;
  background: white;
  text-align: center;
}

.asl-how-title {
  font-size: 32px;
  font-weight: 800;
  color: #1c2e28;
  margin-bottom: 10px;
}

.asl-how-subtitle {
  font-size: 16px;
  color: #4f5f58;
  margin-bottom: 45px;
}

.asl-how-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.asl-how-card {
  background: #f4faf6;
  width: 300px;
  padding: 35px 22px;
  border-radius: 20px;
  position: relative;
  transition: .35s;
  border: 2px solid transparent;
  cursor: default;
}

.asl-how-card:hover {
  transform: translateY(-8px);
  border-color: #0f5132;
  box-shadow: 0 15px 35px rgba(0,80,50,0.18);
}

.asl-how-number {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #0f5132;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 15px;
  transition: .35s;
}

.asl-how-card:hover .asl-how-number {
  background: #198754;
}

.asl-how-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f5132;
  margin-bottom: 10px;
}

.asl-how-card p {
  font-size: 15px;
  color: #5a6b63;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .asl-how-card {
    width: 90%;
  }
}

/* ============================
   PRICING SECTION
============================ */
.asl-pricing-section {
  text-align: center;
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1c2e28;
}

.pricing-sub {
  font-size: 18px;
  opacity: .85;
  max-width: 780px;
  margin: 0 auto 50px;
  line-height: 1.55;
}

.pricing-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  width: 370px;
  background: #fff;
  padding: 35px 25px;
  border-radius: 22px;
  border: 1.5px solid #e3efe8;
  transition: .35s;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0px 25px 45px rgba(0,80,50,.22);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(120deg,#0f5132,#C8A951,#E6C873);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: .4s;
  pointer-events: none;
}

.pricing-card:hover::before {
  opacity: 1;
}

.compare-mode .pricing-card:not(.active-card):hover ~ .pricing-card,
.compare-mode .pricing-card:not(.active-card) {
  opacity: .5;
  transform: scale(.97);
}

.active-card {
  transform: translateY(-16px) scale(1.06);
  box-shadow: 0px 35px 55px rgba(0,80,50,.30);
  border: 3px solid #0f5132;
}

.fade-anim .pricing-card:nth-child(1) { animation: fadeUp .8s .2s forwards; }
.fade-anim .pricing-card:nth-child(2) { animation: fadeUp .8s .4s forwards; }
.fade-anim .pricing-card:nth-child(3) { animation: fadeUp .8s .6s forwards; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  text-align: left;
  font-size: 15px;
  color: #1A2740;
}

.pricing-card ul li {
  border-bottom: 1px dashed #dbe9e1;
  padding: 7px 0;
}

.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card .cross { opacity: .35; }

.ribbon-edge {
  position: absolute;
  width: 8px;
  height: 50px;
  background: #0f5132;
  left: 0;
  top: 0;
  border-bottom-right-radius: 12px;
}

.ribbon-edge.pulse {
  animation: pulseAnim 1.4s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.corner-ribbon {
  position: absolute;
  right: -35px;
  top: 18px;
  background: #0f5132;
  color: #fff;
  padding: 6px 45px;
  font-size: 13px;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 5;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.price-badge {
  display: inline-block;
  background: rgba(200,169,81,0.15);
  color: #8a6b1f;
  padding: 8px 18px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 14px;
  border: 1.5px solid #C8A951;
  transition: .3s;
  backdrop-filter: blur(4px);
}

.pricing-card:hover .price-badge {
  background: #C8A951;
  color: #1a1a1a;
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(200,169,81,.45);
}

.tagline {
  font-size: 14px;
  color: #5a6b63;
  margin-bottom: 18px;
}

.pricing-btn {
  display: inline-block;
  background: linear-gradient(90deg,#C8A951,#E6C873);
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 38px;
  font-weight: 600;
  font-size: 16px;
  transition: .3s;
}

.pricing-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 25px rgba(200,169,81,.32);
}

.pricing-btn.btn-glow {
  box-shadow: 0 0 15px rgba(200,169,81,.5);
}

@media (max-width: 768px) {
  .pricing-card {
    width: 92%;
    transform: none !important;
  }
}

/* ============================
   COMPARISON TABLE
============================ */
.asl-compare-wrapper {
  width: 100%;
  padding: 70px 0;
  background: #fff;
}

.asl-compare-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.asl-compare-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1c2e28;
  margin-bottom: 10px;
}

.asl-compare-header p {
  font-size: 18px;
  color: #4f5f58;
  line-height: 1.6;
}

.asl-compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 14px;
  padding: 0 20px;
}

.asl-compare-table-wrap::-webkit-scrollbar {
  display: none;
}

.asl-compare-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #f4faf6;
  margin: auto;
}

.asl-compare-table thead th {
  position: sticky;
  top: 0;
  background: #e3efe8;
  z-index: 10;
  border-bottom: 2px solid #cfe3d7;
}

.asl-compare-table td:nth-child(2),
.asl-compare-table th:nth-child(2) {
  box-shadow: 0 0 14px rgba(15,81,50,0.25) inset;
  font-weight: 700;
  color: #1c2e28;
}

.asl-compare-table th,
.asl-compare-table td {
  padding: 16px;
  border-bottom: 1px solid #dbe9e1;
  text-align: center;
  font-size: 16px;
  white-space: nowrap;
}

.first-col {
  text-align: left;
  white-space: normal;
  max-width: 240px;
}

.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}

.check-icon {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%230f9d58' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.173 13.727L1.146 8.7l1.414-1.414 3.613 3.613 7.292-7.292 1.414 1.414z'/></svg>");
}

.cross-icon {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23c0392b' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M1.414 0L0 1.414 6.586 8 0 14.586 1.414 16 8 9.414 14.586 16 16 14.586 9.414 8 16 1.414 14.586 0 8 6.586 1.414 0z'/></svg>");
}

.red-cross {
  filter: brightness(0) saturate(100%) invert(17%) sepia(96%) saturate(3284%) hue-rotate(350deg) brightness(90%) contrast(101%);
}

@media (max-width: 768px) {
  .asl-compare-header h1 { font-size: 28px; }
  .asl-compare-header p { font-size: 15px; }
  .asl-compare-table {
    min-width: auto;
    width: 100%;
  }
  .asl-compare-table-wrap {
    overflow-x: hidden;
    padding: 0;
  }
  .asl-compare-table th,
  .asl-compare-table td {
    font-size: 12px;
    padding: 8px 4px;
    white-space: normal;
  }
  .asl-compare-table thead th {
    white-space: normal;
    line-height: 1.2;
    padding: 6px 4px;
  }
  .first-col {
    font-size: 12px;
    max-width: 35%;
    text-align: left;
    white-space: normal;
    word-break: break-word;
  }
  .asl-compare-table td:not(.first-col) {
    width: 15%;
  }
  .asl-highlight {
    width: 25%;
  }
  .icon {
    width: 14px;
    height: 14px;
  }
}

/* ============================
   FAQ SECTION
============================ */
.asl-faq-wrapper {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.asl-faq-header h2 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  color: #1c2e28;
  margin-bottom: 12px;
}

.asl-faq-header p {
  font-size: clamp(14px, 3vw, 16px);
  color: #4f5f58;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.asl-faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e3efe8;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 4px 20px rgba(0,80,50,0.08);
  border-radius: 8px;
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  background: #f4faf6;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1c2e28;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9f5ee;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  color: #5a6b63;
  line-height: 1.6;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 12px 20px 18px;
}

@media (max-width: 768px) {
  .asl-faq-wrapper { padding: 40px 15px; }
  .faq-question { font-size: 14px; padding: 14px 16px; }
  .faq-answer { font-size: 14px; }
}

/* ============================
   REFUND REQUEST FORM
============================ */
.chargeback-section {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
}

.chargeback-title {
  text-align: center;
  margin-bottom: 40px;
}

.chargeback-title h2 {
  font-size: 32px;
  color: #1f6f43;
}

.chargeback-title p {
  color: #4d8c66;
  font-size: 14px;
}

.chargeback-form {
  background: #f6fff9;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #cceedd;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.chargeback-form .form-group {
  margin-bottom: 20px;
}

.chargeback-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #1f6f43;
  font-weight: 600;
}

.chargeback-form .form-group input,
.chargeback-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #b7e4c7;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: 0.3s;
  font-family: inherit;
}

.chargeback-form .form-group input:focus,
.chargeback-form .form-group textarea:focus {
  border-color: #f4b400;
  box-shadow: 0 0 0 2px rgba(244,180,0,0.15);
}

.chargeback-form .submit-btn {
  background: linear-gradient(90deg, #1f6f43, #f4b400);
  color: white;
  padding: 14px;
  border: none;
  width: 100%;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.chargeback-form .submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.thank-you {
  display: none;
  text-align: center;
  background: #e6fff2;
  padding: 30px;
  border-radius: 12px;
  color: #1f6f43;
}

/* ============================
   LEGAL / POLICY PAGES
============================ */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.policy-content h1 {
  font-size: 34px;
  font-weight: 800;
  color: #1c2e28;
  margin-bottom: 8px;
}

.policy-content .policy-updated {
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f5132;
  margin-top: 35px;
  margin-bottom: 12px;
}

.policy-content p {
  font-size: 15px;
  color: #4f5f58;
  line-height: 1.7;
  margin-bottom: 14px;
}

.policy-content ul {
  margin: 0 0 14px 20px;
  color: #4f5f58;
  font-size: 15px;
  line-height: 1.8;
}

.policy-content ul li {
  margin-bottom: 6px;
}

.policy-content a {
  color: #0f5132;
  font-weight: 600;
}

.policy-content a:hover {
  color: #C8A951;
}

/* ============================
   CONTACT PAGE
============================ */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h1 {
  font-size: 34px;
  font-weight: 800;
  color: #1c2e28;
  margin-bottom: 10px;
}

.contact-section > p {
  font-size: 16px;
  color: #4f5f58;
  margin-bottom: 35px;
}

.contact-info-box {
  background: #f4faf6;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  margin-bottom: 35px;
}

.contact-info-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f5132;
  margin-top: 18px;
  margin-bottom: 8px;
}

.contact-info-box h3:first-child {
  margin-top: 0;
}

.contact-info-box p,
.contact-info-box ul {
  font-size: 15px;
  color: #4f5f58;
  line-height: 1.7;
  margin: 0 0 8px 20px;
}

.contact-info-box > p {
  margin-left: 0;
}

.contact-form {
  background: #f6fff9;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #cceedd;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #1f6f43;
  font-weight: 600;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #b7e4c7;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: 0.3s;
  font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #f4b400;
  box-shadow: 0 0 0 2px rgba(244,180,0,0.15);
}

.contact-form .submit-btn {
  background: linear-gradient(90deg, #1f6f43, #f4b400);
  color: white;
  padding: 14px;
  border: none;
  width: 100%;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form .submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
