:root {
  --primary: #00447a;
  --navy: #092a4a;
  --deep: #061d35;
  --gold: #d89b3d;
  --ivory: #faf7f1;
  --ink: #17324b;
  --muted: #637184;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.18;
}

h3 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-primary {color:var(--primary) !important;}

.text-gold {color:var(--gold) !important;}

.bg-gold {background:var(--gold) !important;}

.bg-primary {background:var(--primary) !important;}

.bg-white {background:var(--white) !important;}

.topbar {
  background: var(--deep);
  color: #dce6ef;
  font-size: .83rem;
  padding: 8px 0;
}

.topbar a {
  color: white;
}

.topbar i {
  color: var(--gold);
  margin-right: 5px;
}

.navbar {
  background: rgba(255, 255, 255, .96);
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.4); 
  min-height: 76px;
}

.navbar-brand {
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
}

.navbar-brand small {
  font-size: .60rem;
  letter-spacing: 3px;
  display: block;
  color: var(--gold);
  font-weight: 700;
}

.brand-mark-icon {
  width: 48px;
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

.brand-mark-plate {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-right: 12px;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
}

.brand-mark-plate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-full {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.nav-link {
  font-weight: 600;
  color: var(--ink) !important;
  font-size: .9rem;
  padding: 8px 10px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  padding: 12px 20px;
  transition: .25s;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #bd8127;
  border-color: #bd8127;
  color: #fff;
  transform: translateY(-2px);
}

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

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

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1bb956;
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  min-height: 630px;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
  opacity: .68;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 29, 53, .94) 0%, rgba(6, 29, 53, .72) 0%, rgba(6, 29, 53, .12) 60%);
  z-index:-1
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-block: 90px;
}

.min-vh-75 {
  min-height: 554px;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem;
  letter-spacing: 1.7px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 13px;
  text-transform:uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  border-top: 2px solid currentColor;
  vertical-align: middle;
  margin-right: 8px;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.3vw, 4.8rem);
  line-height: 1.04;
  max-width: 720px;
}

.hero h1 em {
  color: #f4c979;
  font-style: normal;
}

.hero .lead {
  max-width: 570px;
  font-size: 1.16rem;
  color: #e2ebf2;
  margin: 25px 0 30px;
}

.hero-contacts {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  font-weight: 700;
}

.hero-contacts i {
  color: #f4c979;
  margin-right: 7px;
}

.trust-strip {
  background: var(--ivory);
  padding: 48px 0;
}

.trust-strip h2 {
  font-size: 1.8rem;
}

.trust-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.45rem;
  margin-top: 4px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item span {
  font-size: .86rem;
  color: var(--muted);
}

.trust-item strong {
  color: var(--ink);
  font-size: .96rem;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 48px;
}

.section-heading>p:last-child {
  color: var(--muted);
}

.service-card {
  height: 100%;
  padding: 42px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(6, 29, 53, .08);
  border: 1px solid #edf0f2;
  transition: .3s;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(6, 29, 53, .13);
}

.service-card img{
	border-radius:15px;
	max-width:100%;
}

.service-icon {
  background: #f9ecd8;
  color: var(--gold);
  width: 59px;
  height: 59px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 25px;
}

.card-kicker {
  font-size: .73rem;
  color: var(--gold);
  letter-spacing: 1.3px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card h3 {
  font-size: 1.65rem;
  color:var(--gold);
}

.service-card>p:not(.card-kicker) {
  color: var(--muted);
}

.service-card ul {
  padding-left: 0;
  list-style: none;
  margin: 24px 0;
}

.service-card li {
	color:var(--deep);
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: .93rem;
}

.service-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
}

.text-link i {
  color: var(--gold);
  margin-left: 4px;
}

.destinations {
  background: var(--deep);
  color: #fff;
}

.destinations h2 {
  color: #fff;
}

.destinations .row>div p:not(.eyebrow) {
  color: #eee;
}

.destination-card {
  height: 320px;
  border-radius: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 22px;
  color: white;
  font-size: 1.35rem;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.destination-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 16, 31, .86), rgba(2, 16, 31, .06));
  z-index: -1;
  transition: .25s;
}

