/* ============================================================
   EASYACCOUNTANTS – GLOBAL STYLESHEET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange:    #0a19e8;
  --orange-dk: #0a19e8;
  --orange-lt: #fff3eb;
  --white:     #ffffff;
  --grey-bg:   #f5f5f5;
  --dark:      #1e1e1e;
  --dark2:     #1a1a2e;
  --text:      #444444;
  --text-lt:   #777777;
  --border:    #e0e0e0;
  --ff:        'Montserrat', sans-serif;
  --ff-body:   'Open Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--text); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark); color: rgba(255,255,255,.72);
  font-size: 13px; padding: 7px 6%;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.topbar a { color: rgba(255,255,255,.72); transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.tb-left  { display: flex; gap: 24px; align-items: center; }
.tb-right { display: flex; gap: 20px; align-items: center; }

/* ── NAV ── */
.site-nav {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  position: sticky; top: 0; z-index: 999;
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 54px; object-fit: contain; }
.nav-menu { display: flex; list-style: none; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 27px 15px;
  font-family: var(--ff); font-size: 12.5px; font-weight: 600;
  color: var(--dark); text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current > a { color: var(--orange); border-bottom-color: var(--orange); }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 270px;
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 28px rgba(0,0,0,.13); z-index: 500;
}
.nav-menu li:hover > .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 12px 18px;
  font-family: var(--ff); font-size: 12px; font-weight: 600;
  color: var(--dark); text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: var(--orange-lt); color: var(--orange); }
.nav-dropdown a:last-child { border-bottom: none; }
.nav-phone {
  background: var(--orange); color: var(--white) !important;
  padding: 11px 22px !important; border-radius: 3px;
  font-weight: 700 !important; border-bottom: none !important;
  margin-left: 6px; letter-spacing: .04em !important;
  transition: background .2s !important;
}
.nav-phone:hover { background: var(--orange-dk) !important; color: var(--white) !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); display: block; border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 998; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 15px 24px;
  font-family: var(--ff); font-size: 13px; font-weight: 600;
  color: var(--dark); text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color .15s, background .15s;
}
.mobile-nav a:hover { color: var(--orange); background: var(--orange-lt); }
.mobile-nav a.sub { padding-left: 42px; font-size: 11px; color: var(--text-lt); }
.mobile-nav a.sub:hover { color: var(--orange); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--dark); position: relative;
  padding: 70px 6%; display: flex; align-items: center;
  min-height: 230px; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 40%, rgba(0,0,0,.28) 100%);
  z-index: 1;
}
.ph-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .45;
}
.ph-content { position: relative; z-index: 2; }
.ph-content h1 {
  font-family: var(--ff); font-size: clamp(26px,4vw,46px);
  color: var(--white); font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.ph-content p { font-size: 15px; color: rgba(255,255,255,.75); margin-top: 10px; max-width: 560px; line-height: 1.7; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 14px; font-family: var(--ff);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ── SHARED TYPOGRAPHY ── */
.sec-label {
  font-family: var(--ff); font-size: 11.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px; display: block;
}
.sec-title {
  font-family: var(--ff); font-size: clamp(22px,3.5vw,38px);
  color: var(--dark); font-weight: 700; line-height: 1.25; margin-bottom: 14px;
}
.sec-title.white { color: var(--white); }
.sec-divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 20px; }
.sec-divider.center { margin-left: auto; margin-right: auto; }
.sec-text { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.sec-text.muted { color: rgba(255,255,255,.62); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: var(--ff); font-weight: 700;
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em;
  padding: 14px 34px; border-radius: 3px; border: 2px solid transparent;
  transition: all .25s; cursor: pointer;
}
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { border-color: var(--white); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--grey-bg); border-radius: 4px; padding: 30px 26px;
  border: 1px solid var(--border); position: relative;
  transition: box-shadow .3s, transform .3s;
}
.testi-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.1); transform: translateY(-4px); }
.testi-qmark { position: absolute; top: 18px; right: 22px; font-size: 70px; font-family: Georgia,serif; color: var(--orange); opacity: .12; line-height: 1; }
.testi-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testi-av {
  width: 54px; height: 54px; border-radius: 50%;
  /* background: var(--orange); color: var(--white); */
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff); font-size: 20px; font-weight: 700; flex-shrink: 0;
  /* border: 2px solid var(--orange); overflow: hidden; */
}
.testi-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testi-name { font-family: var(--ff); font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-stars { color: #030303; font-size: 13px; margin-top: 2px; }
.testi-text { font-size: 13.5px; color: var(--text); line-height: 1.8; font-style: italic; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--orange); padding: 50px 6%; text-align: center; }
.cta-strip h3 { font-family: var(--ff); font-size: clamp(18px,2.5vw,28px); color: var(--white); font-weight: 700; margin-bottom: 22px; }

/* ── FAQ ── */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 3px; margin-bottom: 8px; overflow: hidden; }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 20px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff); font-size: 13.5px; font-weight: 600; color: var(--dark);
  gap: 14px; transition: background .2s;
}
.faq-btn:hover { background: var(--orange-lt); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); color: var(--white); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-btn { background: var(--orange-lt); color: var(--orange); }
.faq-body {
  display: none; font-size: 14px; color: var(--text); line-height: 1.8;
  border-top: 1px solid var(--border); padding: 14px 20px 18px;
}
.faq-item.open .faq-body { display: block; background: var(--orange-lt);}

/* ── FOOTER ── */
.site-footer { background: var(--dark2); }
.footer-body {
  padding: 65px 6% 42px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-logo img { height: 50px; object-fit: contain; margin-bottom: 16px; }
.f-logo p { font-size: 13.5px; color: #ffffffd9; line-height: 1.8; max-width: 280px; }
.f-col h4 {
  font-family: var(--ff); font-size: 12px; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,99,10,.25);
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-col ul li a {
  font-size: 13.5px; color: rgba(255,255,255,0.852);
  transition: color .2s; display: flex; align-items: center; gap: 7px;
}
.f-col ul li a::before { content: '›'; color: var(--orange); }
.f-col ul li a:hover { color: var(--orange); }
.f-contact { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.f-contact li { display: flex; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.852); align-items: flex-start; }
.f-contact li .ic { color: var(--orange); flex-shrink: 0; }
.f-contact li a { color: rgba(255,255,255,0.852); }
.f-contact li a:hover { color: var(--orange); }
.footer-bottom {
  padding: 18px 6%; display: flex; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,0.852); align-items: center;
}
.footer-bottom a { color: var(--orange); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .footer-body { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .tb-left { display: none; }
}

/* ── SCROLL REVEAL JS ── */
