/* ==========================================================
   taxes777.com — new.css (FULL CLEAN REPLACEMENT)
   - Header + Mobile menu behavior (ClassyNav)
   - Hero overlay + readable headline
   - Services / PTX / PTC / EA blocks
   - Service-area card + Footer
   - Uniform section widths
   Fixes:
   - Removed invalid HTML comment inside CSS
   - Removed conflicting duplicate hero rules
   - Fixed invalid properties (align-items: center center)
   - Removed layout-breaking "position: static !important" resets
   ========================================================== */

/* ---------- Variables ---------- */
:root{
  --header-max: 1180px;
  --pad: 18px;

  --topbar-h: 38px;
  --nav-h: 76px;
  --header-h: calc(var(--topbar-h) + var(--nav-h));

  --text: #0b1526;
  --line: rgba(11,21,38,.12);
  --bg: rgba(255,255,255,.92);
  --bg-strong: rgba(255,255,255,.98);
  --shadow: 0 10px 24px rgba(0,0,0,.10);
  --accent: #0b4f8a;

  /* Site-wide widths */
  --site-max: 1180px;
  --site-pad: clamp(16px, 4vw, 28px);
}

/* ==========================================================
   Base helpers (light, safe)
   ========================================================== */
*{ margin:0; padding:0; }
img{ max-width:100%; height:auto; }
ul{ margin:0; padding:0; }
ul li{ margin:0; padding:0; list-style:none; }
a{ text-decoration:none; }
.no-padding{ padding:0 !important; }
.no-margin{ margin:0 !important; }
.text-aligh-left{ text-align:left; } /* keeping your typo class to avoid breaking */

/* Typography (keep your defaults but avoid breaking hero readability) */
body{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Montserrat", sans-serif;
  color: #333333;
  line-height: 1.4;
  font-weight: 600;
}
p{
  line-height: 1.9;
  font-family: Helvetica, Arial, sans-serif;
  color: #707070;
  font-size: 18px;
  font-weight: 500;
}

/* ==========================================================
   Skip link
   ========================================================== */
.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow: var(--shadow);
  z-index: 9999;
}
.skip-link:focus{
  left:12px;
  width:auto;
  height:auto;
}

/* ==========================================================
   HEADER / TOPBAR / NAV
   ========================================================== */

/* Header scope safety */
.site-header, .site-header *{ box-sizing:border-box; }
.site-header img{ display:block; }
.site-header a{ text-decoration:none; }

/* Upper links */

.client-portal-btn {
    font-weight: 700;
    letter-spacing: .01em;
    border-radius: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(214,178,94,.65);
}

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

    border-color: #d6b25e;

    box-shadow: 0 8px 22px rgba(0,0,0,.28);

    color: #fff;
}

/* Upper links - end */

/* Topbar */
.topbar{
  min-height: var(--topbar-h);
  background: rgba(11,79,138,.10);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  width: 100%;
  margin: 0 auto;
  padding: 8px 10px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.top-contact-number {
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: .01em;

    color: #0b2f63;

    text-decoration: none;

    transition: all .25s ease;
}

.top-contact-number:hover {
    color: #c89b2f;
}

/* Sticky header wrapper */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(10px);
}

/* Nav row */
.navwrap{
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

/* Brand/logo */
.brand{ display:flex; align-items:center; gap:10px; }
.brand__logo{ width:100%; max-width:270px; height:auto; }

/* Header button */
.site-header .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(10,111,191,.95), rgba(11,79,138,.95));
  color:#fff;
  font-weight:700;
  letter-spacing:.4px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 18px rgba(11,79,138,.22);
}
.site-header .btn:hover{ filter:brightness(1.05); }

/* ==========================================================
   ClassyNav MOBILE behavior (index2)
   ========================================================== */