.destination-card:hover:before {
  background: linear-gradient(0deg, rgba(2, 16, 31, .94), rgba(2, 16, 31, .3));
}

.destination-card:hover {
  color: #fff;
}

.destination-card i {
  font-size: .95rem;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  padding: 10px;
}

.canada {
  background-image: url('../img/canada.webp');
}

.uk {
  background-image: url('../img/uk.webp');
}

.australia {
  background-image: url('../img/australia.webp');
}

.usa {
  background-image: url('../img/usa.webp');
}

.nz {
  background-image: url('../img/nz.webp');
}

.europe {
  background-image: url('../img/europe.webp');
}

.destination-note {
  font-size: .88rem;
  color: #bfcddb;
}

.destination-note i {
  color: var(--gold);
  margin-right: 5px;
}

.process {
  background: var(--ivory);
}

.process-step {
  padding: 31px 25px;
  background: #fff;
  border-radius: 15px;
  height: 100%;
  position: relative;
}

.process-step>span {
  color: #dce3e9;
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 11px;
}

.process-step i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 22px;
}

.process-step h3 {
  font-size: 1.15rem;
}

.process-step p {
  color: var(--muted);
  font-size: .91rem;
  margin: 0;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.3);
}

.photo-badge {
  position: absolute;
  bottom: 25px;
  right: -10px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(6, 29, 53, .18);
  font-size: .88rem;
  font-weight: 700;
  display: flex;
  gap: 10px;
  line-height: 1.2;
}

.photo-badge i {
  color: var(--gold);
  font-size: 1.5rem;
}

.about>div>div>div:last-child>p:not(.eyebrow) {
  color: var(--muted);
}

.benefit {
  display: flex;
  gap: 17px;
  margin-top: 21px;
}

.benefit>i {
  color: var(--gold);
  font-size: 1.35rem;
  margin-top: 5px;
}

.benefit h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}

.enquiry {
  background: var(--navy);
  padding: 95px 0;
}

.enquiry h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.enquiry>div>div>div:first-child>p:not(.eyebrow) {
  color: #c7d6e2;
}

.text-gold {
  color: #f4c979;
}

.enquiry-phone {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.enquiry-phone i {
  color: var(--gold);
  font-size: 1.45rem;
  margin-top: 7px;
}

.enquiry-phone small,
.enquiry-phone a {
  display: block;
}

.enquiry-phone small {
  color: #c7d6e2;
}

.enquiry-phone a {
  font-weight: 700;
  font-size: 1.1rem;
}

.enquiry-form {
  background: #fff;
  padding: 34px;
  border-radius: 17px;
}

.enquiry-form label {
  font-size: .84rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.form-control,
.form-select {
  border-radius: 7px;
  border-color: #dbe1e6;
  padding: 11px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(216, 155, 61, .14);
}

.form-success {
  display: none;
  background: #eff8ef;
  border-left: 4px solid #32833a;
  border-radius: 5px;
  padding: 12px;
  font-size: .87rem;
  color: #245e2b;
}

.form-success.show {
  display: block;
}

.form-success a {
  font-weight: 700;
  text-decoration: underline;
}

.faqs {
  background: #fff;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid #e5e8eb;
}

.accordion-button {
  font-weight: 700;
  color: var(--ink);
  padding: 22px 3px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #fff;
}

.accordion-button:after {
  background-size: 1rem;
}

.accordion-body {
  padding: 0 3px 22px;
  color: var(--muted);
}

.contact-card {
  height: 100%;
  padding: 34px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(6, 29, 53, .06);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail>i {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  background: #f9ecd8;
  color: var(--gold);
  border-radius: 10px;
}

.contact-detail small {
  color: var(--muted);
  font-weight: 700;
}

.contact-detail p {
  margin: 2px 0 0;
  font-weight: 600;
  line-height: 1.5;
}

.contact-detail a:hover {
  color: var(--gold);
}

.map-wrap {
  height: 100%;
  min-height: 390px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 20px 20px 35px rgba(0, 0, 0, .8);
}

footer {
  background: var(--deep);
  color: #c4d1dc;
  padding: 30px 0 20px;
  font-size: .89rem;
}

footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 17px;
}

footer a {
  display: block;
  margin-bottom: 8px;
  color: #d8e2eb;
}

footer a:hover {
  color: #f4c979;
}

footer p {
  line-height: 1.65;
}

.footer-bottom {
  font-size: .8rem;
}

.footer-bottom a {
  display: inline;
  margin-left: 17px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  z-index: 10;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: scale(1.07);
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 12px 0 18px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 29, 53, .91), rgba(6, 29, 53, .53));
  }

  .about-photo img {
    height: 380px;
  }

  .photo-badge {
    right: 15px;
  }
}

