/* Family Visa Dubai — styled after docman.ae */
:root {
  --navy: #0b3d6e;
  --navy-dark: #082c50;
  --navy-darker: #061f3a;
  --orange: #e89c1f;
  --orange-dark: #c8851a;
  --accent: #d6334c;
  --text: #1f2937;
  --muted: #5b6b80;
  --border: #e5eaf0;
  --bg-soft: #f5f7fa;
  --white: #ffffff;
  --shadow-card: 0 10px 30px -10px rgba(11, 61, 110, 0.18);
  --shadow-soft: 0 6px 24px rgba(11,61,110,.08);
  --radius: 10px;
  --radius-lg: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }
h1, h2, h3, h4 { font-weight: 700; color: var(--navy-darker); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--text); }
ul { padding-left: 1.2rem; margin: 0 0 1em; }
ul li { margin-bottom: .4rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section { padding: 4.5rem 0; }
.section--soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--muted); }

/* Buttons */
.btn { display: inline-block; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem; border: 2px solid transparent; cursor: pointer; transition: all .2s ease; text-align: center; }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--block { width: 100%; }

/* Header — sticky for all pages */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  padding: .85rem 0;
  background: var(--navy);
  box-shadow: 0 2px 14px rgba(0,0,0,.18);
  transition: padding .2s ease, background .2s ease;
}
/* Hero pages get a transparent header that turns solid on scroll */
.site-header.is-transparent { background: transparent; box-shadow: none; }
/* .site-header.is-scrolled { background: var(--navy); box-shadow: 0 2px 14px rgba(0,0,0,.22); padding: .7rem 0; } */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: flex; align-items: center; gap: .55rem; color: #fff; font-weight: 800; font-size: 1.35rem; letter-spacing: -.01em; }
.brand-logo { height: 42px; width: auto; display: block; }
.footer .brand-logo { height: 38px; filter: brightness(1.05); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links a { color: #fff; font-weight: 500; font-size: .96rem; }
.nav-links a:hover, .nav-links a.is-active { color: var(--orange); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: .7em; opacity: .8; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 0; min-width: 220px;
  background: #fff; border-radius: var(--radius); padding: .5rem;
  box-shadow: var(--shadow-card); opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: .55rem .8rem; color: var(--text); border-radius: 6px; font-size: .92rem; }
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: .55rem; }
.call-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--navy-dark); border-radius: 999px; padding: .45rem 1rem;
  color: #fff; font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-dark);
  transition: transform .2s;
}

.call-badge:hover{transform: scale(1.07); color:var(--navy-dark);}
.call-badge .label { font-size: .68rem; line-height: 1; opacity: .85; display: block; letter-spacing: .08em; }
.call-badge .num { font-size: 1.05rem; line-height: 1.1; color: var(--orange); }

.wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: #25d366; color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,.45); transition: transform .2s;
}
.wa-btn:hover { transform: scale(1.07); color: #fff; }
.wa-btn svg { width: 22px; height: 22px; }

/* Hamburger */
.hamburger { display: none; background: transparent; border: 0; padding: .5rem; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: all .2s; }

/* Hero */
.hero { position: relative; color: #fff; padding: 5rem 0 4rem; overflow: hidden; margin-top: -76px; padding-top: 9rem; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,30,60,.92) 0%, rgba(11,61,110,.78) 50%, rgba(11,61,110,.55) 100%),
              url("../img/banner-img.jpg") center/cover no-repeat;
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 3rem; align-items: center; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: #ffd693; }
.hero p.lead { color: #d6e3f2; font-size: 1.05rem; max-width: 580px; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.25rem; max-width:100%; }
.stat-card { border: 2px solid rgba(255,255,255,.25); border-radius: var(--radius); padding: 1rem 1.1rem; }
.stat-card .num { font-size: 1.85rem; font-weight: 800; color: #fff; }
.stat-card .label { font-size: .85rem; color: #cfdcec; }

/* Lead form card */
.lead-card { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: 0 30px 60px -20px rgba(0,0,0,.35); color: var(--text); }
.lead-card .eyebrow { color: var(--navy); }
.lead-card h3 { color: var(--navy-darker); margin-bottom: 1rem; }
.field { margin-bottom: .8rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--border); border-radius: 8px;
  background: #f8fafc; font: inherit; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--orange); border-color: var(--orange); background: #fff; }
.contact-line { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.contact-line .label { font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.contact-line .links { display: flex; gap: .5rem; flex-wrap: wrap; }
.contact-line .links a { padding: .55rem .9rem; border-radius: 999px; font-size: .85rem; color: #fff; font-weight: 600; }
.btn-call { background: var(--navy); }
.btn-wa   { background: #25d366; }
.form-success { display: none; padding: .75rem 1rem; background: #e7f7ee; border: 1px solid #9ed8b6; color: #196b3a; border-radius: 8px; margin-top: .5rem; font-size: .9rem; }
.form-success.is-visible { display: block; }

/* Service cards — flex so orphan items in the last row are centered */
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.cards > .card { flex: 1 1 260px; max-width: calc(25% - 1rem); }
@media (max-width: 1100px) { .cards > .card { max-width: calc(33.333% - .85rem); } }
@media (max-width: 760px)  { .cards > .card { max-width: 100%; } }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.6rem; transition: all .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: transparent; }
.card .icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  display: grid; place-items: center; color: #fff; margin-bottom: 1rem;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .94rem; margin-bottom: .8rem; }
.card a.more { font-weight: 600; font-size: .9rem; color: var(--orange); }
.card a.more::after { content: "→"; transition: transform .2s; display: inline-block; }
.card a.more:hover::after { transform: translateX(4px); }

/* Two-column lists (what-we-help / docs) */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative; padding-left: 2rem; margin-bottom: .75rem; color: var(--text);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: .75rem; font-weight: 700;
  display: grid; place-items: center;
}
.panel { background: #fff; border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 3rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: .25rem; }
.cta-band p { color: #cfdcec; margin: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 1.1rem 1.3rem; font-weight: 600; font-size: 1rem; color: var(--navy-darker);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .chev { transition: transform .2s; color: var(--orange); font-size: 1.3rem; line-height: 1; }
.faq-item.is-open .faq-q .chev { transform: rotate(45deg); }
.faq-a { padding: 0 1.3rem; max-height: 0; overflow: hidden; transition: all .25s ease; color: var(--muted); }
.faq-item.is-open .faq-a { padding: 0 1.3rem 1.1rem; max-height: 800px; }

/* Page hero (inner pages) */
.page-hero {
  position: relative; color: #fff; padding: 7rem 0 4rem; margin-top: -76px; padding-top: 9rem;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(8,30,60,.93), rgba(11,61,110,.78)),
              url("../img/comman-banner.jpg") center/cover no-repeat;
}
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero p { color: #d6e3f2; max-width: 720px; }
.crumbs { font-size: .85rem; color: #cfdcec; margin-bottom: .75rem; }
.crumbs a { color: #ffd693; }

/* Intro split (image + text) shown directly under banner */
.intro-split {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
}
.intro-split .intro-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 4/3; background: var(--bg-soft);
}
.intro-split .intro-img::after {
  content: ""; position: absolute; inset: auto -1.5rem -1.5rem auto;
  width: 60%; height: 60%; background: var(--orange); opacity: .15; border-radius: var(--radius-lg); z-index: -1;
}
.intro-split .intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-split .intro-body h2 { margin-bottom: 1rem; }

/* Feature grid — flex so orphan items in last row are centered */
.feature-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.25rem; margin-top: 2rem;
}
.feature-grid > .feature-card { flex: 1 1 260px; max-width: calc(33.333% - .85rem); }
@media (max-width: 960px) { .feature-grid > .feature-card { max-width: calc(50% - .65rem); } }
@media (max-width: 600px) { .feature-grid > .feature-card { max-width: 100%; } }
.feature-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.6rem;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--accent));
  transform: scaleY(.3); transform-origin: top; transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-card:hover::before { transform: scaleY(1); }
.feature-card .fc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--navy) 12%, white), color-mix(in oklab, var(--orange) 18%, white));
  display: grid; place-items: center; color: var(--navy); margin-bottom: 1.1rem;
  font-size: 1.6rem;
}
.feature-card h3 { color: var(--navy-darker); margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .95rem; margin: 0; }

.section-cta-center { text-align: center; margin-top: 2.5rem; }

/* Process Steps — replicates the connected-dots layout from the reference */
.process { padding: 5rem 0; background: var(--bg-soft);}
.process-track {
  position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 1rem; margin-top: 3rem;
}
.process-step { position: relative; text-align: center; padding-top: 4.5rem; }
.process-step .ps-num {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--orange); background: #fff; color: var(--orange);
  display: grid; place-items: center; font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(214,51,76,.18); z-index: 2;
}
.process-step .ps-card {
  background: #fff; border-radius: 18px; padding: 1.6rem 1.2rem 1.4rem;
  box-shadow: 0 10px 30px -12px rgba(11,61,110,.18);
  margin-top: 32px; padding-top: 2.6rem;
}
.process-step h4 { color: var(--navy-darker); margin: 0 0 .55rem; font-size: 1.1rem; }
.process-step p { color: var(--muted); font-size: .92rem; margin: 0; }
/* dashed connector between steps */
.process-step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; left: calc(50% + 36px); right: calc(-50% + 36px);
  height: 0; border-top: 2px dashed rgba(214,51,76,.45);
  z-index: 1;
}



@media (max-width: 760px) {
  .process-step:not(:last-child)::after { display: none; }

  .nav-dropdown-menu--wide .nav-col a{color: #fff !important;}

  ul.checklist{columns:1 !important;}
}

/* Government agencies slider */
.gov-strip { background: #eaf2fb; padding: 4rem 0; }
.gov-strip h2 { text-align: center; letter-spacing: .04em; }
.gov-strip .lead { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; color: var(--muted); }
.gov-slider .gov-item { padding: 1rem 1.5rem; }
.gov-slider .gov-item img { max-height: 80px; width: auto; margin: 0 auto; }

/* Google Reviews */
.reviews { background: var(--bg-soft); padding: 5rem 0; }
.reviews .reviews-head { text-align: center; margin-bottom: 2.5rem; }
.reviews .reviews-head .eyebrow {font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 2.5rem; align-items: center; }
.reviews-slider { min-width: 0; padding: 0 2.25rem; }
.reviews-slider .slick-list { overflow: hidden; }
.reviews-slider .slick-track { display: flex; }
.reviews-slider .slick-slide { height: auto; }
.reviews-slider .slick-slide > div { height: 100%; }
.reviews-summary { text-align: center; padding: 1.5rem; }
.reviews-summary .excellent { font-weight: 800; color: var(--navy-darker); letter-spacing: .04em; margin-bottom: .35rem; font-size: 1.25rem; }
.reviews-summary .stars { color: #fbbc04; font-size: 1.9rem; letter-spacing: .12em; margin-bottom: .35rem; }
.reviews-summary .based { color: var(--navy-darker); font-size: .95rem; margin-bottom: .85rem; }
.reviews-summary .based b { color: var(--navy-darker); font-weight: 700; }
.reviews-summary .glogo-img { height: 38px; width: auto; display: inline-block; }

.review-card {
  background: #fff; border-radius: 14px; padding: 1.4rem 1.3rem; margin: .5rem .6rem; height: 280px; display: flex; flex-direction: column;
  box-sizing: border-box;
}
.review-card .rc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .65rem; }
.review-card .rc-who { display: flex; align-items: center; gap: .65rem; }
.review-card .rc-avatar { width: 42px; height: 42px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; }
.review-card .rc-name { font-weight: 700; color: var(--navy-darker); font-size: .95rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100px;}
.review-card .rc-ago { color: var(--muted); font-size: .82rem; margin-top: 2px; }
.review-card .rc-glogo { display: inline-flex; flex-shrink: 0; }
.review-card .rc-rating { display: flex; align-items: center; gap: .4rem; margin-bottom: .55rem; }
.review-card .rc-stars { color: #fbbc04; letter-spacing: .12em; font-size: 1rem; }
.review-card .rc-verified { width: 16px; height: 16px; border-radius: 50%; background: #2196f3; color: #fff; font-size: .7rem; display: inline-grid; place-items: center; font-weight: 700; }
.review-card .rc-text {
  color: var(--navy-darker); font-size: .92rem; line-height: 1.55; margin: 0 0 .6rem; flex: 1;
  overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4;
}
.review-card.is-expanded { height: auto; min-height: 280px; }
.review-card.is-expanded .rc-text { -webkit-line-clamp: unset; display: block; overflow: visible; }
.review-card .rc-more { color: var(--muted); font-size: .85rem; font-weight: 600; text-decoration: none; cursor: pointer; background: none; border: 0; padding: 0; align-self: flex-start; display: none; }
.review-card.has-overflow .rc-more { display: inline-block; }
.review-card .rc-more:hover { color: var(--navy); text-decoration: underline; }

.reviews-slider .slick-prev, .reviews-slider .slick-next { z-index: 2; width: 36px; height: 36px; }
.reviews-slider .slick-prev{ left: -8px; }
 .gov-slider .slick-prev{left:0px;  z-index: 2;}
.reviews-slider .slick-next{ right: -8px; }
.gov-slider .slick-next{right:0px;  z-index: 2;}
.slick-prev:before, .slick-next:before { color: var(--navy); font-size: 28px; opacity: 1; font-family: slick; }
.slick-dots li button:before { font-size: 10px; color: var(--navy); }

/* Footer */
.footer { background: var(--navy-darker); color: #cfdcec; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: .5rem; }
.footer a { color: #cfdcec; font-size: .92rem; }
.footer a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .85rem; color: #95a8c0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.f_social_icon ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 13px;
}
.f_social_icon ul li {
    font-size: 0px;
    font-weight: 500;
    position: relative;
}
.f_social_icon ul li a {
    width: 40px;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #fff;
}

.f_social_icon ul li:hover a{
  border-color: var(--orange);
}







/* Mega-menu columns */
.nav-dropdown-menu--wide { display: grid; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 1rem 1.5rem; min-width: 640px; padding: 1.25rem 1.5rem; }
.nav-dropdown-menu--wide .nav-col { display: flex; flex-direction: column; gap: .25rem; }
.nav-dropdown-menu--wide .nav-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .35rem; }
.nav-dropdown-menu--wide .nav-col a { padding: .35rem 0; color: var(--navy-darker); font-size: .92rem; }
.nav-dropdown-menu--wide .nav-col a:hover { color: var(--orange); }

/* Contact list with icons */
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: .9rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .9rem; }
.contact-list .ci { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px; background: color-mix(in oklab, var(--navy) 8%, white); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); }
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list .ci--wa { background: #25D366; color: white; }
.contact-list .ci-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.contact-list a { font-weight: 600; }

/* Contact page redesign */
.contact-hero-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: -3rem; position: relative; z-index: 5; }
.contact-tile {
  background: #fff; padding: 1rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 1rem;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.contact-tile::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.contact-tile:hover { transform: translateY(-8px); box-shadow: 0 22px 44px -14px rgba(11,61,110,.30); }
.contact-tile:hover::before { transform: scaleX(1); }
.contact-tile .ct-icon { transition: transform .3s ease; }
.contact-tile:hover .ct-icon { transform: scale(1.1) rotate(-4deg); }
.contact-tile:hover .ct-value { color: var(--orange); }
.contact-tile .ct-icon {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
}
.contact-tile.ct-call .ct-icon { background: var(--navy); }
.contact-tile.ct-wa .ct-icon   { background: #25d366; }
.contact-tile.ct-mail .ct-icon { background: var(--orange); }
.contact-tile.ct-loc .ct-icon  { background: var(--accent); }
.contact-tile .ct-icon svg { width: 22px; height: 22px; }
.contact-tile .ct-label { font-size: .72rem; text-transform: uppercase; color: var(--muted); letter-spacing: .1em; font-weight: 700; }
.contact-tile .ct-value { font-weight: 700; color: var(--navy-darker); }
.contact-tile a.ct-value { color: var(--navy-darker); }
.contact-tile a.ct-value:hover { color: var(--orange); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
.contact-form-card { background: #fff; padding: 2.25rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 960px) {
  .hero-grid, .two-col, .footer-grid, .intro-split, .reviews-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; min-height: auto; }
  .stats { max-width: none; }
  .cta-band { padding: 2rem 1.5rem; }
}
@media (max-width: 760px) {
  .hamburger { display: block; position: absolute; right:15px; }
  .nav-links {
    position: absolute; top: 100%; left: 1rem; right: 1rem;
    background: var(--navy-dark); flex-direction: column; align-items: stretch;
    padding: 1rem; border-radius: var(--radius); margin-top: .5rem;
    display: none; max-height: 70vh; overflow-y: auto;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .6rem; }
  .nav-dropdown > a::after { content: " ▾"; font-size: .8em; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255,255,255,.05); margin-top: .25rem;
    display: none;
  }
  .nav-dropdown.is-open > .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { color: #fff; }
  .nav-dropdown-menu--wide { grid-template-columns: 1fr; min-width: 0; padding: .75rem; display: none; }
  .nav-dropdown.is-open > .nav-dropdown-menu--wide { display: grid; }
  .call-badge { display: none; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .stat-card { padding: .75rem .5rem; text-align: center; }
  .stat-card .num { font-size: 1.3rem; }
  .stat-card .label { font-size: .7rem; }

  .header-actions{display:none;}
}

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.blog-card .thumb { aspect-ratio: 16/9; background: var(--bg-soft); overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.blog-card p { color: var(--muted); font-size: .94rem; flex: 1; }
.blog-card a.more { font-weight: 600; color: var(--orange); margin-top: .5rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }

.article {margin: 0 auto; }
.article .cover { aspect-ratio: 21/9; background: var(--bg-soft); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.article .cover img { width: 100%; height: 100%; object-fit: cover; }
.article h2 { margin-top: 2.2rem; }
.article h3 { margin-top: 1.6rem; }
.article p, .article li { color: var(--text); }
.article blockquote { border-left: 4px solid var(--orange); margin: 1.5rem 0; padding: .25rem 0 .25rem 1.25rem; color: var(--muted); font-style: italic; }






/* ===== TIMELINE ===== */

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 0;
}

/* center line */
.timeline::after {
    content: '';
    position: absolute;
    width: 8px;
    background: linear-gradient(190deg, #F67B50 0%, #0f4667 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    height: 0;
    transition: height 1.5s ease-out, opacity 1.5s ease-out;
}

/* timeline item */
.timeline-container {
    position: relative;
    width: 50%;
    padding: 32px 48px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-container.left {
    left: 0;
}

.timeline-container.right {
    left: 50%;
}

/* circle */
.timeline-container::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 4px solid #e89c1f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 9999;
}

/* card */
.timeline-container .content {
    padding: 38px;
    background: #ffffff;
    position: relative;
    border-radius: 32px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    text-align: center;
}

/* hover */
.timeline-container .content:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    transform: scale(1.05);
}

/* icon */
.icon {
    font-size: 32px;
    margin-right: 16px;
    color: #F67B50;
}

/* link */
a.content-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* animation */
.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline.show-line::after {
    height: 100%;
    opacity: 1;
}

.timeline.hide-line::after {
    height: 0;
    opacity: 0;
}

.timeline-container .content p{margin-bottom:0px; color: var(--muted);
    font-size: .95rem;}

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

@media screen and (max-width: 600px) {

    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 80px;
        padding-right: 40px;
        margin-bottom: 32px;
    }

    .timeline-container.left,
    .timeline-container.right {
        left: 0;
    }

    .timeline-container.left::before,
    .timeline-container.right::before {
        left: 31px;
    }
}


.fancybox__content {
  max-width: 500px !important;
  width: 100%;
  border-radius: 20px;
  padding: 0;
  background:transparent;
}

/* Full-width CTA band */
.cta-full {
  background: linear-gradient(120deg, var(--navy-darker) 0%, var(--navy) 60%, #0f4f8c 100%);
  color: #fff; padding: 4.5rem 0; position: relative; overflow: hidden;
}
.cta-full::before {
  content: ""; position: absolute; inset: 0; opacity: .12; z-index: 0;
  background: radial-gradient(circle at 20% 20%, var(--orange) 0, transparent 40%),
              radial-gradient(circle at 80% 80%, var(--accent) 0, transparent 40%);
}
.cta-full .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-full h2 { color: #fff; margin: 0 0 .5rem; max-width: 720px; }
.cta-full p { color: #d6e3f2; margin: 0; max-width: 720px; }
.cta-full .cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.stat-card:has(img){display: flex; align-items: center;}

.wpcf7-spinner{position: absolute !important;}

.page-id-161 .page-hero .hero-ctas{display:none;}

.page-id-161 .contact-form-card p:has(.eyebrow){
    margin-bottom: 0;
}


.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #0b3d6e;
  color: #0b3d6e;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
  margin: 0 5px;
  background: #fff;
}

.pagination .page-numbers:hover {
  background: #0b3d6e;
  color: #fff;
}

/* Active page (if exists) */
.pagination .page-numbers.current {
  background: #e89c1f;
  border-color: #e89c1f;
  color: #fff;
}


.lead-card form p:has(.eyebrow){margin-bottom:0px;}

.sticky-buttons{display: none;}


@media (max-width: 480px){
  .sticky-buttons {
      position: fixed;
      bottom: 0px;
      left: 0px;
      width: 100%;
      display: flex;
      z-index: 10;
  }

  .sticky-buttons a {
    width:50%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.sticky-buttons .whatsapp-btn {
    background-color: #25d366;
}

.sticky-buttons .call-btn {
    background:#e89c1f;
    font-size: 16px;
    font-weight: 600;
}

    .animation-btn {
        position: absolute;
        background: #787777;
        pointer-events: none;
        border-radius: 50%;
        animation: animate 1s linear infinite;
        transform: translate(25%, -10%);
    }

@keyframes animate {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}

.footer{padding-bottom:80px;}

}