:root {
  --island-lime-green: #7AC943;
  --island-dark-green: #3B5E2B;
  --island-watermelon-red: #D32F2F;
  --island-mango-orange: #F9A825;
  --island-pineapple-yellow: #FDD835;
  --island-charcoal-black: #1C1C1C;
  --island-white: #FFFFFF;
  --island-tropical-green: #4C8C2B;
  --island-sky-blue: #3DB8E6;
  --island-sunset-orange: #F57C00;
  --island-sand-beige: #FBE8C2;
  --island-deep-leaf-green: #2E4A1E;
  --island-off-white: #FFF9F0;
  --island-black: #000000;
}

/* Text Colors */
.text-lime-green {
  color: var(--island-lime-green);
}

.text-dark-green {
  color: var(--island-dark-green);
}

.text-watermelon-red {
  color: var(--island-watermelon-red);
}

.text-mango-orange {
  color: var(--island-mango-orange);
}

.text-pineapple-yellow {
  color: var(--island-pineapple-yellow);
}

.text-charcoal-black {
  color: var(--island-charcoal-black);
}

.text-white {
  color: var(--island-white);
}

.text-tropical-green {
  color: var(--island-tropical-green);
}

.text-sky-blue {
  color: var(--island-sky-blue);
}

.text-sunset-orange {
  color: var(--island-sunset-orange);
}

.text-sand-beige {
  color: var(--island-sand-beige);
}

.text-deep-leaf-green {
  color: var(--island-deep-leaf-green);
}

.text-off-white {
  color: var(--island-off-white);
}

.text-black {
  color: var(--island-black);
}

.text-dblue {
  color: #001F54;
}


.text-nyellow {
  color: #FFFF33;
}

/* Background Colors */
.bg-lime-green {
  background-color: var(--island-lime-green);
}

.bg-dark-green {
  background-color: var(--island-dark-green);
}

.bg-watermelon-red {
  background-color: var(--island-watermelon-red);
}

.bg-mango-orange {
  background-color: var(--island-mango-orange);
}

.bg-pineapple-yellow {
  background-color: var(--island-pineapple-yellow);
}

.bg-charcoal-black {
  background-color: var(--island-charcoal-black);
}

.bg-white {
  background-color: var(--island-white);
}

.bg-tropical-green {
  background-color: var(--island-tropical-green);
}

.bg-skyblue {
  background-color: var(--island-sky-blue);
}

.bg-sunset-orange {
  background-color: var(--island-sunset-orange);
}

.bg-sand-beige {
  background-color: var(--island-sand-beige);
}

.bg-deep-leaf-green {
  background-color: var(--island-deep-leaf-green);
}

.bg-off-white {
  background-color: var(--island-off-white);
}

.bg-black {
  background-color: var(--island-black);
}

html,
body {
  margin: 0;
  padding: 0;
  max-height: 100vh;
  overflow-x: hidden;
}