@media (max-width: 575px) {
  .navbar {
    min-height: 68px;
  }

  .brand-mark-icon {
    width: 38px;
  }

  .brand-mark-plate {
    width: 38px;
    height: 38px;
  }

  .hero-copy {
    padding-block: 75px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-contacts {
    gap: 17px;
  }

  .section {
    padding: 70px 0;
  }

  .service-card {
    padding: 29px 24px;
  }

  .enquiry {
    padding: 70px 0;
  }

  .enquiry-form {
    padding: 24px 18px;
  }

  .about-photo img {
    height: 330px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span:last-child {
    margin-top: 10px;
    display: block;
  }

  .footer-bottom a:first-child {
    margin-left: 0;
  }

  .destination-card {
    height: 170px;
  }
}

.parallax {
    background-image: url(../img/hero-canada.webp);
    min-height: 180px;
    background-attachment: bottom;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cms img {border-radius:15px; box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.4);}

/* Contact us page */
.layout { display: grid; gap: 38px; grid-template-columns: .83fr 1.17fr;  }
.details, .form-card { box-shadow: 0 20px 50px rgba(23, 37, 54, .10); }
.details { background: #fff; padding: 38px; }
h2 { color: var(--navy); font-size: 2rem; letter-spacing: -.03em; margin: 0 0 26px; }
.detail { align-items: flex-start; border-top: 1px solid var(--line); display: flex; gap: 15px; padding: 21px 0; }
.detail:last-of-type { border-bottom: 1px solid var(--line); }
.detail i { color: var(--gold); font-size: 1rem; margin-top: 4px; width: 18px; }
.detail b, .detail small { display: block; }
.detail b { font-size: .91rem; margin-bottom: 5px; }
.detail small { color: #677484; font-size: .87rem; line-height: 1.55; }
.hours { background: #f6f0e6; margin-top: 25px; padding: 19px; }
.hours b { color: var(--navy); font-size: .85rem; }
.hours p { color: #657284; font-size: .84rem; line-height: 1.7; margin: 8px 0 0; }
.form-card { background: white; padding: 42px; }
.form-card > p { color: #6a7683; line-height: 1.6; margin: -14px 0 26px; }
.fields { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field.full { grid-column: 1 / -1; }label { color: #38495a; display: block; font-size: .8rem; font-weight: 700; margin-bottom: 7px; }
input, select, textarea { background: #fcfbf8; border: 1px solid #ded9d0; border-radius: 2px; color: var(--ink); font: inherit; outline: none; padding: 12px 13px; transition: border-color .2s, box-shadow .2s; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,164,77,.15); }
textarea { min-height: 116px; resize: vertical; }
.submit { background: var(--gold); border: 0; color: #172536; cursor: pointer; font: 700 .92rem "DM Sans", sans-serif; margin-top: 25px; padding: 15px 21px; transition: background .2s, transform .2s; }
.submit:hover { background: #e5b969; transform: translateY(-2px); }
.success { color: #277247; display: none; font-size: .9rem; margin: 17px 0 0; }
.map { background: #e8dfd1; min-height: 290px; position: relative; }
.map iframe { border: 0; height: 100%; min-height: 290px; width: 100%; }
footer { background: var(--navy); color: #bdc8d5; font-size: .82rem; padding: 24px 0; }
@media (max-width: 760px) { .intro { padding: 58px 0 104px; } .layout { grid-template-columns: 1fr; margin-top: -45px; } .fields { grid-template-columns: 1fr; } .form-card, .details { padding: 28px; } }

/* Trust counters */
.trust-counters {}
.glance-overlap {
  position: relative;
  z-index: 5;
  width: min(1280px, calc(100% - 3rem));
  margin: -82px auto 0;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(5, 27, 53, .28);
}
.trust-counter { align-items: center; display: flex; gap: .75rem; }
.trust-counter__number { color: #fff; font-size: clamp(2.15rem, 4vw, 3.15rem); font-weight: 700; letter-spacing: -.06em; line-height: 1; }
.trust-counter__label { color: #222; font-size: .82rem; font-weight:900; line-height: 1.35; max-width: 10ch; }

@media (max-width: 767.98px) {
  .glance-overlap {
    width: calc(100% - 1.5rem);
    margin-top: -48px;
    border-radius: 14px;
  }
}

/* Testimonials */
.testimonials { background: #f8f6f1; overflow: hidden; }
.testimonials .section-heading { max-width: 660px; margin: 0 auto 2.75rem; }
.testimonials .section-heading h2 { color: #0c2a54; }
.testimonial-marquee { position: relative; overflow: hidden; margin: 0 -12px; padding: .5rem 12px 1.75rem; }
.testimonial-marquee::before, .testimonial-marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 8%; pointer-events: none; }
.testimonial-marquee::before { left: 0; background: linear-gradient(90deg, #f8f6f1, transparent); }
.testimonial-marquee::after { right: 0; background: linear-gradient(270deg, #f8f6f1, transparent); }
.testimonial-track { display: flex; width: max-content; gap: 1.25rem; animation: maxus-testimonial-scroll 38s linear infinite; }
.testimonial-marquee:hover .testimonial-track, .testimonial-marquee:focus-within .testimonial-track { animation-play-state: paused; }
.testimonial-card { width: min(360px, calc(100vw - 3.5rem)); min-height: 260px; padding: 1.75rem; display: flex; flex-direction: column; border: 1px solid rgba(201, 154, 61, .28); border-radius: 4px; background: #fff; box-shadow: 0 12px 28px rgba(12, 42, 84, .08); }
.testimonial-card .quote-mark { color: #c99a3d; font-family: Georgia, serif; font-size: 3.25rem; font-weight: 700; line-height: .7; }
.testimonial-card blockquote { margin: 1rem 0 1.35rem; color: #34435b; font-size: 1rem; line-height: 1.7; }
.testimonial-stars { color: #c99a3d; font-size: .85rem; letter-spacing: .15rem; }
.testimonial-client { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testimonial-client-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; color: #fff; background: #0c2a54; }
.testimonial-client strong { display: block; color: #0c2a54; font-size: .96rem; }
.testimonial-client span { color: #7b6a4a; font-size: .82rem; }
@keyframes maxus-testimonial-scroll { to { transform: translateX(calc(-50% - .625rem)); } }
@media (max-width: 575.98px) { .testimonials .section-heading { margin-bottom: 1.75rem; } .testimonial-track { animation-duration: 30s; gap: 1rem; } .testimonial-card { min-height: 245px; padding: 1.4rem; } .testimonial-marquee::before, .testimonial-marquee::after { width: 5%; } }
@media (prefers-reduced-motion: reduce) { .testimonial-marquee { overflow-x: auto; } .testimonial-track { width: auto; animation: none; padding-bottom: .25rem; } }

/* Tourist */
.tourist-intro,.tourist-services,.tourist-support {} .tourist-intro h2,.tourist-services h2 { color:var(--maxus-navy); line-height:1.18; } .tourist-intro p { color:var(--maxus-ink); line-height:1.85; }
.travel-photo { min-height:410px; position:relative;} .travel-photo img {} .photo-caption { position:absolute; right:1.25rem; bottom:1.25rem; left:1.25rem; padding:1.05rem 1.2rem; color:#fff; background:rgba(12,42,84,.9); border-left:3px solid var(--maxus-gold); } .photo-caption span { display:block; color:#e2b865; font-size:.72rem; font-weight:700; letter-spacing:.1em; }
.tourist-services { background:var(--maxus-cream); } .visa-benefit { height:100%; padding:1.75rem; background:#fff; border:1px solid rgba(12,42,84,.08); border-top:3px solid var(--maxus-gold); box-shadow:0 10px 25px rgba(12,42,84,.06); transition:.25s ease; } .visa-benefit:hover { transform:translateY(-6px); box-shadow:0 16px 32px rgba(12,42,84,.13); } .visa-benefit i { display:grid; place-items:center; height:44px; width:44px; margin-bottom:1.2rem; border-radius:50%; color:var(--maxus-gold); background:var(--maxus-navy); } .visa-benefit h3 { color:var(--maxus-navy); font-size:1.16rem; } .visa-benefit p { color:#536276; line-height:1.7; margin:0; }
.tourist-support { background:var(--maxus-navy); color:#fff; } .tourist-support h2 { color:#fff; } .tourist-support p { color:rgba(255,255,255,.8); line-height:1.75; } .support-list { padding:0; margin:1.5rem 0 0; list-style:none; } .support-list li { margin:.75rem 0; color:rgba(255,255,255,.92); } .support-list i { width:1.4rem; color:var(--maxus-gold); } .support-image { min-height:320px; height:100%; object-fit:cover; }
@media (max-width:991.98px) { .tourist-hero { min-height:450px; } .tourist-intro,.tourist-services,.tourist-support { padding:4rem 0; } } @media (max-width:575.98px) { .hero-content { padding:4rem 0; } .travel-photo,.travel-photo img { min-height:320px; } }
.tourist-services img, .travel-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.3);  
}

/* Contact-map location card: keeps the exact office location visible above the embed. */
.location-map {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(5, 23, 49, .24);
}

.location-map .map-wrap { display: block; height: 420px; border: 0; }

.map-logo-marker {
  position: absolute;
  z-index: 2;
  top: 53%;
  left: 57%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 5px;
  background: #fff;
  border: 4px solid #c99a3d;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 18px rgba(4, 23, 51, .34);
  transform: translate(-50%, -100%) rotate(-45deg);
  transition: transform .2s ease, box-shadow .2s ease;
}

.map-logo-marker img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; transform: rotate(45deg); }
.map-logo-marker:hover, .map-logo-marker:focus { box-shadow: 0 11px 24px rgba(4, 23, 51, .42); transform: translate(-50%, -103%) rotate(-45deg); }

.location-card {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: flex;
  gap: 12px;
  width: min(340px, calc(100% - 44px));
  padding: 16px 18px;
  color: #0c2a54;
  background: rgba(255, 255, 255, .97);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(4, 23, 51, .26);
}

.location-card__pin {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 4px;
  background: #fff;
  border-radius: 50% 50% 50% 0;
  border: 3px solid #c99a3d;
  transform: rotate(-45deg);
}

.location-card__pin img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; transform: rotate(45deg); }
.location-card__content { min-width: 0; }
.location-card__heading { display: flex; align-items: center; gap: 9px; margin: 0 0 4px; }
.location-card__logo { width: 34px; height: 34px; object-fit: contain; border-radius: 50%; }
.location-card h3 { margin: 0; font-size: 1.05rem; font-weight: 700; }
.location-card p { margin: 0 0 9px; font-size: .88rem; line-height: 1.45; color: #40516a; }
.location-card a { color: #0c2a54; font-size: .86rem; font-weight: 700; text-decoration: none; }
.location-card a:hover, .location-card a:focus { color: #a8791e; text-decoration: underline; }

@media (max-width: 575.98px) {
  .location-map .map-wrap { height: 390px; }
  .map-logo-marker { top: 58%; left: 65%; width: 52px; height: 52px; }
  .location-card { top: 14px; left: 14px; width: calc(100% - 28px); padding: 13px 14px; }
}

.services-details-content h4 {color:var(--gold); font-weight:700}
.services-details-content h6 {font-weight:700}
.services-details-content h4::before {content:"";}
