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

/* ============================
   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;
}

/* ============================
   BRAND COLORS (Auto Drive Scan)
   Primary Green : #1a7c3e
   Dark Blue     : #1a2e5c
   Light Green   : #e8f5ee
   Border Green  : #c8e6d4
   Gold Accent   : #C8A951
============================ */

/* ============================
   HEADER
============================ */
.asl-header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.asl-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.asl-logo { display: flex; align-items: center; flex: 0 0 auto; }
.asl-logo img { height: 55px; width: auto; object-fit: contain; }
.asl-logo a { display: flex; align-items: 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: #1a2e5c;
  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: #1a7c3e; }
.asl-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #1a7c3e;
  transition: width 0.3s ease;
}
.asl-nav li a:hover::after { width: 100%; }

.asl-header-spacer { flex: 0 0 auto; width: 55px; }

/* 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: #1a2e5c; 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: #1a2e5c; display: block; }
.asl-mobile-menu ul li a:hover { color: #1a7c3e; }

.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: 42px; }
}

/* ============================
   HERO SECTION
============================ */
.asl-hero-bg {
  width: 100%;
  height: 480px;
  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,46,92,0.30);
  overflow: hidden;
}
.asl-hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,30,60,0.68);
  backdrop-filter: blur(1px);
}
.asl-hero-content {
  position: relative; z-index: 2;
  color: #fff;
  max-width: 780px;
  padding: 0 20px;
}
.asl-hero-content h1 {
  font-size: 46px; font-weight: 800;
  line-height: 1.2; margin-bottom: 18px;
}
.asl-hero-content p {
  font-size: 18px; opacity: 0.93;
  line-height: 1.65; margin-bottom: 32px;
  color: #fff;
}
.asl-btn {
  background: linear-gradient(90deg, #1a7c3e, #27ae60);
  color: #fff !important;
  padding: 15px 36px;
  font-size: 18px; font-weight: 700;
  border-radius: 45px;
  position: relative; overflow: hidden;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 8px 22px rgba(26,124,62,0.40);
}
.asl-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26,124,62,0.50); }
.asl-btn::after {
  content: ""; position: absolute;
  background: rgba(255,255,255,0.35);
  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: 380px; }
  .asl-hero-content h1 { font-size: 28px; }
  .asl-hero-content p { font-size: 15px; }
  .asl-btn { font-size: 16px; padding: 12px 26px; }
}

