/* ==========================================================================
   Make A Trip — Main Stylesheet
   Colour system (60 / 30 / 10):
     60% base   #fefefe
     30% navy   #0c2b62
     10% accent #f7681a
   ========================================================================== */

:root {
  --c-base: #fefefe;
  --c-navy: #0c2b62;
  --c-navy-700: #0a2452;
  --c-navy-900: #061a3d;
  --c-accent: #f7681a;
  --c-accent-600: #e85c10;
  --c-ink: #1f2a44;
  --c-muted: #5f6b85;
  --c-line: #e7ebf3;
  --c-soft: #f4f7fc;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(12, 43, 98, .07);
  --shadow-md: 0 12px 30px rgba(12, 43, 98, .10);
  --shadow-lg: 0 22px 50px rgba(12, 43, 98, .16);

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 84px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-base);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .h-font { font-family: var(--font-head); color: var(--c-navy); line-height: 1.18; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-accent-600); }
img { max-width: 100%; height: auto; }

.text-accent { color: var(--c-accent) !important; }
.text-navy { color: var(--c-navy) !important; }
.bg-soft { background: var(--c-soft); }

/* Section rhythm */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
@media (max-width: 767px) { .section { padding: 48px 0; } }

/* Section heading with underline accent */
.section-title { text-align: center; margin-bottom: 8px; font-weight: 700; font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); }
.section-title.left { text-align: left; }
.title-underline { width: 64px; height: 4px; background: var(--c-accent); border-radius: 4px; margin: 10px auto 30px; }
.title-underline.left { margin-left: 0; }
.section-sub { text-align: center; color: var(--c-muted); max-width: 720px; margin: 0 auto 38px; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-head); font-weight: 600; border-radius: 10px; padding: 12px 24px; transition: all .2s ease; border: 2px solid transparent; }
.btn-accent { background: var(--c-accent); color: #fff; }
.btn-accent:hover { background: var(--c-accent-600); color: #fff; box-shadow: 0 10px 22px rgba(247,104,26,.32); transform: translateY(-1px); }
.btn-navy { background: var(--c-navy); color: #fff; }
.btn-navy:hover { background: var(--c-navy-700); color: #fff; transform: translateY(-1px); }
.btn-outline-navy { border-color: var(--c-navy); color: var(--c-navy); background: #fff; }
.btn-outline-navy:hover { background: var(--c-navy); color: #fff; }
.btn-outline-accent { border-color: var(--c-accent); color: var(--c-accent); background: #fff; }
.btn-outline-accent:hover { background: var(--c-accent); color: #fff; }
.btn-lg { padding: 14px 30px; font-size: 1.05rem; }
.btn-block-sm { width: 100%; }

/* ============================ TOP BAR ============================ */
.topbar { background: var(--c-navy); color: #cfd8ea; font-size: .9rem; }
.topbar a { color: #cfd8ea; }
.topbar a:hover { color: #fff; }
.topbar .row { min-height: 42px; align-items: center; }
.topbar .tb-left i, .topbar .tb-right i { color: var(--c-accent); }
.topbar .tb-phone { color: #fff; font-weight: 600; font-size: 1rem; }
.topbar .tb-phone:hover { color: var(--c-accent); }
@media (max-width: 575px) {
  .topbar { font-size: .8rem; }
  .topbar .tb-left { font-size: .78rem; }
}

/* ============================ HEADER ============================ */
.site-header { background: #fff; box-shadow: var(--shadow-sm); position: relative; z-index: 1030; }
@media (min-width: 992px) { .site-header.sticky-lg { position: sticky; top: 0; } }

.navbar-brand img { height: 50px; width: auto; display: block; }
@media (max-width: 991px) { .navbar-brand img { height: 42px; } }
@media (max-width: 360px) { .navbar-brand img { height: 36px; } }

.main-nav .nav-link {
  font-family: var(--font-head); font-weight: 500; color: var(--c-navy);
  padding: 8px 14px; position: relative;
}
.main-nav .nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--c-accent); }
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border: 0; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.hamburger { width: 30px; height: 22px; position: relative; display: inline-block; }
.hamburger span { position: absolute; left: 0; height: 3px; width: 100%; background: var(--c-navy); border-radius: 3px; transition: .3s ease; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

@media (max-width: 991px) {
  .main-nav { padding: 14px 0 6px; }
  .main-nav .nav-link { padding: 12px 4px; border-bottom: 1px solid var(--c-line); }
  .main-nav .nav-link::after { display: none; }
  .nav-cta-wrap { padding-top: 12px; }
}

/* ============================ BANNER / HERO ============================ */
.hero {
  position: relative; min-height: 540px; display: flex; align-items: center;
  background: var(--c-navy);
  background-size: cover; background-position: center right; background-repeat: no-repeat;
  overflow: hidden;
}
/* Shadow that is opaque on the LEFT (behind text) and clears towards the RIGHT */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(8, 26, 61, .94) 0%,
    rgba(8, 26, 61, .90) 24%,
    rgba(8, 26, 61, .70) 45%,
    rgba(8, 26, 61, .35) 62%,
    rgba(8, 26, 61, .05) 80%,
    rgba(8, 26, 61, 0) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 72px 0; }
.hero-text {
  max-width: 620px; color: #fff;
  padding: 28px 30px; border-radius: 16px;
  background: rgba(8, 26, 61, .28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-text h1 { color: #fff; font-weight: 700; font-size: clamp(2rem, 1.2rem + 3.4vw, 3.4rem); margin-bottom: 14px; }
.hero-text p { color: #e6ecf7; font-size: clamp(1rem, .95rem + .3vw, 1.18rem); margin-bottom: 26px; }
.hero-actions .btn { margin: 6px 10px 6px 0; }

@media (max-width: 767px) {
  .hero { min-height: 460px; background-position: center; text-align: center; }
  .hero::before {
    background: linear-gradient(180deg, rgba(8,26,61,.82) 0%, rgba(8,26,61,.78) 60%, rgba(8,26,61,.86) 100%);
  }
  .hero-text { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 10px 6px; margin: 0 auto; }
  .hero-actions .btn { margin: 6px 5px; }
}

/* ============================ FEATURE STRIP ============================ */
.feature-strip { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 26px 18px; margin-top: -54px; position: relative; z-index: 5; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px; }
.feature-item .f-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(12,43,98,.07); color: var(--c-navy); font-size: 1.2rem; }
.feature-item h6 { margin: 0 0 4px; font-weight: 600; color: var(--c-navy); }
.feature-item p { margin: 0; font-size: .9rem; color: var(--c-muted); }
@media (max-width: 991px) { .feature-strip { margin-top: -30px; } }

/* Second feature strip (over image band) */
.feature-band { background: linear-gradient(rgba(12,43,98,.55), rgba(12,43,98,.55)), center/cover no-repeat; }
.feature-band .feature-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 22px; }
.feature-band .feature-item .f-icon { background: rgba(247,104,26,.12); color: var(--c-accent); }

/* ============================ ICON SERVICES (Our Services) ============================ */
.svc-icon-card { text-align: center; padding: 18px 10px; }
.svc-icon-card .ic {
  width: 78px; height: 78px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem;
  background: rgba(12,43,98,.06); color: var(--c-navy); transition: .25s ease;
}
.svc-icon-card:hover .ic { background: var(--c-accent); color: #fff; transform: translateY(-4px); }
.svc-icon-card h6 { font-weight: 600; color: var(--c-navy); font-size: .98rem; margin: 0; }

/* ============================ CARDS (generic) ============================ */
.card-tile {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; height: 100%; transition: transform .25s ease, box-shadow .25s ease;
}
.card-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-tile .card-img { height: 180px; object-fit: cover; width: 100%; background: var(--c-soft); }
.card-tile .card-body { padding: 18px 18px 22px; }
.card-tile h5 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.card-tile p { color: var(--c-muted); font-size: .92rem; }

.price-from { color: var(--c-muted); font-size: .82rem; display: block; }
.price-tag { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--c-accent); line-height: 1; margin: 2px 0 14px; }

.badge-ribbon {
  position: absolute; top: 12px; right: -2px; background: var(--c-accent); color: #fff;
  font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 6px 0 0 6px;
  box-shadow: var(--shadow-sm); z-index: 3;
}
.badge-ribbon.alt { background: var(--c-navy); }

.icon-float {
  position: absolute; top: 150px; left: 16px; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; background: #fff; color: var(--c-navy);
  box-shadow: var(--shadow-md); font-size: 1.1rem; z-index: 3;
}

/* Sale price styling (travel guide) */
.price-old { color: var(--c-muted); text-decoration: line-through; font-size: .95rem; margin-right: 8px; }
.price-sale { color: var(--c-accent); font-weight: 700; font-family: var(--font-head); font-size: 1.25rem; }

/* Info alert */
.info-note {
  background: rgba(34,160,90,.08); border: 1px solid rgba(34,160,90,.28); color: #1f6b43;
  border-radius: var(--radius-sm); padding: 12px 18px; text-align: center; font-size: .92rem;
}
.info-note i { color: #1f6b43; }

/* ============================ DESTINATIONS SWIPER ============================ */
.dest-section { background: var(--c-soft); }
.dest-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; }
.dest-card img { height: 170px; width: 100%; object-fit: cover; }
.dest-card .dest-body { padding: 16px; }
.dest-card h5 { font-size: 1.08rem; margin-bottom: 6px; }
.dest-card p { color: var(--c-muted); font-size: .9rem; margin-bottom: 10px; }
.dest-card .explore { font-weight: 600; color: var(--c-accent); font-family: var(--font-head); }

.swiper { padding: 6px 4px 8px; }
.dest-swiper .swiper-slide { height: auto; }
.swiper-button-prev, .swiper-button-next {
  width: 42px; height: 42px; border-radius: 50%; background: var(--c-navy); color: #fff !important;
  box-shadow: var(--shadow-md);
}
.swiper-button-prev:after, .swiper-button-next:after { font-size: 1rem; font-weight: 700; }
.swiper-pagination-bullet-active { background: var(--c-accent); }

/* ============================ BUILD YOUR TRIP ============================ */
.build-list .list-row {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--radius-sm); margin-bottom: 10px;
  cursor: pointer; transition: .2s ease;
}
.build-list .list-row:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.build-list .list-row .li-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(12,43,98,.07); color: var(--c-navy); }
.build-list .list-row.featured .li-ic { background: rgba(247,104,26,.14); color: var(--c-accent); }
.build-list .list-row .li-name { font-weight: 500; flex: 1; }
.build-list .list-row .li-price { font-weight: 700; font-family: var(--font-head); color: var(--c-accent); }

.quote-box { background: var(--c-navy); border-radius: var(--radius); padding: 26px; color: #fff; }
.quote-box h4 { color: #fff; margin-bottom: 18px; }
.quote-box .form-control, .quote-box .form-select {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); color: #fff; border-radius: 10px;
}
.quote-box .form-control::placeholder { color: #c5cee0; }
.quote-box .form-control:focus, .quote-box .form-select:focus { background: rgba(255,255,255,.16); border-color: var(--c-accent); box-shadow: none; color: #fff; }
.quote-box .form-select option { color: #1f2a44; }

/* ============================ WHY CHOOSE US ============================ */
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 14px; }
.why-item .w-ic { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: rgba(12,43,98,.06); color: var(--c-navy); font-size: 1.4rem; }
.why-item h6 { font-weight: 600; color: var(--c-navy); margin-bottom: 4px; }
.why-item p { color: var(--c-muted); font-size: .9rem; margin: 0; }

/* ============================ CTA ============================ */
.cta-band { background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-navy-900) 100%); color: #fff; border-radius: 0; overflow: hidden; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 1.1rem + 2vw, 2.6rem); }
.cta-band p { color: #d8e0f0; }
.cta-illustration { max-height: 320px; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--c-navy-900); color: #c4cde0; padding-top: 60px; }
.site-footer h6 { color: #fff; font-weight: 600; margin-bottom: 18px; font-size: 1.02rem; }
.site-footer a { color: #c4cde0; }
.site-footer a:hover { color: var(--c-accent); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-brand img { height: 46px; margin-bottom: 16px; }
.footer-desc { font-size: .92rem; color: #aab6d0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .92rem; }
.footer-contact i { color: var(--c-accent); margin-top: 4px; }
.social-row a { width: 38px; height: 38px; border-radius: 10px; display: inline-grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; margin-right: 8px; transition: .2s; }
.social-row a:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 40px; padding: 18px 0; font-size: .86rem; }
.footer-bottom a { margin-left: 16px; }
@media (max-width: 767px) { .footer-bottom { text-align: center; } .footer-bottom a { margin: 0 8px; display: inline-block; } }

/* ============================ MODAL / ENQUIRY FORM ============================ */
.modal-content { border: 0; border-radius: 16px; overflow: hidden; }
.enquiry-head { background: var(--c-navy); color: #fff; padding: 20px 24px; }
.enquiry-head h5 { color: #fff; margin: 0; font-weight: 600; }
.enquiry-head .sub { color: #c7d2ea; font-size: .9rem; margin-top: 2px; }
.enquiry-context {
  background: rgba(247,104,26,.10); border: 1px solid rgba(247,104,26,.3); color: var(--c-accent-600);
  border-radius: 10px; padding: 10px 14px; font-size: .9rem; margin-bottom: 16px; display: none;
}
.enquiry-context.show { display: block; }
.form-label { font-weight: 500; font-size: .9rem; color: var(--c-navy); margin-bottom: 4px; }
.form-control, .form-select { border-radius: 10px; border: 1px solid var(--c-line); padding: 11px 14px; }
.form-control:focus, .form-select:focus { border-color: var(--c-accent); box-shadow: 0 0 0 .15rem rgba(247,104,26,.15); }
.is-invalid { border-color: #dc3545 !important; }
.field-error { color: #dc3545; font-size: .82rem; margin-top: 3px; display: none; }
.captcha-row { display: flex; align-items: flex-end; gap: 12px; }
.captcha-q { background: var(--c-soft); border: 1px dashed var(--c-line); border-radius: 10px; padding: 11px 14px; font-family: var(--font-head); font-weight: 700; color: var(--c-navy); min-width: 92px; text-align: center; }
.captcha-refresh { background: none; border: 0; color: var(--c-navy); font-size: 1rem; cursor: pointer; padding: 8px; }
.captcha-refresh:hover { color: var(--c-accent); }
.modal-quick-actions a { flex: 1; }
.form-alert { display: none; border-radius: 10px; padding: 11px 14px; font-size: .9rem; margin-bottom: 14px; }
.form-alert.error { display: block; background: #fdecec; color: #b02a37; border: 1px solid #f5c2c7; }

/* ============================ FLOATING BUTTONS ============================ */
.floating-contact { position: fixed; bottom: 22px; z-index: 1040; }
.floating-contact .fbtn {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: 1.5rem; box-shadow: var(--shadow-lg); transition: transform .2s;
}
.floating-contact .fbtn:hover { transform: scale(1.08); color: #fff; }
.fc-whatsapp { left: 18px; }
.fc-whatsapp .fbtn { background: #25D366; }
.fc-phone { right: 18px; }
.fc-phone .fbtn { background: var(--c-accent); }

/* Back to top — bottom right, sits ABOVE the phone button so they never clash */
#backToTop {
  position: fixed; right: 18px; bottom: 88px; z-index: 1039;
  width: 46px; height: 46px; border: 0; border-radius: 12px;
  background: var(--c-navy); color: #fff; font-size: 1.1rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s ease;
  box-shadow: var(--shadow-md);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--c-accent); }

/* Floating phone + whatsapp only on mobile/tablet. On desktop use Tawk.to instead. */
@media (min-width: 992px) {
  .floating-contact { display: none !important; }
  #backToTop { bottom: 22px; }
}

/* ============================ PAGE HEADER (sub pages) ============================ */
.page-hero { background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-navy-900) 100%); color: #fff; padding: 56px 0; }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero .breadcrumb { --bs-breadcrumb-divider-color: #9fb0d6; margin: 0; }
.page-hero .breadcrumb a { color: #c7d2ea; }
.page-hero .breadcrumb .active { color: #fff; }

/* Legal / content pages */
.content-page h2 { font-size: 1.4rem; margin: 30px 0 12px; }
.content-page h3 { font-size: 1.12rem; margin: 22px 0 8px; color: var(--c-accent-600); }
.content-page p, .content-page li { color: #38415c; }
.content-page ul { padding-left: 20px; }
.content-page ul li { margin-bottom: 8px; }

/* Trust badges (travel guide hero) */
.trust-badges { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.trust-badges span { display: inline-flex; align-items: center; gap: 8px; color: #e6ecf7; font-size: .92rem; }
.trust-badges i { color: var(--c-accent); }

/* 4-step process */
.step-card { text-align: center; position: relative; }
.step-card .step-ic { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; background: rgba(12,43,98,.06); color: var(--c-navy); font-size: 1.5rem; }
.step-card .step-no { position: absolute; top: -6px; left: 50%; transform: translateX(20px); background: var(--c-accent); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.step-card h6 { font-weight: 600; color: var(--c-navy); }
.step-card p { color: var(--c-muted); font-size: .88rem; }
.step-connector { color: #c2cce0; align-self: center; font-size: 1.4rem; }
@media (max-width: 767px) { .step-connector { display: none; } }

/* Error pages */
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 16px; }
.error-page .code { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 3rem + 8vw, 8rem); color: var(--c-navy); line-height: 1; }
.error-page .code span { color: var(--c-accent); }

/* Utilities */
.lh-sm { line-height: 1.4; }
.fw-600 { font-weight: 600; }
.object-cover { object-fit: cover; }
.pointer { cursor: pointer; }

/* ==========================================================================
   Utility components used by inner pages (about / contact / legal)
   ========================================================================== */
.card-soft {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-soft:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.svc-ic {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(12, 43, 98, .06);
  color: var(--c-navy); font-size: 1.4rem;
  transition: background .25s ease, color .25s ease;
}
.card-soft:hover .svc-ic { background: var(--c-accent); color: #fff; }
.fw-600 { font-weight: 600; }

/* Contact page */
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm);
  height: 100%;
}
.contact-info-card .ci-ic {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.15rem;
  background: rgba(247, 104, 26, .12); color: var(--c-accent);
}
.contact-info-card h6 { margin: 0 0 3px; font-weight: 600; color: var(--c-navy); }
.contact-info-card a, .contact-info-card p { color: var(--c-muted); font-size: .95rem; margin: 0; word-break: break-word; }
.contact-info-card a:hover { color: var(--c-accent); }

.form-card {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 28px;
}

.contact-visual {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12,43,98,.06), rgba(247,104,26,.06));
}

.contact-visual-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.contact-visual-note {
  background: var(--c-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--c-muted);
  font-size: .92rem;
}

.contact-visual-note strong {
  color: var(--c-navy);
}

@media (max-width: 767px) {
  .contact-visual-img {
    aspect-ratio: 16 / 10;
  }
}

/* Legal / content pages */
.content-page .last-updated { color: var(--c-muted); font-size: .9rem; margin-bottom: 24px; }
.content-page .legal-note {
  background: var(--c-soft); border-left: 4px solid var(--c-accent);
  padding: 14px 18px; border-radius: 8px; margin: 18px 0; color: var(--c-ink);
}