body {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body.bg-tropical {
  background-image: url("../images/section2.png");
}

body.bg-tropical2 {
  background-image: url("../images/section1.png");
}

body.bg-tropical3 {
  background-image: url("../images/section3.png");
}

body.bg-blue {
  background-image: url("../images/blue-bg.webp");
}

@__ (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* Header wrapper */
.caption-header {
  position: relative;
  height: 920px;
  /* controls navbar video height */
  overflow: hidden;
}

/* Mobile safety */
@media (max-width: 768px) {
  .caption-header {
    height: 850px;
  }

  .navbar {
    background: transparent;
    transition: background 0.3s ease;
  }

  .navbar.menu-open {
    background: #ffffff;
  }
}




/* ==============================SCROLLING EFFECTS ============================== */
.scroll-effect {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-effect.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ==============================PLACEHOLDER ============================== */
.lazy-portrait {
  background: url('../images/placeholder.jpg') center center no-repeat;
  background-size: cover;
  min-width: 180px;
  min-height: 180px;
}

/* ============================== FONTS ============================== */
@font-face {
  font-family: 'daiquiri-font-title';
  src: url('../fonts/Roboto-ExtraBoldItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'daiquiri-font-regular';
  src: url('../fonts/Roboto-MediumItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.ditg-font1 {
  font-family: 'daiquiri-font-title', serif;
}

.ditg-font2 {
  font-family: 'daiquiri-font-regular', serif;
}


/* ============================== BUTTONS ============================== */
.order-btn {
  background-color: #D32F2F;
  color: #fff;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background-color: #8E0000;
  color: #fff;
}

.order-btn1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 300px;
  height: 48px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.order-btn1:hover {
  background-color: #fff;
  color: #D32F2F;
}

a.special-link:hover {
  color: #8E0000 !important;
}

/* ============================== NavBar ============================== */


.custom-toggler {
  border: none;
  outline: none;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23001F54' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .nav-link {
  position: relative;
  color: #001F54 !important;
  padding-bottom: 2px;
  font-size: clamp(18px, 1.6vw, 30px);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #001F54;
  transition: width 0.3s ease;
  font-weight: 700;
  padding-bottom: 4px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #001F54 !important;
}


/* ==================== VIDEO STUFF ==================== */
.section1 {
  background-image: url("../images/bg-img1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section2 {
  background-image: url("../images/section1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section3 {
  background-image: url("../images/section2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section4 {
  background-image: url("../images/blue-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content1 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.video-banner {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 90vh;
  overflow: hidden;
  background: black;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .video-banner {
    height: 88vh;
  }

  .banner-video {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-video {
    display: none;
  }
}

/* For Laptop and Tablet */
@media (min-width: 769px) and (max-width: 1366px) {
  .video-banner {
    height: 80vh;
  }

  .banner-video {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


.gallery-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gallery-section .container {
  position: relative;
  z-index: 2;
}

.daiquiri-preview {
  position: relative;
  overflow: hidden;
  background: url("../images/green-bg.webp") center/cover no-repeat;
  background-attachment: fixed;
}


/* ============================================================= menu STUFF ============================================================= */
.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.menu-card .card {
  border-radius: 12px;
  overflow: hidden;
}

.menu-card1 {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 119, 77, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
  border-color: #3DB8E6;
}

.menu-image {
  max-width: 350px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.menu-card1 h5 {
  font-size: 1.5rem;
  line-height: 1.3;
}

/* .menu-page-btn.active {
  background-color: #D32F2F;
  color: #ffffff;
} */

.menu-page-small {
  padding: 4px 10px !important;
  font-size: 0.75rem;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(26, 119, 77, 0.3) !important;
  min-width: 36px;
  text-align: center;
}

/* Hover effect */
.menu-page-small:hover {
  background-color: #D32F2F;
  color: #fff;
  border-color: #D32F2F !important;
  cursor: pointer;
}

.menu-page-btn {
  background-color: #fff !important;
  color: #D32F2F !important;
  border-color: #D32F2F !important;
}

.menu-page-btn:hover {
  background-color: #D32F2F !important;
  color: #fff !important;
  border-color: #D32F2F !important;
}

.menu-page-btn.active {
  background-color: #D32F2F !important;
  color: #ffffff !important;
  border-color: #D32F2F !important;
}

.menu-nav-btn {
  min-width: 100px;
  background-color: #fff !important;
  color: #D32F2F !important;
  border-color: #D32F2F !important;
}

.menu-nav-btn:hover {
  min-width: 100px;
  background-color: #D32F2F !important;
  color: #fff !important;
  border-color: #D32F2F !important;
}

.map-wrapper {
  position: relative;
}

.map-container,
.map-container1 {
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-marker {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transform: translate(-50%, -100%);
  transition: transform 0.15s ease;
  z-index: 5;
}

.map-marker1 {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transform: translate(-50%, -100%);
  transition: transform 0.15s ease;
  z-index: 5;
}

.map-marker:hover {
  transform: translate(-50%, -100%) scale(1.08);
}

.map-city {
  width: 50px;
  height: 50px;
  z-index: 6;
}

.map-marker img,
.map-marker1 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  /* keep the whole icon */
}


.back-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 20;
  padding: 8px 14px;
  border-radius: 10px;
}

.address-link {
  display: block;
  width: 100%;
  max-width: 420px;
  text-decoration: none;
}


.address-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  min-height: 120px;
  padding: 14px 18px;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.address-link:hover .address-box {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.address-icon {
  width: 44px;
  height: auto;
}

.address-text {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.35;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: #D32F2F;
  --bs-btn-border-color: #D32F2F;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #D32F2F;
  --bs-btn-hover-border-color: #D32F2F;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #D32F2F;
  --bs-btn-active-bg: #D32F2F;
  --bs-btn-active-border-color: #D32F2F;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #D32F2F;
  --bs-btn-disabled-border-color: #D32F2F;
}

.text-red {
  color: #cc0000;
}

.myday {
  width: calc(100% / 7);
  border: 0px solid #CCCCCC;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.95);
}

.mydaydisable {
  width: calc(100% / 7);
  border: 0px solid #CCCCCC;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.95);
  background-color: #E9EAEB;
}

.menu-video-wrapper {
  max-width: 360px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.menu-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .menu-video-wrapper {
    max-width: 300px;
    margin-top: 1rem;
  }
}

.carousel-inner img {
  object-fit: cover;
}

.feature-icon {
  width: 120px;
  height: auto;
}

@media (min-width: 768px) {
  .feature-icon {
    width: 200px;
  }
}

.footer-img {
  background-image: url("../images/blue-bg.webp");
}

/* Logo */
.footer-logo {
  height: 110px;
}

/* Footer text links */
.footer-links a {
  font-size: 1.5rem;
  /* Bigger = readable */
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #001F54;
  text-decoration: none;
  position: relative;
}

/* Subtle underline on hover */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #001F54;
  transition: width 0.2s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social pills */
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d014f;
  border: 1px solid #0d014f;
  transition: transform 0.15s ease, background 0.15s ease;
}

.social-btn:hover {
  background: #0d014f;
  transform: translateY(-1px);
}

/* Bottom line */
.footer-bottom {
  opacity: 0.9;
}

.footer-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer-link:hover {
  color: #FF6B35;
}

/* Mobile tuning */
@media (max-width: 767px) {
  .footer-logo {
    height: 90px;
  }

  .footer-links {
    gap: 1.25rem;
  }
}

/* Base badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid #ff00ff;
  color: #fff;
}

.badge-menu {
  background: #b000b0;
  /* darker magenta */
  color: #ffffff;
  border-color: #b000b0;
}

.badge-locations {
  background: #b000b0;
  /* darker magenta */
  color: #ffffff;
  border-color: #b000b0;
}

.badge-reviews {
  background: #b000b0;
  /* darker magenta */
  color: #ffffff;
  border-color: #b000b0;
}

/* ABOUT SECTION – premium tropical glass */
.ditg-about {
  position: relative;
  overflow: hidden;
}

/* Optional: if your background image is applied to the section itself, keep it.
   If the bg is on body / parent, you can omit this */
.ditg-about {
  background-position: center;
  background-size: cover;
}

.ditg-kicker {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
}

.ditg-pill {
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .18);
  color: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ditg-panel {
  position: relative;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .18));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ditg-panel--featured {
  padding: 2.25rem;
}

.ditg-panel__glow {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  pointer-events: none;
  background: radial-gradient(700px 300px at 20% 10%, rgba(255, 255, 255, .18), transparent 60%),
    radial-gradient(500px 300px at 80% 0%, rgba(255, 107, 53, .22), transparent 55%),
    radial-gradient(500px 400px at 60% 110%, rgba(0, 255, 255, .12), transparent 60%);
  filter: blur(10px);
  opacity: .9;
}

.ditg-btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.ditg-btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.ditg-media {
  position: relative;
  height: 100%;
  min-height: 360px;
}

.ditg-media__frame {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .20);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  transform: translateZ(0);
  transition: transform .35s ease;
}

.ditg-media__frame img {
  width: 100%;
  display: block;
  transform: scale(1.02);
  transition: transform .6s ease;
}

.ditg-media__frame:hover {
  transform: translateY(-6px) rotate(-.25deg);
}

.ditg-media__frame:hover img {
  transform: scale(1.08);
}

.ditg-mini-card {
  position: absolute;
  max-width: 240px;
  padding: .9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.ditg-mini-title {
  font-weight: 800;
}

.ditg-mini-text {
  opacity: .85;
  font-size: .95rem;
}

.ditg-mini-card--top {
  top: 16px;
  right: 16px;
}

.ditg-mini-card--bottom {
  bottom: 16px;
  left: 16px;
}

.ditg-card {
  position: relative;
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(0, 0, 0, .26), rgba(0, 0, 0, .16));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

.ditg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .25);
}

.ditg-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.ditg-card__shine {
  position: absolute;
  inset: -120px -120px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 60%);
  transform: rotate(25deg);
  opacity: .65;
  pointer-events: none;
}

/* Floating blobs */
.ditg-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .35;
  pointer-events: none;
  animation: floaty 10s ease-in-out infinite;
}

.ditg-blob--1 {
  top: -180px;
  left: -180px;
  background: rgba(0, 255, 255, .35);
}

.ditg-blob--2 {
  bottom: -220px;
  right: -220px;
  background: rgba(255, 107, 53, .35);
  animation-duration: 12s;
}

.ditg-blob--3 {
  top: 20%;
  right: -220px;
  background: rgba(255, 255, 255, .18);
  animation-duration: 14s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -22px, 0) scale(1.05);
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .ditg-blob,
  .ditg-media__frame,
  .ditg-media__frame img,
  .ditg-card {
    transition: none !important;
    animation: none !important;
  }
}

/* Subscribe box positioning */
.header-subscribe-box {
  position: absolute;
  bottom: 60px;
  right: 60px;
  max-width: 320px;
  padding: 1.5rem;
  border-radius: 20px;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);

  color: #fff;

  animation: fadeUp 0.9s ease forwards;
}

/* Button styling */
.subscribe-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: #ff865c;
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .header-subscribe-box {
    position: absolute;
    /* make sure this exists */
    left: 15%;
    bottom: 35px;

    transform: translateX(-50%);

    width: min(92vw, 300px);
    max-width: 300px;

    padding: 0.85rem 0.9rem;
    border-radius: 16px;

    text-align: center;
  }

  .header-subscribe-box h2 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    line-height: 1.2;
  }

  .header-subscribe-box p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    line-height: 1.25;
  }

  .header-subscribe-box .btn,
  .header-subscribe-box .subscribe-btn {
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
  }
}

.footer-phone {
  color: #001F54;
  font-size: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.footer-phone:hover {
  text-decoration: underline;
}