@media (max-width: 991px){
  .header-area,
  .main-header-area,
  .classy-nav-container,
  .classy-navbar{
    overflow: visible !important;
  }

  /* CLOSED state */
  .classy-nav-container.breakpoint-on .classynav{
    display: none !important;
  }

  /* OPEN state */
  .classy-nav-container.breakpoint-on .classy-menu.menu-on .classynav{
    display: block !important;
  }

  /* Fullscreen menu panel */
  .classy-nav-container.breakpoint-on .classy-menu.menu-on{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100dvh !important;
    height: 100vh !important;
    z-index: 99999 !important;
    background: #fff !important;
  }

  .classy-nav-container.breakpoint-on .classy-menu.menu-on .classynav{
    max-height: 100dvh !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 18px 16px 28px !important;
  }

  .classy-nav-container.breakpoint-on .classy-navbar-toggler,
  .classy-nav-container.breakpoint-on .classycloseIcon{
    position: relative !important;
    z-index: 100000 !important;
  }

  body.body-overflow{ overflow: hidden !important; }
}

/* ==========================================================
   HERO — unified, no conflicts
   Works with your existing HTML:
   .hero
     picture.hero-media
     .welcome-welcome-slide (text container)
   ========================================================== */

.hero{
  position: relative;
  overflow: hidden;
  height: 500px; /* matches your image height */
}

/* Image fills hero */
.hero .hero-media{
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero .hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Overlay for readability */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 2;
  pointer-events:none;
background: linear-gradient(
  90deg,
  rgba(52, 120, 220, 0.48) 0%,
  rgba(90, 160, 255, 0.32) 42%,
  rgba(160, 210, 255, 0.14) 72%,
  rgba(255, 255, 255, 0) 100%
);
}

/* ===== HERO HEADING: 2 lines + larger text ===== */

/* Each span on its own line */
.hero-heading .hero-line-1,
.hero-heading .hero-line-2{
  display: block !important;
}

/* Bigger sizes */
.hero-heading .hero-line-1{
  font-size: clamp(26px, 2.8vw, 38px) !important;
  line-height: 1.1 !important;
}

.hero-heading .hero-line-2{
  font-size: clamp(46px, 5.6vw, 72px) !important;
  line-height: 1.02 !important;
}

/* Optional: reduce max-width so it looks “bold” and not stretched */
.hero-heading{
  max-width: 860px !important;
}


/* Text wrapper sits above overlay */
.welcome-welcome-slide{
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
}

/* Your welcome text block */
.welcome-text{
  position: relative;
  z-index: 3;
  color:#fff;
}

/* Panel behind text (clean, not dirty) */
.welcome-text-main{
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8,18,36,0.62);
  border-radius: 14px;
  padding: 18px 20px;
  display: inline-block;
}

/* IMPORTANT: override your global h1 heading color */
.welcome-text-main h1{
  color:#fff !important;
  margin:0;
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,.30);
  font-size: clamp(30px, 4.2vw, 56px);
  text-align: left;
}

/* If you keep gold-text-1 on the wrapper, it makes text transparent.
   We disable it for the hero H1 so it stays readable. */
.welcome-text-main.gold-text-1 h1{
  -webkit-text-fill-color: initial !important;
  background: none !important;
}

/* Mobile: center + vertical overlay */
@media (max-width:768px){
  .hero::before{
    background: linear-gradient(180deg,
      rgba(8,20,40,.72) 0%,
      rgba(8,20,40,.55) 55%,
      rgba(8,20,40,.20) 100%
    );
  }
  .welcome-text-main h1{ text-align:center; }
}

/* ==========================================================
   Gold gradient text (Hero text)
   ========================================================== */
.gold-frame {
    width: 45%;
    max-width: 45%;
    min-width: 520px;
    box-sizing: border-box;
    overflow: hidden;

    padding: 34px 36px 32px;

    background:
    radial-gradient(
        circle at top left,
        rgba(58, 120, 210, 0.22) 0%,
        transparent 42%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(25, 72, 145, 0.18) 0%,
        transparent 36%
    ),

    linear-gradient(
        145deg,
        #020b18 0%,
        #061a36 24%,
        #0a2a57 52%,
        #05152d 76%,
        #020814 100%
    );
    border: 2px solid #d6b25e;
    border-radius: 20px;

    box-shadow:
        0 18px 42px rgba(0,0,0,.38),
        inset 0 0 18px rgba(255,215,100,.08);
}

