/* =========================================================
   ROAMERS WEBSITE CSS
   Easy-to-edit organized version
   ========================================================= */

/* =========================================================
   00. BRAND VARIABLES
   Change these values to update the main website colors.
   ========================================================= */
:root {
  --blue: #1769d2;
  --navy: #071a33;
  --ink: #12233b;
  --muted: #69778a;
  --line: #dfe6ef;
  --soft: #f5f8fc;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  font-family:"DM Sans",sans-serif;
  color:var(--ink);
  background:#fff;
  overflow-x:hidden;
}
a {
  text-decoration:none;
  color:black;
}
img {
  display:block;
  max-width:100%;
}
.container {
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}
h1,h2,h3 {
  font-family:Manrope,sans-serif;
  line-height:1.08;
}
h2 {
  font-size:clamp(2.2rem,4vw,4rem);
  letter-spacing:-.055em;
  margin:10px 0 20px;
}
p {
  color:var(--muted);
  line-height:1.75;
}

/* =========================================================
   01. HEADER & NAVIGATION
   ========================================================= */
.site-header {
  height:78px;
  position:fixed;
  z-index:100;
  top:0;
  left:0;
  right:0;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(220,228,238,.7);
  transition:.3s;
}
.site-header.scrolled {
  box-shadow:0 10px 35px rgba(7,26,51,.08);
}
.nav-wrap {
  height:100%;
  display:flex;
  align-items:center;
  gap:38px;
}
.brand {
  display:flex;
  align-items:center;
  margin-right:auto;
}
.brand img {
  width:155px;
  height:52px;
  object-fit:contain;
}
nav {
  display:flex;
  align-items:center;
  gap:30px;
  font-size:.88rem;
  font-weight:700;
}
nav a {
  position:relative;
  padding:8px 0;
}
nav a:after {
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:2px;
  height:2px;
  background:var(--blue);
  transition:.3s;
}
nav a:hover:after {
  right:0;
}
.nav-cta,.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  border-radius:12px;
  font-weight:800;
  transition:.3s;
}
.nav-cta {
  background:var(--navy);
  color:#fff;
  padding:13px 18px;
  font-size:.82rem;
}
.nav-cta:hover {
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(7,26,51,.2);
}
.menu-btn {
  display:none;
  background:none;
  border:0;
  padding:8px;
}
.menu-btn span {
  display:block;
  width:24px;
  height:2px;
  background:var(--navy);
  margin:5px;
}

/* =========================================================
   02. HERO SECTION
   ========================================================= */
.hero {
  min-height:820px;
  height:92vh;
  position:relative;
  display:flex;
  align-items:center;
  padding-top:78px;
  color:#fff;
  overflow:visible;
}
.hero-image {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(4,17,34,.78) 0%,rgba(4,17,34,.43) 48%,rgba(4,17,34,.12) 100%);
}
.hero-glow {
  position:absolute;
  width:520px;
  height:520px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  right:-180px;
  top:120px;
  box-shadow:0 0 0 80px rgba(255,255,255,.025);
}
.hero-inner {
  position:relative;
  z-index:2;
}
.hero-copy {
  max-width:680px;
  padding-bottom:100px;
}
.eyebrow {
  font-size:.7rem;
  letter-spacing:.2em;
  font-weight:800;
  color:#cfe2ff;
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow span {
  width:28px;
  height:1px;
  background:#9ec7ff;
}
.eyebrow.dark {
  color:var(--blue);
}
.hero h1 {
  font-size:clamp(3.5rem,7vw,6.8rem);
  letter-spacing:-.075em;
  margin:20px 0;
}
.hero h1 em {
  font-style:normal;
  color:#91c5ff;
}
.hero-copy>p {
  font-size:1.05rem;
  max-width:590px;
  color:rgba(255,255,255,.82);
  margin-bottom:30px;
}
.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn {
  padding:15px 22px;
}
.btn.primary {
  background:#fff;
  color:var(--navy);
}
.btn.ghost {
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(10px);
}
.btn:hover {
  transform:translateY(-3px);
}
.booking-bar {
  position:absolute;
  z-index:5;
  bottom:-68px;
  left:50%;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 40px));
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:17px;
  box-shadow:0 25px 70px rgba(7,26,51,.18);
}
.booking-label {
  text-align:center;
  font-size:.65rem;
  letter-spacing:.16em;
  font-weight:900;
  color:#8a96a8;
  margin-bottom:12px;
}
.booking-options {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.booking-card {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid #e3e9f1;
  border-radius:15px;
  position:relative;
  overflow:hidden;
  transition:.3s;
}
.booking-card:before {
  content:"";
  position:absolute;
  inset:0;
  background:#f2f7ff;
  transform:translateY(100%);
  transition:.35s;
}
.booking-card>* {
  position:relative;
  z-index:1;
}
.booking-card i {
  font-style:normal;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#eef5ff;
  color:var(--blue);
  font-size:18px;
}
.booking-card span {
  display:block;
}
.booking-card b {
  display:block;
  font-family:Manrope;
  font-size:.88rem;
}
.booking-card small {
  color:#8995a6;
  font-size:.67rem;
}
.booking-card strong {
  margin-left:auto;
  color:var(--blue);
}
.booking-card:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(7,26,51,.1);
}
.booking-card:hover:before {
  transform:none;
}

