:root {
  --primary: #003b73;
  --secondary: #1e7d3a;
  --accent: #f4b400;
  --white: #ffffff;
  --bg: #f5f7fa;
  --text: #2c2c2c;
  --border: rgba(0, 59, 115, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  position: relative;
}

h1,
h2,
h3,
h4,
.navbar-brand,
.btn,
.eyebrow {
  font-family: 'Cormorant Garamond', serif;
}

h1 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--primary);
}

.eyebrow {
  color: gre;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-shell {
  padding-top: 6rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(135deg, rgba(0, 59, 115, 0.03), rgba(30, 125, 58, 0.04));
}

.container-wide {
  max-width: 1320px;
}

.btn {
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border: none;
  color: var(--white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-gold {
  background: var(--accent);
  color: var(--primary);
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  font-size: 1.2rem;
}

.navbar-brand span {
  color: var(--accent);
}

.navbar.scrolled .navbar-brand {
  color: var(--primary);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.navbar.scrolled .nav-link {
  color: var(--primary);
}

.navbar .dropdown-menu {
  border: none;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.navbar .dropdown-item:hover {
  color: var(--primary);
  background: rgba(0, 59, 115, 0.06);
}

.navbar .btn-outline-light {
  margin-left: 0.5rem;
}

.hero-home {
  min-height: 100vh;
  background: linear-gradient(120deg, rgba(0, 59, 115, 0.88), rgba(0, 0, 0, 0.18)),  url('../images/home/ron-dauphin-k-8-eX4Y3no-unsplash.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-page {
  min-height: 420px;
  background: linear-gradient(120deg, rgba(0, 59, 115, 0.82), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1518259102261-b40117eabbc9?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-scroll {
  animation: float 2.2s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.breadcrumbs {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a {
  color: inherit;
}

.card,
.info-card,
.contact-card,
.news-card,
.testimonial-card,
.stat-card,
.feature-card,
.service-card,
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.feature-card,
.service-card,
.guide-card,
.news-card,
.testimonial-card,
.contact-card {
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.service-card:hover,
.guide-card:hover,
.news-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.card-img {
  height: 230px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.card-body {
  padding: 1.2rem;
}

.card-title {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.rating {
  color: var(--accent);
  font-weight: 700;
}

.text-brand {
  color: var(--secondary);
  font-weight: 600;
}

.map-preview {
  min-height: 320px;
  background: linear-gradient(135deg, rgba(0, 59, 115, 0.08), rgba(30, 125, 58, 0.1));
  border-radius: 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.map-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0 3px, transparent 4px), radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.8) 0 3px, transparent 4px);
  background-size: 170px 170px;
}

.map-pin {
  position: absolute;
  background: var(--primary);
  color: var(--white);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.86rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.pin-1 {
  top: 20%;
  left: 16%;
}

.pin-2 {
  top: 58%;
  left: 42%;
}

.pin-3 {
  top: 30%;
  right: 12%;
}

.pin-4 {
  bottom: 15%;
  left: 58%;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 18px;
  object-fit: cover;
  break-inside: avoid;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.counter {
  font-size: 2.3rem;
  color: var(--accent);
  font-weight: 700;
}

.list-check li {
  margin-bottom: 0.75rem;
}

.list-check i {
  color: var(--secondary);
  margin-right: 0.5rem;
}

.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.92);
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer a:hover {
  color: var(--accent);
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  margin-right: 0.5rem;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 1100;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding: 1rem 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .gallery-grid {
    columns: 1;
  }
}