.hero-title {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.hero-title span {
    display: block;
    width: 100%;

    text-align: center;

    font-family: "Cinzel", serif;
    font-weight: 700;

    line-height: .96;
    letter-spacing: -.03em;

    white-space: normal;
    overflow-wrap: normal;

    color: #f4d06f;

    text-shadow:
        0 1px 0 #fff2b0,
        0 2px 0 #d4a437,
        0 3px 0 #9b6a00,
        0 4px 12px rgba(0,0,0,.42),
        0 0 10px rgba(255,215,90,.18);
}

.hero-title span:first-child {
    font-size: clamp(2.05rem, 2.55vw, 3.45rem);
}

.hero-title span:last-child {
    font-size: clamp(1.95rem, 2.45vw, 3.25rem);
    margin-top: 12px;
}

.hero-subtitle {
    margin-top: 24px;
    text-align: center;
    font-size: clamp(.95rem, 1vw, 1.12rem);
    line-height: 1.45;
    color: rgba(255,255,255,.96);
    text-shadow: 0 1px 2px rgba(0,0,0,.55);
}

@media (max-width: 991px) {

    .hero .container {
        display: flex;
        justify-content: center;
    }

    .gold-frame {
        width: calc(100vw - 32px);
        max-width: 560px;
        min-width: 0;

        margin-left: auto;
        margin-right: auto;

        padding: 24px 20px 22px;
    }
}

@media (max-width: 991px) {

    .hero::before,
    .hero::after,
    .bg-gradient-overlay::before,
    .bg-gradient-overlay::after {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,.28) 0%,
            rgba(255,255,255,.16) 45%,
            rgba(255,255,255,.08) 100%
        ) !important;
    }

}
/* ==========================================================
   Services Cards Section (pt-services)
   ========================================================== */