/* =========================================================
   03. SECTION SPACING
   ========================================================= */
.intro-space {
  height:120px;
}

/* =========================================================
   04. COMMON SECTION STYLES
   ========================================================= */
.section {
  padding:105px 0;
}
.two-col {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* =========================================================
   05. ABOUT SECTION
   ========================================================= */
.about-image {
  position:relative;
}
.about-image>img {
  width:100%;
  height:570px;
  object-fit:cover;
  border-radius:26px;
}
.image-badge {
  position:absolute;
  bottom:25px;
  left:25px;
  background:#fff;
  border-radius:15px;
  padding:14px 18px;
  box-shadow:0 15px 35px rgba(7,26,51,.15);
}
.image-badge b {
  display:block;
  font-family:Manrope;
}
.image-badge span {
  font-size:.72rem;
  color:var(--blue);
}
.content {
  max-width:580px;
}
.content h2 span {
  color:var(--blue);
}
.text-link {
  display:inline-flex;
  margin-top:15px;
  color:var(--blue);
  font-weight:800;
  gap:12px;
}

/* =========================================================
   06. SERVICES SECTION
   ========================================================= */
.services {
  background:var(--soft);
}
.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:50px;
  margin-bottom:45px;
}
.section-heading>p {
  max-width:420px;
  margin:0;
}
.service-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}
.service-card {
  background:#fff;
  border:1px solid #e4eaf2;
  border-radius:20px;
  padding:28px;
  min-height:320px;
  transition:.35s;
  display:flex;
  flex-direction:column;
}
.service-card:hover {
  transform:translateY(-8px);
  box-shadow:0 22px 50px rgba(7,26,51,.1);
  border-color:#c8dcf7;
}
.service-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.service-icon {
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  background:#eef5ff;
  color:var(--blue);
  border-radius:14px;
  font-size:21px;
}
.service-top small {
  color:#a1adbc;
  font-weight:800;
}
.service-card h3 {
  font-size:1.2rem;
  margin:38px 0 10px;
}
.service-card p {
  font-size:.88rem;
  margin:0;
}
.service-card a {
  margin-top:auto;
  color:var(--blue);
  font-size:.78rem;
  font-weight:800;
  padding-top:20px;
}

/* =========================================================
   07. WHY ROAMERS SECTION
   ========================================================= */
.why {
  background:#fff;
}
.why-grid {
  align-items:center;
}
.points {
  margin-top:30px;
  display:grid;
  gap:15px;
}
.points>div {
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 0;
  border-bottom:1px solid #edf1f5;
}
.points i {
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#eaf3ff;
  color:var(--blue);
  font-style:normal;
  font-weight:900;
}
.points b {
  display:block;
}
.points small {
  display:block;
  color:#8a96a7;
  margin-top:4px;
}
.why-visual {
  position:relative;
}
.visual-frame {
  height:560px;
  border-radius:26px;
  overflow:hidden;
}
.visual-frame img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.floating-card {
  position:absolute;
  bottom:25px;
  left:-25px;
  background:#fff;
  border-radius:16px;
  padding:16px 20px;
  display:flex;
  gap:12px;
  align-items:center;
  box-shadow:0 18px 45px rgba(7,26,51,.16);
}
.floating-card>span {
  width:38px;
  height:38px;
  border-radius:11px;
  display:grid;
  place-items:center;
  background:#eef5ff;
  color:var(--blue);
}
.floating-card b {
  display:block;
  font-family:Manrope;
}
.floating-card small {
  color:#8a96a7;
}