/* ============================
   FEATURES SECTION
============================ */
.asl-features-section { padding: 70px 0; text-align: center; background: #f8fdf9; }
.asl-features-title { font-size: 34px; font-weight: 800; margin-bottom: 10px; color: #1a2e5c; }
.asl-features-subtitle { font-size: 16px; color: #4f6070; margin-bottom: 50px; }
.asl-features-grid { display: flex; gap: 25px; justify-content: center; flex-wrap: wrap; }
.asl-feature-card {
  background: #fff;
  border-radius: 20px;
  width: 300px;
  padding: 30px 25px;
  box-shadow: 0 0 0 2px #c8e6d4;
  transition: .35s;
}
.asl-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(26,124,62,0.18);
}
.asl-feature-icon img { width: 65px; height: auto; margin: 0 auto 18px; display: block; }
.asl-feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #1a7c3e; }
.asl-feature-card p { font-size: 15px; color: #5a6b63; line-height: 1.55; }
@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: #fff; text-align: center; }
.asl-how-title { font-size: 34px; font-weight: 800; color: #1a2e5c; margin-bottom: 10px; }
.asl-how-subtitle { font-size: 16px; color: #4f6070; margin-bottom: 50px; }
.asl-how-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.asl-how-card {
  background: #f0f8f3;
  width: 300px; padding: 35px 22px;
  border-radius: 20px;
  transition: .35s;
  border: 2px solid transparent;
}
.asl-how-card:hover {
  transform: translateY(-8px);
  border-color: #1a7c3e;
  box-shadow: 0 15px 35px rgba(26,124,62,0.18);
}
.asl-how-number {
  width: 65px; height: 65px; border-radius: 50%;
  background: linear-gradient(135deg, #1a7c3e, #1a2e5c);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800;
  margin: 0 auto 18px;
  transition: .35s;
}
.asl-how-card:hover .asl-how-number { background: linear-gradient(135deg, #1a2e5c, #1a7c3e); }
.asl-how-card h3 { font-size: 20px; font-weight: 700; color: #1a2e5c; margin-bottom: 10px; }
.asl-how-card p { font-size: 15px; color: #5a6b63; line-height: 1.55; }
@media (max-width: 768px) { .asl-how-card { width: 90%; } }

/* ============================
   PRICING SECTION
============================ */
.asl-pricing-section {
  text-align: center; padding: 70px 20px;
  background: #f8fdf9;
}
.pricing-title { font-size: 38px; font-weight: 800; margin-bottom: 10px; color: #1a2e5c; }
.pricing-sub {
  font-size: 17px; opacity: .88;
  max-width: 780px; margin: 0 auto 55px;
  line-height: 1.6; color: #4f6070;
}
.pricing-grid { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.pricing-card {
  width: 360px; background: #fff;
  padding: 35px 28px; border-radius: 22px;
  border: 1.5px solid #c8e6d4;
  transition: .35s;
  position: relative; opacity: 0;
  transform: translateY(40px);
  overflow: hidden; z-index: 1;
}
.pricing-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0px 28px 50px rgba(26,46,92,.18);
}
.pricing-card::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 22px; padding: 2px;
  background: linear-gradient(120deg,#1a7c3e,#1a2e5c,#27ae60);
  -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) {
  opacity: .55; transform: scale(.97);
}
.active-card {
  transform: translateY(-18px) scale(1.05);
  box-shadow: 0px 38px 60px rgba(26,124,62,.28);
  border: 3px solid #1a7c3e;
}
.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: #1a2e5c;
}
.pricing-card ul li { border-bottom: 1px dashed #c8e6d4; 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: linear-gradient(180deg,#1a7c3e,#1a2e5c);
  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: linear-gradient(90deg,#1a7c3e,#1a2e5c);
  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; }
.card-top h3 { font-size: 22px; font-weight: 800; color: #1a2e5c; }

.price-badge {
  display: inline-block;
  background: rgba(26,124,62,0.10);
  color: #1a7c3e;
  padding: 8px 18px; font-size: 22px; font-weight: 700;
  border-radius: 14px; border: 1.5px solid #1a7c3e;
  transition: .3s; backdrop-filter: blur(4px);
}
.pricing-card:hover .price-badge {
  background: #1a7c3e; color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(26,124,62,.35);
}
.tagline { font-size: 14px; color: #5a6b63; margin-bottom: 20px; }

.pricing-btn {
  display: inline-block;
  background: linear-gradient(90deg,#1a7c3e,#1a2e5c);
  color: #fff; 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(26,124,62,.35);
}
.pricing-btn.btn-glow { box-shadow: 0 0 15px rgba(26,124,62,.5); }

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

/* ============================
   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: 34px; font-weight: 800; color: #1a2e5c; margin-bottom: 12px; }
.asl-compare-header p { font-size: 17px; color: #4f6070; line-height: 1.65; }

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

.asl-compare-table {
  width: 100%; min-width: 860px;
  border-collapse: collapse;
  background: #f0f8f3; margin: auto;
}
.asl-compare-table thead th {
  position: sticky; top: 0;
  background: #d4eedd; z-index: 10;
  border-bottom: 2px solid #b0d8c0;
  padding: 16px; font-size: 15px; font-weight: 700;
  color: #1a2e5c; text-align: center;
}
.asl-compare-table td:nth-child(2),
.asl-compare-table th:nth-child(2) {
  box-shadow: 0 0 16px rgba(26,124,62,0.22) inset;
  font-weight: 700; color: #1a2e5c;
}
.asl-compare-table th, .asl-compare-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #c8e6d4;
  text-align: center; font-size: 15px;
}
.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='%231a7c3e' 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>"); }

@media (max-width: 768px) {
  .asl-compare-header h1 { font-size: 24px; }
  .asl-compare-table th, .asl-compare-table td { font-size: 12px; padding: 8px 4px; }
  .first-col { font-size: 12px; max-width: 35%; word-break: break-word; }
  .icon { width: 14px; height: 14px; }
}

/* ============================
   FAQ SECTION
============================ */
.asl-faq-wrapper { width: 100%; padding: 70px 20px; background: #f8fdf9; text-align: center; }
.asl-faq-header h2 { font-size: clamp(24px,5vw,34px); font-weight: 800; color: #1a2e5c; margin-bottom: 12px; }
.asl-faq-header p { font-size: 16px; color: #4f6070; margin-bottom: 45px; max-width: 600px; margin-left: auto; margin-right: auto; }
.asl-faq-list { max-width: 820px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid #c8e6d4; overflow: hidden; transition: box-shadow 0.3s ease; }
.faq-item.active { box-shadow: 0 4px 20px rgba(26,124,62,0.10); border-radius: 8px; margin-bottom: 12px; }
.faq-question {
  width: 100%; background: #f0f8f3; border: none;
  padding: 18px 22px; font-size: 16px; font-weight: 600;
  color: #1a2e5c; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  outline: none; transition: background 0.3s ease;
  font-family: inherit;
}
.faq-question:hover { background: #d4eedd; }
.faq-question::after { content: '+'; font-size: 22px; color: #1a7c3e; 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 22px; font-size: 15px; color: #5a6b63;
  line-height: 1.65;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-item.active .faq-answer { max-height: 500px; padding: 14px 22px 20px; }
@media (max-width: 768px) {
  .asl-faq-wrapper { padding: 45px 15px; }
  .faq-question { font-size: 14px; padding: 14px 16px; }
  .faq-answer { font-size: 14px; }
}

/* ============================
   FOOTER
============================ */
.asl-footer { background: #0e1c38; color: #fff; padding: 65px 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; text-align: center; padding: 10px; }
.footer-logo-img { width: 220px; max-width: 100%; height: auto; object-fit: contain; margin-bottom: 14px; transition: transform 0.3s ease; }
.footer-logo-img:hover { transform: scale(1.04); }
.footer-logo p { font-size: 14px; color: #b0c4d8; line-height: 1.6; max-width: 280px; margin: 0 auto; }

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
  font-size: 16px; margin-bottom: 14px;
  color: #fff; letter-spacing: 0.5px;
  border-left: 3px solid #1a7c3e; padding-left: 10px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 9px; }
.footer-links ul li a { color: #b0c4d8; transition: all 0.3s; font-size: 14px; }
.footer-links ul li a:hover { color: #4ade80; padding-left: 4px; }
.footer-contact p { font-size: 14px; margin: 7px 0; color: #b0c4d8; }
.footer-contact a { color: #b0c4d8; }
.footer-contact a:hover { color: #4ade80; }

.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; font-family: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.newsletter-form input[type="email"]::placeholder { color: #888; }
.newsletter-form button {
  background: linear-gradient(135deg,#1a7c3e,#1a2e5c);
  color: #fff; border: none;
  padding: 10px 18px; border-radius: 8px;
  font-weight: 600; cursor: pointer;
  transition: all 0.3s;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,124,62,0.40); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center; margin-top: 50px;
  padding-top: 22px; font-size: 14px; color: #6a8099;
}

@media (max-width: 1024px) { .asl-footer-container { flex-wrap: wrap; gap: 30px; } }
@media (max-width: 768px) {
  .asl-footer-container { flex-direction: column; text-align: center; }
  .footer-links h4, .footer-contact h4, .footer-newsletter h4 { border-left: none; border-bottom: 2px solid #1a7c3e; padding-left: 0; padding-bottom: 6px; display: inline-block; }
  .newsletter-form { flex-direction: column; margin: 0 auto; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
}

/* ============================
   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: #1a2e5c; font-weight: 800; }
.chargeback-title p { color: #4f6070; font-size: 15px; margin-top: 8px; }
.chargeback-form {
  background: #f0f8f3; padding: 35px;
  border-radius: 16px; border: 1px solid #c8e6d4;
  box-shadow: 0 10px 30px rgba(26,124,62,0.08);
}
.chargeback-form .form-group { margin-bottom: 22px; }
.chargeback-form .form-group label { display: block; margin-bottom: 7px; font-size: 14px; color: #1a2e5c; font-weight: 600; }
.chargeback-form .form-group input,
.chargeback-form .form-group textarea {
  width: 100%; padding: 12px 15px;
  border-radius: 10px; border: 1.5px solid #b0d8c0;
  font-size: 14px; outline: none;
  background: #fff; font-family: inherit;
  transition: 0.3s;
}
.chargeback-form .form-group input:focus,
.chargeback-form .form-group textarea:focus {
  border-color: #1a7c3e;
  box-shadow: 0 0 0 3px rgba(26,124,62,0.12);
}
.chargeback-form .submit-btn {
  background: linear-gradient(90deg, #1a7c3e, #1a2e5c);
  color: white; padding: 14px; border: none;
  width: 100%; border-radius: 10px;
  font-size: 16px; cursor: pointer;
  font-weight: 700; transition: 0.3s;
  font-family: inherit; letter-spacing: 0.3px;
}
.chargeback-form .submit-btn:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,124,62,0.30); }
.thank-you {
  display: none; text-align: center;
  background: #e6fff2; padding: 35px;
  border-radius: 14px; color: #1a7c3e;
  border: 1.5px solid #1a7c3e;
}
.thank-you h3 { font-size: 24px; margin-bottom: 10px; }

/* ============================
   POLICY PAGES
============================ */
.policy-content { max-width: 900px; margin: 0 auto; padding: 65px 20px; }
.policy-content h1 { font-size: 36px; font-weight: 800; color: #1a2e5c; margin-bottom: 8px; }
.policy-content .policy-updated { font-size: 14px; color: #8a9ab0; margin-bottom: 35px; display: block; }
.policy-content h2 { font-size: 22px; font-weight: 700; color: #1a7c3e; margin-top: 38px; margin-bottom: 14px; }
.policy-content p { font-size: 15px; color: #4f6070; line-height: 1.75; margin-bottom: 14px; }
.policy-content ul { margin: 0 0 16px 22px; color: #4f6070; font-size: 15px; line-height: 1.85; }
.policy-content ul li { margin-bottom: 6px; }
.policy-content a { color: #1a7c3e; font-weight: 600; }
.policy-content a:hover { color: #1a2e5c; }

/* ============================
   CONTACT PAGE
============================ */
.contact-section { max-width: 720px; margin: 0 auto; padding: 65px 20px; text-align: center; }
.contact-section h1 { font-size: 36px; font-weight: 800; color: #1a2e5c; margin-bottom: 12px; }
.contact-section > p { font-size: 16px; color: #4f6070; margin-bottom: 38px; }
.contact-info-box {
  background: #f0f8f3; border-radius: 18px;
  padding: 32px; text-align: left; margin-bottom: 38px;
  border: 1px solid #c8e6d4;
}
.contact-info-box h3 { font-size: 17px; font-weight: 700; color: #1a7c3e; margin-top: 20px; margin-bottom: 8px; }
.contact-info-box h3:first-child { margin-top: 0; }
.contact-info-box p { font-size: 15px; color: #4f6070; line-height: 1.7; margin-bottom: 8px; }
.contact-info-box ul { margin: 6px 0 8px 20px; color: #4f6070; font-size: 15px; line-height: 1.8; }
.contact-form {
  background: #f0f8f3; padding: 35px;
  border-radius: 16px; border: 1px solid #c8e6d4;
  box-shadow: 0 10px 30px rgba(26,124,62,0.08);
  text-align: left;
}
.contact-form .form-group { margin-bottom: 22px; }
.contact-form .form-group label { display: block; margin-bottom: 7px; font-size: 14px; color: #1a2e5c; font-weight: 600; }
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%; padding: 12px 15px;
  border-radius: 10px; border: 1.5px solid #b0d8c0;
  font-size: 14px; outline: none;
  background: #fff; font-family: inherit;
  transition: 0.3s;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #1a7c3e;
  box-shadow: 0 0 0 3px rgba(26,124,62,0.12);
}
.contact-form .submit-btn {
  background: linear-gradient(90deg, #1a7c3e, #1a2e5c);
  color: white; padding: 14px; border: none;
  width: 100%; border-radius: 10px;
  font-size: 16px; cursor: pointer;
  font-weight: 700; transition: 0.3s;
  font-family: inherit;
}
.contact-form .submit-btn:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,124,62,0.30); }

/* ============================
   GENERIC PAGE (fallback)
============================ */
.page-content { max-width: 900px; margin: 0 auto; padding: 60px 20px; }
.page-content h1 { font-size: 36px; font-weight: 800; color: #1a2e5c; margin-bottom: 20px; }
.page-content p { margin-bottom: 16px; color: #4f6070; }
