/*
Theme Name: Fast Lane Taxes
/*
Theme Name: Fast Lane Taxes
Theme URI: https://fastlanetaxes.com
Author: Eight19 Enterprises
Description: A custom, mobile-friendly WordPress theme for Fast Lane Taxes Inc.
Version: 1.1.0
Text Domain: fast-lane-taxes
*/

:root{
  /* FAST LANE TAXES BRAND STANDARD */
  --navy:#071a33;

  --pink:#d97098;
  --pink-dark:#b84f76;
  --pink-deep:#963a61;
  --pink-light:#f8dce7;
  --pink-pale:#fff3f7;

  /*
   * Legacy variable aliases.
   * These keep older custom theme files working while
   * forcing the new Fast Lane pink brand standard.
   */
  --blue:var(--pink-dark);
  --royal:var(--pink);
  --sky:var(--pink-pale);
  --gold:var(--pink);

  --white:#ffffff;
  --ink:#172033;
  --muted:#5f6b7a;
  --soft:#faf8f9;
  --line:#eadde2;
  --success:#147a54;

  --shadow:0 16px 42px rgba(7,26,51,.12);
  --pink-shadow:0 12px 30px rgba(217,112,152,.24);
  --radius:22px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
}

::selection{
  background:var(--pink-light);
  color:var(--navy);
}

a{
  color:inherit;
}

img{
  max-width:100%;
  height:auto;
}

.container{
  width:min(1140px,92%);
  margin:auto;
}


/* =========================
   HEADER
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}

.header-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-mark{
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(
    145deg,
    var(--navy),
    var(--pink-dark)
  );
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:18px;
  box-shadow:0 8px 24px rgba(217,112,152,.28);
}

.brand-copy strong{
  display:block;
  color:var(--navy);
  font-size:19px;
  line-height:1.1;
}

.brand-copy span{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--pink-dark);
}

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

.nav a{
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:var(--navy);
  transition:.2s ease;
}

.nav a:hover,
.nav a:focus{
  color:var(--pink-dark);
}


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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:12px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:2px solid transparent;
  transition:.2s ease;
}

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

.btn-primary{
  background:var(--pink);
  color:var(--navy);
  box-shadow:var(--pink-shadow);
}

.btn-primary:hover{
  background:var(--pink-dark);
  color:#fff;
}

.btn-secondary{
  background:var(--navy);
  color:#fff;
}

.btn-secondary:hover{
  background:var(--pink-dark);
}

.btn-outline{
  border-color:var(--pink);
  color:var(--navy);
  background:#fff;
}

.btn-outline:hover{
  background:var(--pink-pale);
  border-color:var(--pink-dark);
}


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

.hero{
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(217,112,152,.30),
      transparent 28%
    ),
    linear-gradient(
      130deg,
      var(--navy),
      #16253d 58%,
      var(--pink-deep)
    );
  color:#fff;
  padding:86px 0 76px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:48px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  background:rgba(217,112,152,.18);
  border:1px solid rgba(255,255,255,.28);
  padding:7px 13px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

h1,
h2,
h3{
  font-family:Georgia,'Times New Roman',serif;
  line-height:1.12;
  margin-top:0;
  color:var(--navy);
}

.hero h1{
  font-size:clamp(42px,6vw,72px);
  color:#fff;
  margin:22px 0 18px;
}

.hero p{
  font-size:19px;
  color:#f8edf1;
  max-width:700px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.hero-card{
  background:#fff;
  color:var(--ink);
  border-radius:28px;
  padding:28px;
  border:1px solid var(--pink-light);
  box-shadow:0 22px 70px rgba(0,0,0,.28);
}

.hero-card h3{
  font-size:27px;
  margin-bottom:10px;
}


/* =========================
   CHECKLISTS
========================= */

.checklist{
  list-style:none;
  padding:0;
  margin:18px 0;
}

.checklist li{
  padding:9px 0 9px 30px;
  position:relative;
  border-bottom:1px solid var(--line);
}

.checklist li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--pink-dark);
  font-weight:900;
}


/* =========================
   NOTICES
========================= */

.notice{
  background:var(--pink-pale);
  border:1px solid var(--pink-light);
  color:var(--navy);
  border-radius:16px;
  padding:15px;
  font-size:14px;
  font-weight:700;
}


/* =========================
   SECTIONS
========================= */

.section{
  padding:82px 0;
}

.section-soft{
  background:var(--soft);
}

.section-blue{
  background:var(--pink-pale);
}