.pt-services{
  --pt-max: 1180px;
  --pt-pad-x: clamp(16px, 4vw, 28px);
  --pt-gap: clamp(14px, 2.2vw, 22px);

  --pt-text: #0f172a;
  --pt-muted: #475569;
  --pt-line: rgba(15, 23, 42, 0.10);
  --pt-surface: rgba(255, 255, 255, 0.92);
  --pt-surface-2: rgba(255, 255, 255, 0.70);
  --pt-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);

  padding: clamp(44px, 6vw, 84px) 0;
  color: var(--pt-text);
  position: relative;
}
.pt-services .pt-wrap{
  max-width: var(--pt-max);
  margin: 0 auto;
  padding: 0 var(--pt-pad-x);
}
.pt-services .pt-top{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--pt-gap);
  align-items: end;
  margin-bottom: clamp(18px, 3vw, 28px);
}
.pt-services .pt-kicker{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-muted);
  margin: 0 0 8px;
}
.pt-services h2{
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.pt-services .pt-lead{
  margin: 10px 0 0;
  color: var(--pt-muted);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  max-width: 64ch;
}
.pt-services .pt-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.pt-services .pt-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--pt-line);
  background: var(--pt-surface);
  color: var(--pt-text);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.pt-services .pt-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.10);
  background: rgba(255,255,255,0.98);
}
.pt-services .pt-btn.primary{
  background: linear-gradient(180deg, rgba(25, 118, 210, 0.95), rgba(17, 83, 161, 0.95));
  color: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 26px rgba(17, 83, 161, 0.24);
}
.pt-services .pt-btn.primary:hover{
  box-shadow: 0 14px 34px rgba(17, 83, 161, 0.30);
}
.pt-services .pt-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--pt-gap);
  margin-top: clamp(18px, 3vw, 28px);
}
.pt-services .pt-card{
  border: 1px solid var(--pt-line);
  background: radial-gradient(1200px 500px at 30% -20%, rgba(25,118,210,0.09), transparent 60%),
              linear-gradient(180deg, var(--pt-surface), var(--pt-surface-2));
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: var(--pt-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pt-services .pt-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(2, 6, 23, 0.12);
}
.pt-services .pt-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--pt-line);
  background: rgba(255,255,255,0.72);
  font-size: 12px;
  color: var(--pt-muted);
  width: fit-content;
}
.pt-services .pt-icon{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid var(--pt-line);
  background: rgba(25,118,210,0.10);
  display: inline-block;
}
.pt-services .pt-title{
  margin: 12px 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.pt-services .pt-desc{
  margin: 0 0 12px;
  color: var(--pt-muted);
  line-height: 1.65;
  font-size: 14.5px;
}
.pt-services .pt-list{
  margin: 0;
  padding-left: 18px;
  color: #1f2937;
  line-height: 1.6;
  font-size: 14px;
}
.pt-services .pt-list li{ margin: 6px 0; }
.pt-services .pt-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--pt-line);
}
.pt-services .pt-meta{
  font-size: 12.5px;
  color: var(--pt-muted);
}
.pt-services .pt-link{
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: rgba(17, 83, 161, 0.98);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease;
}
.pt-services .pt-link:hover{
  background: rgba(25,118,210,0.08);
  border-color: rgba(25,118,210,0.18);
}
@media (max-width: 980px){
  .pt-services .pt-top{ grid-template-columns: 1fr; align-items: start; }
  .pt-services .pt-actions{ justify-content: flex-start; }
  .pt-services .pt-grid{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  .pt-services .pt-btn,
  .pt-services .pt-card{ transition:none; }
}

/* ==========================================================
   PTX sections (namespaced)
   ========================================================== */
.ptx-section{ padding: clamp(40px, 5vw, 80px) 0; }
.ptx-container{
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}
.ptx-section__head{ margin-bottom: 22px; }
.ptx-h2{
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.ptx-lead{
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  opacity: 0.85;
  max-width: 70ch;
}
.ptx-h3{ font-size: 18px; line-height: 1.25; margin: 0 0 8px; }
.ptx-text{ margin: 0; line-height: 1.7; opacity: 0.88; }

/* WHY US grid */
.ptx-grid{ display:grid; gap:14px; }
.ptx-grid--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ptx-card{
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.ptx-card__icon{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 980px){
  .ptx-grid--4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .ptx-grid--4{ grid-template-columns: 1fr; }
  .ptx-card{ padding: 16px; }
}

/* FAQ accordion */
.ptx-accordion{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.ptx-acc-item{
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.ptx-acc-summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 16px;
  user-select:none;
}
.ptx-acc-summary::-webkit-details-marker{ display:none; }
.ptx-acc-q{ font-weight:600; line-height:1.35; }
.ptx-acc-icon{
  width:18px; height:18px;
  position:relative;
  flex:0 0 18px;
  opacity:0.7;
}
.ptx-acc-icon::before,
.ptx-acc-icon::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:18px;
  height:2px;
  background: currentColor;
  border-radius: 2px;
}
.ptx-acc-icon::after{
  transform: rotate(90deg);
  transition: transform 160ms ease;
}
.ptx-acc-item[open] .ptx-acc-icon::after{ transform: rotate(0deg); }
.ptx-acc-panel{ padding: 0 16px 16px; }
.ptx-acc-panel p{ margin-top:0; }
.ptx-acc-summary:hover{ background: rgba(0,0,0,0.02); }
.ptx-acc-summary:focus{ outline:none; }
.ptx-acc-summary:focus-visible{
  outline:2px solid rgba(0,0,0,0.25);
  outline-offset:-2px;
}
.ptx-faq__foot{ margin-top:14px; }
.ptx-link{ text-decoration:none; font-weight:600; }
.ptx-link:hover{ text-decoration:underline; }
@media (prefers-reduced-motion: reduce){
  .ptx-acc-icon::after{ transition:none; }
}

/* ==========================================================
   PTC (minimal light styling)
   ========================================================== */
.ptc-wrap{ max-width:1100px; margin:0 auto; padding:0 16px; }
.ptc-kicker{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; opacity:.75; margin-bottom:10px; }
.ptc-title{ margin:0 0 10px 0; font-size:32px; line-height:1.2; }
.ptc-subtitle{ margin:0 0 18px 0; font-size:17px; line-height:1.7; max-width:78ch; opacity:.9; }
.ptc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:18px; }
.ptc-card{ background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:16px; padding:18px; box-shadow:0 10px 26px rgba(0,0,0,.06); }
.ptc-card-title{ margin:0 0 10px 0; font-size:18px; }
.ptc-card-text{ margin:0; font-size:15px; line-height:1.7; opacity:.92; }
.ptc-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.ptc-tag{ display:inline-block; font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(0,0,0,.10); background:rgba(255,255,255,.6); }
.ptc-list{ margin:8px 0 0 0; padding-left:18px; font-size:15px; line-height:1.7; opacity:.92; }
.ptc-list li{ margin:6px 0; }
.ptc-cta{ margin-top:16px; border:1px solid rgba(0,0,0,.08); border-radius:18px; padding:18px; display:flex; gap:14px; align-items:center; justify-content:space-between; background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65)); }
.ptc-cta-title{ margin:0 0 6px 0; font-size:18px; }
.ptc-cta-text{ margin:0; font-size:15px; line-height:1.7; opacity:.92; }
.ptc-cta-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.ptc-btn{ display:inline-block; text-decoration:none; font-weight:600; font-size:14px; padding:10px 14px; border-radius:12px; border:1px solid rgba(0,0,0,.12); transition:transform .08s ease, box-shadow .08s ease; }
.ptc-btn:hover{ transform:translateY(-1px); box-shadow:0 10px 20px rgba(0,0,0,.08); }
.ptc-btn-primary{ background:#0b4aa2; color:#fff; border-color:#0b4aa2; }
.ptc-btn-ghost{ background:transparent; color:inherit; }
.ptc-foot{ margin-top:14px; font-size:13px; opacity:.75; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.ptc-dot{ opacity:.6; }
@media (max-width: 980px){
  .ptc-grid{ grid-template-columns:1fr; }
  .ptc-title{ font-size:28px; }
  .ptc-cta{ flex-direction:column; align-items:flex-start; }
  .ptc-cta-right{ justify-content:flex-start; }
}

/* ==========================================================
   EA Block — Scoped Styles (clean, non-hostile)
   ========================================================== */
.ea-block, .ea-block *{ box-sizing:border-box; }

/* Outer */
.ea-block__wrap{ width: min(1200px, 92%); margin: 0 auto; }

/* Card */
.ea-card{
  background:#fff;
  border:1px solid rgba(11,27,43,.18);
  border-radius:12px;
  padding:28px;
  box-shadow: 0 3px 10px rgba(9,30,66,.08), 0 26px 70px rgba(9,30,66,.14);
  color:#0b1b2b;
}

/* Kicker / title */
.ea-kicker{ color:#6b7a86; font-weight:700; letter-spacing:0.6px; margin:0 0 6px; font-size:13px; text-transform:uppercase; }
.ea-title{ margin:0 0 12px; font-size:24px; line-height:1.15; color:#0b1b2b; }
.ea-intro{ margin:0 0 18px; color:#33414a; line-height:1.6; }

/* Tiles */
.ea-tiles{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px 18px;
  margin:4px 0 18px;
}
@media (max-width:768px){ .ea-tiles{ grid-template-columns:1fr; } }

.ea-tile{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:8px;
  background:#f8fbff;
  border:1px solid rgba(14,43,75,0.04);
}
.ea-icon{
  color:#1e73be;
  flex:0 0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
}
.ea-tile__title{ font-weight:800; font-size:14px; color:#072033; margin-bottom:4px; }
.ea-tile__desc{ font-size:13px; color:#40515a; line-height:1.4; }

/* Note + actions */
.ea-note{ margin:12px 0 18px; color:#33414a; font-size:14px; line-height:1.6; }
.ea-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.ea-btn{ padding:10px 14px; border-radius:10px; font-weight:800; font-size:13px; }

/* Image */
.ea-image img{ border-radius:10px; max-width:100%; display:block; margin:0 auto; }

@media (max-width:991px){
  .ea-card{ padding:20px; }
  .ea-title{ font-size:20px; }
}

/* ==========================================================
   Service Area card
   ========================================================== */
.service-area-section{ margin:48px 0; }
.service-area-card{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:28px;
  align-items:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(15,23,42,0.06);
  border-radius:12px;
  padding:28px;
  box-shadow: 0 6px 18px rgba(8,18,30,0.04);
}
@media (max-width:880px){
  .service-area-card{ grid-template-columns:1fr; padding:20px; }
  .service-area-right{ margin-top:14px; display:flex; justify-content:flex-start; }
}
.sa-title{ margin:0 0 10px; font-size:22px; font-weight:800; color:#0b1b2b; }
.sa-lead{ margin:0 0 8px; color:#233040; line-height:1.55; font-size:15px; }
.sa-note{ margin:0 0 16px; color:#4a5968; font-size:14px; }
.sa-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
.sa-chip{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:#f1f6fb;
  color:#0b1b2b;
  font-weight:700;
  font-size:13px;
  border:1px solid rgba(11,27,43,0.04);
}
.service-area-right{ text-align:right; }
.sa-cta-wrap{ display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.sa-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
  font-size:14px;
}
.sa-btn-primary{
  background:#125fbd;
  color:#fff;
  box-shadow: 0 6px 18px rgba(18,95,189,0.12);
  border-color: rgba(18,95,189,0.14);
}
.sa-link{ color:#125fbd; font-weight:600; text-decoration:none; font-size:14px; margin-top:2px; }
.sa-link-strong{ font-weight:800; }
.sa-small{ margin:0; color:#5a6b7a; font-size:13px; }
.sa-phone{ color:#0b1b2b; font-weight:700; text-decoration:none; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer{
  margin-top:60px;
  border-top:1px solid rgba(0,0,0,0.08);
  background:#fff;
}
.site-footer .container{
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.footer-top{ padding:44px 0; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap:26px;
}
.footer-title{
  font-weight:700;
  font-size:16px;
  letter-spacing:0.2px;
  margin:0 0 10px;
}
.footer-text{
  margin:0;
  line-height:1.65;
  font-size:14.5px;
}
.footer-muted{ opacity:0.75; }
.footer-list{ list-style:none; padding:0; margin:0; }
.footer-list li{ margin:8px 0; line-height:1.6; font-size:14.5px; }
.footer-list a{ text-decoration:none; }
.footer-list a:hover{ text-decoration:underline; }
.footer-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.12);
  text-decoration:none;
  font-size:14px;
  white-space:nowrap;
}
.footer-btn.primary{
  border-color: rgba(0,0,0,0.18);
  font-weight:600;
}
.footer-badges{ margin-top:14px; font-size:13.5px; opacity:0.85; }
.footer-col .label{ font-weight:600; }
.footer-bottom{
  border-top:1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
  padding:14px 0;
}
.footer-bottom-inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer-copy,
.footer-mini{ font-size:13.5px; opacity:0.85; }

@media (max-width: 992px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-cta{ flex-direction:column; align-items:stretch; }
  .footer-btn{ width:100%; }
}

/* ==========================================================
   Scroll flow helper (kept)
   ========================================================== */
.scroll-flow.is-visible{
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================
   FORCE UNIFORM SECTION WIDTHS (pt-services, ea-block, ptx-*, ptc)
   ========================================================== */
.pt-services,
#ea-block,
.ptx-section{
  width: 100%;
}

.pt-services .pt-wrap,
#ea-block .ea-block__wrap,
.ptx-section .ptx-container,
.ptc-wrap{
  max-width: var(--site-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--site-pad) !important;
  padding-right: var(--site-pad) !important;
  width: 100% !important;
}

.site-footer .container{
  max-width: var(--site-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--site-pad) !important;
  padding-right: var(--site-pad) !important;
  width: 100% !important;
}

/* ==========================================================
   EA image equal height + 60/40 layout
   ========================================================== */
#ea-block .row.align-items-center{
  align-items: stretch !important;
}
#ea-block .row.align-items-center > [class*="col-"]{
  display:flex;
}
#ea-block .ea-image{
  flex:1;
  display:flex;
}
#ea-block .ea-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 12px;
  display:block;
}

@media (min-width: 992px){
  #ea-block .col-lg-6:first-child{
    flex: 0 0 60% !important;
    max-width: 60% !important;
  }
  #ea-block .col-lg-6:last-child{
    flex: 0 0 40% !important;
    max-width: 40% !important;
  }
}

.footer-area a {
    color: #163a6b;
    font-weight: 500;
    text-decoration: none;
}

.footer-area a:hover {
    color: #b98a22;
}