/* =========================================================
   08. DESTINATIONS SECTION
   ========================================================= */
.destinations {
  background:var(--soft);
}
.destination-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:15px;
}
.destination {
  height:410px;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  color:#fff;
}
.destination.large {
  height:410px;
}
.destination img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s;
}
.destination:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(4,17,34,.75),transparent 55%);
}
.destination span {
  position:absolute;
  z-index:2;
  left:25px;
  bottom:24px;
}
.destination small {
  display:block;
  letter-spacing:.14em;
  font-size:.62rem;
}
.destination b {
  display:block;
  font:800 1.45rem Manrope;
  margin-top:5px;
}
.destination:hover img {
  transform:scale(1.07);
}

/* =========================================================
   09. CTA SECTION
   ========================================================= */
.cta {
  background:var(--navy);
  color:#fff;
  padding:90px 0;
  overflow:hidden;
}
.cta-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  position:relative;
}
.cta h2 {
  font-size:clamp(2.5rem,5vw,5rem);
  margin:12px 0;
}
.cta p {
  color:#9fb0c5;
}
.btn.light {
  background:#fff;
  color:var(--navy);
  white-space:nowrap;
}

/* =========================================================
   10. CONTACT SECTION
   ========================================================= */
.contact-head {
  margin-bottom:50px;
}
.contact-head h2 span {
  color:var(--blue);
}
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.contact-card,.address-card {
  border:1px solid var(--line);
  border-radius:22px;
  padding:30px;
  background:#fff;
}
.contact-row {
  padding:20px 0;
  border-bottom:1px solid #edf1f5;
}
.contact-row:last-child {
  border:0;
}
.contact-row small,.address-card small {
  display:block;
  color:#8996a8;
  letter-spacing:.14em;
  font-weight:800;
  font-size:.62rem;
  margin-bottom:6px;
}
.contact-row b,.contact-row a {
  font-family:Manrope;
  font-size:1rem;
}
.contact-row a {
  color:var(--blue);
}
.address-card {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  background:var(--soft);
}
.address-card h3 {
  font-size:1.1rem;
  margin:10px 0;
}
.address-card p {
  font-size:.86rem;
}

/* =========================================================
   11. FOOTER
   ========================================================= */
footer {
  background:#06152a;
  color:#dce6f3;
  padding-top:65px;
}
.footer-main {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.3fr;
  gap:45px;
  padding-bottom:55px;
}
.footer-brand img {
  width:170px;
  height:58px;
  object-fit:contain;
}
.footer-brand p {
  max-width:300px;
  color:#8091a7;
  font-size:.82rem;
}
.footer-nav,.footer-contact {
  display:flex;
  flex-direction:column;
  gap:11px;
}
.footer-nav b,.footer-contact b {
  color:#fff;
  margin-bottom:5px;
}
.footer-nav a,.footer-contact a,.footer-contact span {
  color:#8495aa;
  font-size:.82rem;
  transition:.2s;
}
.footer-nav a:hover,.footer-contact a:hover {
  color:#fff;
}
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#718399;
  font-size:.72rem;
}

/* =========================================================
   12. TOAST / NOTIFICATION
   ========================================================= */
.toast {
  position:fixed;
  right:20px;
  bottom:20px;
  background:var(--navy);
  color:#fff;
  padding:14px 18px;
  border-radius:12px;
  box-shadow:0 15px 35px rgba(0,0,0,.2);
  opacity:0;
  transform:translateY(15px);
  pointer-events:none;
  transition:.3s;
  z-index:200;
}
.toast.show {
  opacity:1;
  transform:none;
}

/* =========================================================
   13. SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity:1;
  transform:none;
}

/* =========================================================
   14. TABLET RESPONSIVE
   ========================================================= */
