:root {
  --blue-900: #073763;
  --blue-700: #07579f;
  --blue-050: #edf6ff;
  --red-600: #e01446;
  --green-700: #16735f;
  --ink: #13202f;
  --muted: #5f6d7a;
  --line: #dce5ee;
  --surface: #ffffff;
  --soft: #f7fafc;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(7, 55, 99, 0.13);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--surface); font-size: 17px; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red-600); }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: white; padding: 10px 14px; z-index: 20; }
.skip-link:focus { left: 8px; }
.site-header { position: sticky; top: 0; z-index: 15; background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--blue-900); }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.primary-nav { margin-left: auto; }
.menu { list-style: none; display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; font-size: 15px; font-weight: 700; }
.menu-item-has-children { position: relative; }
.sub-menu { position: absolute; top: 100%; left: -18px; width: 320px; max-height: 70vh; overflow: auto; list-style: none; margin: 0; padding: 14px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius); opacity: 0; pointer-events: none; transform: translateY(8px); transition: 180ms ease; }
.menu-item-has-children:hover .sub-menu, .menu-item-has-children:focus-within .sub-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sub-menu a { display: block; padding: 8px 10px; border-radius: 6px; }
.sub-menu a:hover { background: var(--blue-050); }
.nav-toggle { display: none; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 6px; border: 1px solid transparent; font-weight: 800; transition: 180ms ease; }
.button-primary { background: var(--red-600); color: white; box-shadow: 0 8px 18px rgba(224,20,70,0.22); }
.button-primary:hover { color: white; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(224,20,70,0.25); }
.button-secondary { background: white; color: var(--blue-900); border-color: var(--line); }
.button-light { background: white; color: var(--blue-900); }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero { padding: 72px 0 54px; background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--green-700); font-weight: 850; font-size: 13px; line-height: 1.3; text-transform: uppercase; letter-spacing: 0; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; color: var(--blue-900); margin: 0 0 16px; }
h1 { font-size: 54px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }
.lead { font-size: 21px; color: var(--muted); line-height: 1.55; margin: 0; }
.hero-panel { position: relative; min-height: 520px; }
.hero-panel img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.metric-card { position: absolute; left: 24px; bottom: 24px; width: min(330px, calc(100% - 48px)); background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.metric-card strong { display: block; color: var(--blue-900); font-size: 22px; }
.metric-card span { color: var(--muted); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-strip span { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 800; color: var(--blue-900); }
.section { padding: 78px 0; }
.intro-band, .trust-section, .process { background: var(--soft); }
.split { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 54px; align-items: start; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.section-heading h2 { max-width: 720px; }
.section-heading a, .text-link { color: var(--red-600); font-weight: 850; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card, .blog-card, .credentials-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: 180ms ease; }
.service-card:hover, .blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(7,87,159,0.25); }
.service-card p, .blog-card p { color: var(--muted); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; list-style: none; margin: 0; padding: 0; }
.feature-list li { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.feature-list strong { display: block; color: var(--blue-900); margin-bottom: 6px; }
.feature-list span { color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps div { background: white; border-left: 4px solid var(--red-600); border-radius: var(--radius); padding: 24px; }
.steps span { color: var(--red-600); font-weight: 900; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
blockquote { margin: 0; padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
blockquote p { font-size: 24px; line-height: 1.4; color: var(--blue-900); margin-top: 0; }
cite { color: var(--muted); font-style: normal; font-weight: 800; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cta-band { padding: 56px 0; background: var(--blue-900); color: white; }
.cta-band h2, .cta-band .eyebrow { color: white; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.compact { padding: 38px 0; }
.page-hero { padding: 76px 0 48px; background: var(--blue-050); }
.service-hero { background: linear-gradient(180deg, var(--blue-050), white); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 48px; align-items: start; }
.entry-content h2 { margin-top: 34px; }
.entry-content p { color: #25384b; }
.check-list { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 10px; height: 10px; border-radius: 50%; background: var(--green-700); }
.note { border-left: 4px solid var(--red-600); background: #fff6f8; padding: 16px 18px; border-radius: var(--radius); margin: 24px 0; }
.service-sidebar { position: sticky; top: 110px; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: white; }
.service-sidebar a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); font-weight: 750; font-size: 15px; }
.contact-form { display: grid; gap: 16px; margin-top: 28px; }
.contact-form label { display: grid; gap: 6px; font-weight: 800; color: var(--blue-900); }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px; font: inherit; background: white; }
input:focus, textarea:focus, select:focus { outline: 3px solid var(--blue-050); border-color: var(--blue-700); }
.form-success { background: #edf9f5; color: var(--green-700); border: 1px solid #b9e2d5; padding: 14px 16px; border-radius: var(--radius); }
.site-footer { background: #091d31; color: #dce8f2; padding: 58px 0 28px; }
.site-footer h2 { color: white; font-size: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
.footer-logo { width: 74px; height: 74px; object-fit: contain; background: white; border-radius: var(--radius); padding: 6px; }
.footer-url { font-weight: 850; color: white; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.16); display: flex; justify-content: space-between; gap: 18px; font-size: 14px; }
.sticky-cta { position: fixed; right: 20px; bottom: 20px; z-index: 12; background: var(--red-600); color: white; font-weight: 850; padding: 12px 16px; border-radius: 999px; box-shadow: var(--shadow); }
.reveal { opacity: 0; transform: translateY(18px); transition: 500ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.elementor .hero-grid.e-con, .elementor .split.e-con, .elementor .content-layout.e-con { display: grid !important; }
.elementor .card-grid, .elementor .steps, .elementor .quote-grid, .elementor .blog-grid, .elementor .feature-list { display: grid !important; }
.elementor .cta-inner.e-con { display: flex !important; }
.elementor .hero.e-con, .elementor .section.e-con, .elementor .cta-band.e-con { --padding-top: 0; --padding-bottom: 0; --padding-left: 0; --padding-right: 0; }
.elementor .elementor-widget:not(:last-child) { margin-block-end: 0; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 980px) {
  body { font-size: 16px; }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .header-inner { min-height: 72px; }
  .nav-toggle { display: inline-flex; margin-left: auto; border: 1px solid var(--line); background: white; border-radius: 6px; padding: 10px 12px; font-weight: 850; }
  .primary-nav { display: none; position: absolute; left: 20px; right: 20px; top: 74px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
  .primary-nav.is-open { display: block; }
  .menu { display: grid; gap: 10px; align-items: stretch; }
  .sub-menu { position: static; width: auto; max-height: 260px; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; margin-top: 8px; }
  .header-cta { display: none; }
  .hero-grid, .split, .content-layout { grid-template-columns: 1fr; }
  .card-grid, .steps, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .feature-list, .quote-grid { grid-template-columns: 1fr; }
  .hero-panel, .hero-panel img { min-height: 360px; height: 360px; }
  .section-heading, .cta-inner { align-items: start; flex-direction: column; }
  .service-sidebar { position: static; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .hero, .section, .page-hero { padding: 46px 0; }
  .card-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { left: 14px; right: 14px; text-align: center; border-radius: 6px; }
  .footer-bottom { flex-direction: column; }
}
/* ==================================================
   CUSTOM UI SECTIONS
================================================== */

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

.hero-title{

  font-size:clamp(36px,5vw,78px);

  font-weight:700;

  line-height:1.08;

  text-align:center;

  color:#0b0736;

  letter-spacing:-2px;

  max-width:1100px;

  margin:0 auto 24px;

  padding:0 20px;
}

.hero-title .highlight{

  color:var(--red-600);

  position:relative;

  display:inline-block;
}

.hero-title .highlight::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-10px;

  width:100%;
  height:8px;

  background:url("https://svgshare.com/i/1BzG.svg") no-repeat center;

  background-size:contain;
}

.hero-text{

  font-size:clamp(17px,2vw,22px);

  line-height:1.7;

  text-align:center;

  color:#1d1d3f;

  max-width:850px;

  margin:0 auto;

  padding:0 20px;
}

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

.card-grid{

  display:grid;

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

  gap:30px;

  margin-top:60px;
}

.service-card{

  display:flex;

  flex-direction:column;

  background:#ffffff;

  border-radius:24px;

  padding:35px;

  box-shadow:0 10px 30px rgba(0,0,0,.06);

  transition:.3s ease;
}

.service-card:hover{

  transform:translateY(-8px);

  box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.service-card h3{

  margin-bottom:20px;

  font-size:34px;

  line-height:1.1;

  font-weight:700;

  letter-spacing:-1px;
}

.service-card h3 a{

  text-decoration:none;

  color:#0b0736;
}

.service-card p{

  flex-grow:1;

  font-size:18px;

  line-height:1.8;

  color:#333;

  margin-bottom:30px;
}

.text-link{

  color:var(--red-600);

  text-decoration:none;

  font-weight:700;

  font-size:17px;
}

.text-link::after{
  content:" →";
}

/* ==================================================
   CARD ICON
================================================== */

.card-icon{
  margin-bottom:24px;
}

.card-icon svg{

  width:60px;
  height:60px;

  display:block;
}

/* ==================================================
   WHY SECTION
================================================== */

.why-grid{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:24px;
}

.why-card{

  background:#ffffff;

  border:1px solid var(--line);

  border-radius:22px;

  padding:40px 40px;

  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.why-card h3{

  font-size:20px;

  line-height:1.2;

  margin:18px 0 14px;

  color:#0b0736;

  font-weight:700;
}

.why-card p{

  font-size:17px;

  line-height:1.7;

  color:#4b5563;
}

/* ==================================================
   WORKFLOW SECTION
================================================== */

.workflow-section{

  width:100%;

  max-width:1400px;

  margin:0 auto;

  padding:120px 24px;
}

/* ==================================================
   WORKFLOW HEADING
================================================== */

.workflow-heading{

  text-align:center;

  max-width:1000px;

  margin:0 auto 80px;
}

.workflow-label{

  display:block;

  font-size:14px;

  font-weight:700;

  letter-spacing:1px;

  color:#006b5f;

  margin-bottom:20px;
}

.workflow-line{

  width:42px;

  height:4px;

  border-radius:999px;

  background:#006b5f;

  margin:0 auto 36px;
}

.workflow-heading h2{

  font-size:clamp(48px,6vw,88px);

  line-height:1.02;

  letter-spacing:-3px;

  font-weight:700;

  color:#071437;

  max-width:900px;

  margin:0 auto;
}

/* ==================================================
   WORKFLOW GRID
================================================== */

.workflow-grid{

  display:grid;

  grid-template-columns:repeat(4,minmax(0,1fr));

  gap:24px;

  align-items:stretch;
}

/* ==================================================
   WORKFLOW CARD
================================================== */

.workflow-card{

  position:relative;

  width:100%;

  min-width:0;

  background:#ffffff;

  border:1px solid #e4e9f0;

  border-radius:18px;

  padding:26px 24px 30px;

  overflow:visible;

  transition:.25s ease;

  min-height:390px;
}

.workflow-card:hover{

  transform:translateY(-8px);

  box-shadow:0 24px 60px rgba(0,0,0,.08);
}

/* ==================================================
   WORKFLOW NUMBER
================================================== */

.workflow-number{

  display:block;

  font-size:18px;

  font-weight:700;

  color:var(--red-600);

  margin-bottom:22px;
}

/* ==================================================
   WORKFLOW ICON
================================================== */

.workflow-icon{

  width:82px;

  height:82px;

  border-radius:999px;

  display:flex;

  align-items:center;

  justify-content:center;

  margin-bottom:28px;

  background:
  linear-gradient(
    135deg,
    rgba(230,0,126,.10),
    rgba(230,0,126,.04)
  );
}

.workflow-icon svg{

  width:44px;

  height:44px;

  display:block;
}

/* ==================================================
   WORKFLOW TITLE
================================================== */

.workflow-card h3{

  font-size:24px;

  line-height:1.12;

  letter-spacing:-1px;

  font-weight:700;

  color:#071437;

  margin-bottom:18px;
}

.workflow-card h3::after{

  content:"";

  display:block;

  width:44px;

  height:3px;

  border-radius:999px;

  background:var(--red-600);

  margin-top:18px;
}

/* ==================================================
   WORKFLOW TEXT
================================================== */

.workflow-card p{

  font-size:16px;

  line-height:1.7;

  color:#5b6472;

  max-width:240px;
}

/* ==================================================
   WORKFLOW ARROW
================================================== */

.workflow-arrow{

  position:absolute;

  top:50%;

  right:-36px;

  transform:translateY(-50%);

  width:42px;

  height:42px;

  border-radius:999px;

  background:rgb(0,69,145);

  color:#ffffff;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:22px;

  font-weight:700;

  z-index:5;

  box-shadow:
  0 10px 30px rgba(0,69,145,.20),
  0 0 24px rgba(0,69,145,.16);
}

.workflow-arrow::before{

  content:"";

  position:absolute;

  width:110px;

  height:12px;

  background:
  linear-gradient(
    90deg,
    rgba(0,69,145,0),
    rgba(0,69,145,.14),
    rgba(0,69,145,0)
  );

  z-index:-1;
}

.workflow-card:last-child .workflow-arrow{
  display:none;
}

/* ==================================================
   BLOG CONTENT
================================================== */

.entry-content{

  max-width:780px;

  margin:0 auto;

  font-size:20px;

  line-height:1.9;

  color:#334155;
}

.entry-content h2{

  font-size:48px;

  line-height:1.08;

  letter-spacing:-2px;

  margin-top:90px;

  margin-bottom:28px;

  color:#071437;
}

.entry-content h3{

  font-size:32px;

  line-height:1.15;

  margin-top:60px;

  margin-bottom:20px;

  color:#071437;
}

.entry-content p{
  margin-bottom:28px;
}

.entry-content ul,
.entry-content ol{

  margin:32px 0;

  padding-left:24px;
}

.entry-content li{
  margin-bottom:16px;
}

.entry-content img{

  border-radius:24px;

  margin:50px 0;
}

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

.site-footer{

  background:#091d31;

  color:#dce8f2;

  margin-top:120px;

  border-top-left-radius:32px;

  border-top-right-radius:32px;

  overflow:hidden;
}

.footer-grid{

  width:100%;

  display:grid;

  grid-template-columns:1.2fr 1fr 1fr 1fr;

  gap:48px;

  padding:90px 60px 70px;
}

.site-footer h2{

  color:#ffffff;

  font-size:18px;

  font-weight:700;

  margin-bottom:22px;
}

.site-footer p{

  color:rgba(220,232,242,.78);

  line-height:1.8;
}

.site-footer ul{

  list-style:none;

  padding:0;

  margin:0;
}

.site-footer li{

  margin-bottom:14px;
}

.site-footer a{

  color:rgba(220,232,242,.82);

  text-decoration:none;

  transition:.2s ease;
}

.site-footer a:hover{

  color:#ffffff;
}

.footer-logo{

  width:78px;

  height:78px;

  object-fit:contain;

  background:#ffffff;

  border-radius:18px;

  padding:8px;

  margin-bottom:24px;
}

.footer-url{

  color:#ffffff !important;

  font-weight:700;

  margin-top:22px;
}



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

@media(max-width:1024px){

  .footer-grid{

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:40px;
  }

}

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

@media(max-width:768px){

  .site-footer{

    border-top-left-radius:24px;

    border-top-right-radius:24px;

    margin-top:80px;
  }

  .footer-grid{

    grid-template-columns:1fr;

    gap:34px;

    padding:50px 24px;
  }

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

@media(max-width:1200px){

  .workflow-grid{

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:20px;
  }

  .workflow-arrow{
    display:none;
  }

}

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

@media(max-width:1024px){

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

  .footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}

@media(max-width:768px){

  .card-grid{

    grid-template-columns:1fr;

    gap:20px;
  }

  .service-card{

    padding:30px;
  }

  .service-card h3{

    font-size:32px;

    line-height:1.08;

    margin-bottom:18px;
  }

  .service-card p{

    font-size:18px;

    line-height:1.75;

    margin-bottom:26px;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .workflow-section{
    padding:80px 18px;
  }

  .workflow-heading{
    margin-bottom:50px;
  }

  .workflow-heading h2{

    font-size:48px;

    line-height:1.05;

    letter-spacing:-2px;
  }

  .workflow-grid{

    grid-template-columns:1fr;

    gap:18px;
  }

  .workflow-card{

    min-height:auto;

    padding:24px;
  }

  .workflow-number{
    margin-bottom:18px;
  }

  .workflow-icon{

    width:74px;

    height:74px;

    margin-bottom:22px;
  }

  .workflow-icon svg{

    width:38px;

    height:38px;
  }

  .workflow-card h3{
    font-size:22px;
  }

  .workflow-card p{

    font-size:15px;

    max-width:none;
  }

  .footer-grid{

    gap:24px;

    padding:50px 20px;
  }

  .footer-bottom{

    flex-direction:column;

    gap:10px;

    text-align:center;

    padding:20px;
  }

  .entry-content{
    font-size:18px;
  }

  .entry-content h2{

    font-size:40px;

    margin-top:70px;
  }

}
/* ==================================================
   BLOG TEMPLATE
================================================== */

.blog-hero{

  padding:100px 0 50px;

  background:#ffffff;
}

.blog-hero h1{

  font-size:clamp(54px,6vw,92px);

  line-height:.96;

  letter-spacing:-4px;

  color:var(--blue-900);

  margin-bottom:28px;
}

.post-meta{

  display:flex;

  align-items:center;

  gap:14px;

  color:var(--muted);

  font-size:16px;
}

.featured-image-section{

  margin-bottom:70px;
}

.featured-image-section img{

  width:100%;

  border-radius:28px;

  display:block;

  box-shadow:var(--shadow);
}

.entry-content{

  max-width:780px;

  margin:0 auto;

  font-size:20px;

  line-height:1.9;

  color:#334155;
}

.entry-content h2{

  font-size:48px;

  line-height:1.08;

  letter-spacing:-2px;

  color:var(--blue-900);

  margin-top:90px;

  margin-bottom:26px;
}

.entry-content h3{

  font-size:32px;

  line-height:1.12;

  color:var(--blue-900);

  margin-top:60px;

  margin-bottom:20px;
}

.entry-content p{
  margin-bottom:28px;
}

.entry-content ul,
.entry-content ol{

  margin:32px 0;

  padding-left:24px;
}

.entry-content li{
  margin-bottom:16px;
}

.entry-content img{

  border-radius:24px;

  margin:50px 0;
}

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

@media(max-width:768px){

  .blog-hero{

    padding:70px 0 40px;
  }

  .blog-hero h1{

    font-size:48px;

    line-height:1;

    letter-spacing:-2px;
  }

  .post-meta{

    flex-wrap:wrap;

    gap:10px;
  }

  .entry-content{

    font-size:18px;
  }

  .entry-content h2{

    font-size:38px;

    margin-top:70px;
  }

  .entry-content h3{

    font-size:28px;
  }

}
.page-hero.blog-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem) !important;
  line-height: 1.1 !important;
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4rem;
  align-items: start;
}

.entry-content {
  min-width: 0;
}

.blog-sidebar {
  position: sticky;
  top: 120px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.blog-sidebar h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.blog-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar li {
  margin-bottom: 1rem;
}

.blog-sidebar a {
  text-decoration: none;
  color: #111827;
  line-height: 1.5;
}

.blog-sidebar a:hover {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
  position: sticky;
  top: 120px;

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* BOXES */

.sidebar-top-box,
.sidebar-links-box {
  padding: 1.5rem;
  border: 2px solid rgb(229, 15, 56);
  border-radius: 20px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.sidebar-top-box:hover,
.sidebar-links-box:hover {
  border-color: rgb(0, 69, 145);
  box-shadow: 0 12px 30px rgba(0, 69, 145, 0.12);
}

/* IMAGE */

.sidebar-banner {
  border-radius: 16px;
  overflow: hidden;
}

.sidebar-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* LINKS */

.blog-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar li {
  margin-bottom: 1rem;
}

.blog-sidebar li:last-child {
  margin-bottom: 0;
}

.blog-sidebar a {
  color: #111827;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.blog-sidebar a:hover {
  color: rgb(0, 69, 145);
}

/* MOBILE */

@media (max-width: 992px) {

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: relative;
    top: 0;
    order: -1;
    margin-bottom: 2rem;
  }

}
/* ==================================================
   Enquiry-Form
================================================== */
	/* WPForms Styling */

div.wpforms-container-full .wpforms-form input[type=text],
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form input[type=tel],
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form textarea {

    border: 1px solid #dfe5ec !important;
    border-radius: 14px !important;

    padding: 14px 18px !important;

    min-height: 54px !important;

    background: #fff !important;

    font-size: 16px !important;

    transition: all .3s ease !important;
}

div.wpforms-container-full .wpforms-form textarea {

    min-height: 180px !important;
}

div.wpforms-container-full .wpforms-form input:focus,
div.wpforms-container-full .wpforms-form select:focus,
div.wpforms-container-full .wpforms-form textarea:focus {

    border-color: rgb(229,15,56) !important;

    box-shadow: 0 0 0 4px rgba(229,15,56,.12) !important;
}

div.wpforms-container-full .wpforms-form button[type=submit] {

    background: rgb(229,15,56) !important;

    color: #fff !important;

    border: none !important;

    border-radius: 999px !important;

    padding: 16px 32px !important;

    font-weight: 600 !important;

    font-size: 16px !important;

    transition: all .3s ease !important;
}

div.wpforms-container-full .wpforms-form button[type=submit]:hover {

    background: rgb(0,69,145) !important;
}
	/* ==========================
   FOOTER
========================== */

.site-footer {

    max-width: 1400px;

    margin: 120px auto 40px;

    padding: 80px 60px 0;

    background: #001f3f;

    border-radius: 28px;

    color: rgba(255,255,255,.8);

}

/* ==========================
   GRID
========================== */

.footer-grid {

    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;

}

/* ==========================
   BRAND
========================== */

.footer-brand {

    max-width: 360px;

}

.footer-logo {

    display: block;

    width: 120px;

    height: auto;

    margin-bottom: 28px;

}

.footer-brand p {

    line-height: 1.9;

    margin-bottom: 30px;

    color: rgba(255,255,255,.75);

}

.footer-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 26px;

    background: rgb(229,15,56);

    color: #fff;

    text-decoration: none;

    border-radius: 999px;

    font-weight: 600;

    transition: .3s ease;

}

.footer-cta:hover {

    background: rgb(0,69,145);

}

/* ==========================
   HEADINGS
========================== */

.site-footer h2 {

    color: #fff;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 24px;

}

/* ==========================
   LINKS & LISTS
========================== */

.site-footer ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

.site-footer li {

    margin-bottom: 16px;

}

.site-footer a {

    color: rgba(255,255,255,.75);

    text-decoration: none;

    transition: .25s ease;

}

.site-footer a:hover {

    color: #fff;

}

/* ==========================
   BOTTOM BAR
========================== */

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 24px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    font-size: 14px;

    color: rgba(255,255,255,.55);

}

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

@media (max-width: 992px) {

    .site-footer {

        padding: 50px 30px 0;

        margin: 80px 16px 24px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 12px;

        text-align: center;

    }

    .footer-brand {

        max-width: 100%;

    }

}
	.sticky-consultation-btn {

    display: none;

    position: fixed;

    bottom: 20px;
    right: 20px;

    z-index: 9999;

    background: rgb(229,15,56);

    color: #fff;

    padding: 16px 26px;

    border-radius: 999px;

    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 12px 30px rgba(229,15,56,.25);

    transition: all .3s ease;
}

.sticky-consultation-btn:hover {

    background: rgb(0,69,145);

    color: #fff;

    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .sticky-consultation-btn {

        display: block;

        left: 12px;
        right: 12px;

        bottom: 12px;

        text-align: center;

        border-radius: 14px;
    }

}
.menu a {
  color: #073763; /* رنگ فعلی یا رنگ دلخواه */
}

.site-header .menu a,
.site-header .primary-nav a,
.site-header .sub-menu a,
header.site-header a:not(.button):not(.button-primary):not(.header-cta):not(.elementor-button),
.elementor-location-header a:not(.button):not(.button-primary):not(.header-cta):not(.elementor-button),
.elementor-location-header .elementor-nav-menu a,
.elementor-location-header .elementor-item {
  color: rgb(0, 69, 145) !important;
}

.site-header .header-cta,
.site-header .button-primary,
.site-header .elementor-button,
header.site-header a.button,
header.site-header a.button-primary,
header.site-header a.header-cta,
header.site-header a.elementor-button,
.elementor-location-header a.button,
.elementor-location-header a.button-primary,
.elementor-location-header a.header-cta,
.elementor-location-header a.elementor-button,
.elementor-location-header .elementor-button {
  background: rgb(0, 69, 145) !important;
  border-color: rgb(0, 69, 145) !important;
  color: #fff !important;
}

.site-header .header-cta:hover,
.site-header .button-primary:hover,
.site-header .elementor-button:hover,
header.site-header a.button:hover,
header.site-header a.button-primary:hover,
header.site-header a.header-cta:hover,
header.site-header a.elementor-button:hover,
.elementor-location-header a.button:hover,
.elementor-location-header a.button-primary:hover,
.elementor-location-header a.header-cta:hover,
.elementor-location-header a.elementor-button:hover,
.elementor-location-header .elementor-button:hover {
  background: rgb(0, 69, 145) !important;
  border-color: rgb(0, 69, 145) !important;
  color: #fff !important;
}
.copyright {
    display: block;
    text-align: center;
}