.section-head{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.section-head h2{
  font-size:clamp(34px,4vw,52px);
  margin-bottom:14px;
}

.section-head p{
  color:var(--muted);
  font-size:17px;
}

.grid{
  display:grid;
  gap:22px;
}

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

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


/* =========================
   CARDS
========================= */

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 10px 28px rgba(7,26,51,.06);
  transition:.2s ease;
}

.card:hover{
  transform:translateY(-3px);
  border-color:var(--pink-light);
  box-shadow:0 16px 36px rgba(217,112,152,.15);
}

.card h3{
  font-size:24px;
  margin:12px 0 10px;
}

.card p{
  color:var(--muted);
}

.icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:var(--pink-pale);
  color:var(--pink-dark);
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:21px;
}

.price{
  font-weight:900;
  color:var(--pink-dark);
  margin-top:14px;
}


/* =========================
   TWO COLUMN
========================= */

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}


/* =========================
   HIGHLIGHT BLOCK
========================= */

.highlight{
  background:linear-gradient(
    135deg,
    var(--navy),
    var(--pink-deep)
  );
  color:#fff;
  border-radius:28px;
  padding:42px;
  box-shadow:var(--shadow);
}

.highlight h2,
.highlight h3{
  color:#fff;
}

.highlight p{
  color:#f8eaf0;
}


/* =========================
   STEPS
========================= */

.steps{
  counter-reset:steps;
}

.step{
  position:relative;
  padding-left:72px;
}

.step:before{
  counter-increment:steps;
  content:counter(steps);
  position:absolute;
  left:0;
  top:0;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--pink);
  color:var(--navy);
  display:grid;
  place-items:center;
  font-weight:900;
}


/* =========================
   FAQ
========================= */

.faq details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  margin:12px 0;
  padding:18px 20px;
}

.faq details[open]{
  border-color:var(--pink-light);
}

.faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--navy);
}

.faq summary:hover{
  color:var(--pink-dark);
}

.faq p{
  color:var(--muted);
}


/* =========================
   CTA
========================= */

.cta{
  padding:70px 0;
  background:linear-gradient(
    120deg,
    var(--pink),
    var(--pink-light)
  );
  color:var(--navy);
}

.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.cta h2{
  font-size:clamp(34px,4vw,50px);
  margin-bottom:8px;
}


/* =========================
   FORMS
========================= */

input,
select,
textarea{
  font:inherit;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:var(--pink) !important;
  box-shadow:0 0 0 3px rgba(217,112,152,.16);
}


/* =========================
   WOOCOMMERCE BRANDING
========================= */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt{
  background:var(--pink) !important;
  color:var(--navy) !important;
  border-radius:999px !important;
  font-weight:800 !important;
  transition:.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover{
  background:var(--pink-dark) !important;
  color:#fff !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price{
  color:var(--pink-dark) !important;
}

.woocommerce-message,
.woocommerce-info{
  border-top-color:var(--pink) !important;
}

.woocommerce-message::before,
.woocommerce-info::before{
  color:var(--pink) !important;
}

.woocommerce span.onsale{
  background:var(--pink) !important;
  color:var(--navy) !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus{
  border-color:var(--pink) !important;
}


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

.site-footer{
  background:var(--navy);
  color:#dce7f5;
  padding:56px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:34px;
}

.site-footer h3{
  color:#fff;
}

.site-footer a{
  color:#dce7f5;
  text-decoration:none;
}

.site-footer a:hover{
  color:var(--pink);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:36px;
  padding-top:22px;
  font-size:13px;
  color:#aebed2;
}


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

.mobile-toggle{
  display:none;
  background:none;
  border:0;
  font-size:28px;
  color:var(--navy);
}


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

@media(max-width:900px){

  .hero-grid,
  .two-col,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .grid-3,
  .grid-4{
    grid-template-columns:1fr 1fr;
  }

  .nav{
    display:none;
    position:absolute;
    top:76px;
    left:0;
    right:0;
    background:#fff;
    padding:20px;
    flex-direction:column;
    box-shadow:var(--shadow);
    border-bottom:3px solid var(--pink);
  }

  .nav.open{
    display:flex;
  }

  .mobile-toggle{
    display:block;
  }

  .cta-inner{
    display:block;
  }

  .cta-inner .btn{
    margin-top:18px;
  }
}


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

@media(max-width:620px){

  .grid-3,
  .grid-4{
    grid-template-columns:1fr;
  }

  .hero{
    padding:62px 0;
  }

  .section{
    padding:64px 0;
  }

  .hero-actions .btn{
    width:100%;
  }
}