@media(max-width:1000px) {
  nav {
    display:none;
  }
  .nav-cta {
    display:none;
  }
  .menu-btn {
    display:block;
  }
  .nav-wrap {
    gap:10px;
  }
  .booking-options {
    grid-template-columns:1fr 1fr;
  }
  .service-grid {
    grid-template-columns:1fr 1fr;
  }
  .two-col {
    gap:45px;
  }
  .footer-main {
    grid-template-columns:1.5fr 1fr 1fr;
  }
}

/* =========================================================
   15. MOBILE RESPONSIVE
   ========================================================= */
@media(max-width:700px) {
  .container {
    width:min(100% - 28px,600px);
  }
  .site-header {
    height:68px;
  }
  .brand img {
    width:135px;
    height:48px;
  }
  .hero {
    min-height:760px;
    height:auto;
    padding:120px 0 160px;
  }
  .hero-copy {
    padding:0;
  }
  .hero h1 {
    font-size:clamp(3rem,14vw,4.6rem);
  }
  .hero-copy>p {
    font-size:.94rem;
  }
  .booking-bar {
    bottom:-115px;
    width:calc(100% - 24px);
    padding:12px;
  }
  .booking-options {
    grid-template-columns:1fr 1fr;
  }
  .booking-card {
    padding:11px 9px;
  }
  .booking-card i {
    width:36px;
    height:36px;
    font-size:15px;
  }
  .booking-card small {
    display:none;
  }
  .booking-card b {
    font-size:.75rem;
  }
  .intro-space {
    height:155px;
  }
  .section {
    padding:75px 0;
  }
  .two-col {
    grid-template-columns:1fr;
    gap:38px;
  }
  .about-image>img,.visual-frame {
    height:420px;
  }
  .section-heading {
    display:block;
    margin-bottom:30px;
  }
  .section-heading>p {
    margin-top:12px;
  }
  .service-grid {
    grid-template-columns:1fr;
  }
  .service-card {
    min-height:280px;
  }
  .destination-grid {
    grid-template-columns:1fr;
  }
  .destination,.destination.large {
    height:330px;
  }
  .cta-inner {
    display:block;
  }
  .cta .btn {
    margin-top:25px;
  }
  .contact-grid {
    grid-template-columns:1fr;
  }
  .address-card {
    grid-template-columns:1fr;
  }
  .footer-main {
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
  .footer-brand {
    grid-column:1/-1;
  }
  .footer-bottom {
    display:block;
  }
  .footer-bottom span {
    display:block;
    margin-top:7px;
  }
  .floating-card {
    left:12px;
  }
  .hero-glow {
    display:none;
  }
}

/* =========================================================
   16. SMALL MOBILE
   ========================================================= */
@media(max-width:430px) {
  .booking-options {
    gap:6px;
  }
  .booking-card {
    gap:7px;
  }
  .booking-card strong {
    display:none;
  }
  .hero-actions {
    flex-direction:column;
    align-items:flex-start;
  }
  .btn {
    width:100%;
  }
  .footer-main {
    grid-template-columns:1fr;
  }
}
@media(max-width:1000px) {
  #nav.open {
    display:flex;
    position:absolute;
    top:68px;
    left:14px;
    right:14px;
    background:#fff;
    padding:18px;
    border:1px solid #e2e8f0;
    border-radius:16px;
    box-shadow:0 18px 40px rgba(7,26,51,.12);
    flex-direction:column;
    align-items:flex-start;
    gap:5px;
  }
  #nav.open a {
    width:100%;
    padding:12px 8px;
  }
}
.booking-card svg,.service-icon svg,.points svg,.floating-card svg {
  width:20px;
  height:20px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.service-icon svg {
  width:22px;
  height:22px;
}
.points i svg {
  width:15px;
  height:15px;
}
.floating-card>span svg {
  width:17px;
  height:17px;
}

/* =========================================================
   17. ICON STYLES
   ========================================================= */
.booking-card svg {
  flex:0 0 auto;
}
.booking-card .icon {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#eef5ff;
  color:var(--blue);
}
@media(max-width:700px) {
  .booking-card .icon {
    width:36px;
    height:36px;
  }
}