/* ============================================================
   Sicily Hotel Semporna — style.css
   Font: Fraunces + Plus Jakarta Sans
   Accent: Electric Blue #2563eb
   ============================================================ */

/* VARIABLES */
html { scroll-padding-top: calc(80px + 1rem); }

:root {
  --accent:       #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: rgba(37, 99, 235, 0.12);
  --accent-dark:  #0a1628;

  --font-head: 'Cabinet Grotesk', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --text-primary:   #111827;
  --text-secondary: #374151;
  --text-muted:     #6b7280;
  --bg-white:       #ffffff;
  --bg-light:       #f8fafc;
  --bg-section:     #f1f5f9;
  --border:         #e5e7eb;
  --border-light:   #f3f4f6;

  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow:    0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);

  --navbar-h:    72px;
  --container-w: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }

p { color: var(--text-secondary); line-height: 1.75; }

/* UTILITIES */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padded {
  padding: 88px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 1rem 0 2.5rem;
}

h2 + .section-intro { margin-top: 0.75rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-hero {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  font-size: 1rem;
}
.btn-hero:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

.btn-maps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-maps:hover { background: var(--accent-hover); color: #fff; }
.btn-maps-sm { padding: 0.55rem 1rem; font-size: 0.82rem; margin-top: 0.75rem; }

.btn-submit {
  width: 100%;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-submit:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  margin-top: 1.25rem;
  transition: background 0.2s;
}
.btn-footer-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--navbar-h);
  background: rgba(255, 255, 255, 0.0);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.navbar-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-brand { display: flex; align-items: center; }

.navbar-logo {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
}

.navbar:not(.scrolled) .navbar-logo { filter: brightness(0) invert(1); }

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.navbar-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.navbar.scrolled .navbar-links a { color: var(--text-primary); }

.navbar-links a:hover { color: var(--accent); }
.navbar.scrolled .navbar-links a:hover { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text-primary); }

.nav-sentinel { height: var(--navbar-h); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--bg-white);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
  transition: right 0.3s ease;
}
.mobile-menu.open { right: 0; }

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-primary);
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}
.mobile-nav-links li a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--accent); }

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.menu-backdrop.open { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: calc(-1 * var(--navbar-h));
  padding-top: var(--navbar-h);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 55%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

@media (min-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.20) 50%,
      rgba(0, 0, 0, 0.06) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 3rem;
  padding-bottom: 4rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-family: var(--font-head);
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero-tagline {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .hero-content {
    padding-left: max(24px, calc((100vw - var(--container-w)) / 2 + 24px));
    max-width: none;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: 0.5rem; }

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms { background: var(--bg-section); }

.rooms .section-intro {
  max-width: none;
  margin-bottom: 3rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.room-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.room-card:hover { box-shadow: var(--shadow-lg); }

/* CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-section);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  transition: background 0.2s, opacity 0.2s;
  color: var(--text-primary);
  font-size: 0.8rem;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ROOM CARD BODY */
.room-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.room-description {
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}
.room-amenities li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.room-amenities li i {
  color: var(--accent);
  font-size: 0.8rem;
  width: 14px;
}

.room-cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.btn-room-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-room-cta:hover { background: var(--accent); color: #fff; }

/* ROOM MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 90vw;
  max-height: 88vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.2s;
  padding: 0.25rem;
}
.modal-close:hover { color: var(--text-primary); }

.modal-body h3 { margin-bottom: 1rem; }

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activities { background: var(--bg-white); }

.activities-intro {
  max-width: none;
  width: 100%;
}

/* CORE ACTIVITY CARDS */
.activity-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.activity-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.25s, transform 0.25s;
}
.activity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.activity-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.activity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.activity-card:hover .activity-card-image img { transform: scale(1.04); }

.activity-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.activity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.activity-card-body h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.activity-card-body p { font-size: 0.9rem; line-height: 1.65; }

/* ON-SITE ACTIVITIES */
.onsite-activities {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  margin-bottom: 3.5rem;
}

.onsite-title {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  list-style: none;
}
.onsite-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.onsite-list li i {
  color: var(--accent);
  font-size: 0.9rem;
  width: 16px;
}

/* TOUR BLOCKS */
.tours-title {
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
}

.tours-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tour-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
}

@media (min-width: 640px) {
  .tour-block {
    grid-template-columns: 260px 1fr;
  }
}

.tour-block-image {
  height: 220px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .tour-block-image {
    height: auto;
  }
}

.tour-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tour-block:hover .tour-block-image img { transform: scale(1.04); }

.tour-block-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.tour-block-body h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.tour-block-body p {
  font-size: 0.92rem;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ============================================================
   MEALS
   ============================================================ */
.meals { background: var(--bg-section); }

.meals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .meals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.meals-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.meals-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.meals-text h2 { margin-bottom: 1rem; }
.meals-text > p { margin-bottom: 1.5rem; }

.meals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.meal-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.meal-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.15rem;
}

.meal-detail h4 {
  font-size: 1rem;
  font-family: var(--font-head);
  margin-bottom: 0.25rem;
}
.meal-detail p { font-size: 0.9rem; line-height: 1.65; }

.meals-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.meals-note i { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }

/* ============================================================
   GETTING HERE
   ============================================================ */
.getting-there { background: var(--bg-white); }

.getting-there-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .getting-there-layout {
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
  }
}

.getting-there-main h2 { margin-bottom: 2rem; }

.getting-there-block {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-light);
}
.getting-there-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.getting-there-block h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
}
.getting-there-block h3 i {
  color: var(--accent);
  font-size: 1rem;
}

.getting-there-block p {
  font-size: 0.93rem;
  margin-bottom: 0.75rem;
}
.getting-there-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 0.75rem;
}
.getting-there-block ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

/* GETTING HERE SIDEBAR */
.getting-there-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-image-block img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}

.sidebar-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}
.sidebar-card h4 i { color: var(--accent); }

/* TRAVEL TIPS */
.travel-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.travel-tips-list li {
  font-size: 0.87rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.travel-tips-list li i {
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
  width: 14px;
}

/* LOCATION CARD */
.location-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.location-card p + p { margin-top: 0.2rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-section); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 320px;
    gap: 4rem;
  }
}

.contact-form-col h2 { margin-bottom: 0.75rem; }
.contact-intro {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-success-message {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* CONTACT SIDEBAR */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-location-card h4,
.contact-boat-card h4,
.contact-quickfacts-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-location-card h4 i,
.contact-boat-card h4 i,
.contact-quickfacts-card h4 i { color: var(--accent); }

.contact-location-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
.contact-location-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-boat-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.boat-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.boat-card-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.boat-card-list li i {
  color: var(--accent);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 14px;
}

.quickfacts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.quickfacts-list li {
  font-size: 0.87rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.quickfacts-list li i {
  color: var(--accent);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
  width: 14px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg-white); }

.reviews .section-intro { max-width: none; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.review-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  font-style: normal;
}

.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--accent-dark);
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 24px 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-top: 4.5rem;
  }
}

.footer-resort-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.3rem;
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--accent);
  color: #fff;
}

.footer-explore h5,
.footer-contact-col h5 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-explore ul,
.footer-contact-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-explore ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-explore ul li a:hover { color: #fff; }

.footer-contact-col ul li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact-col ul li i {
  color: var(--accent);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 14px;
}
.footer-contact-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .section-padded { padding: 60px 0; }

  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 80vh; }

  .about-grid { gap: 2rem; }
  .about-image img { height: 280px; }

  .rooms-grid { grid-template-columns: 1fr; }

  .activity-cards-grid { grid-template-columns: 1fr; }
  .tour-block { grid-template-columns: 1fr; }
  .tour-block-image { height: 200px; }

  .meals-grid { gap: 2rem; }
  .meals-image img { height: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 599px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY OVERRIDES
   ============================================================ */
strong { font-weight: 600; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Section background alternation */
.about    { background: var(--bg-white); }
.rooms    { background: var(--bg-section); }
.activities { background: var(--bg-white); }
.meals    { background: var(--bg-section); }
.getting-there { background: var(--bg-white); }
.contact  { background: var(--bg-section); }
.reviews  { background: var(--bg-white); }

/* ========= AUDIT FIXES ========= */
.logo-navbar { max-height: 70px; width: auto; padding: 0 !important; margin: 0 !important; filter: brightness(0) invert(1); transition: filter 0.25s; }
.navbar.scrolled .logo-navbar { filter: none; }
@media (max-width: 900px) { .logo-navbar { max-height: 70px; filter: none; } }
.navbar-logo { margin-right: auto; padding: 5px 0; }
.navbar-inner { display: flex; align-items: center; height: 80px; width: 100%; padding-left: 120px; padding-right: 120px; gap: 1rem; }
@media (max-width: 900px) { .navbar-inner { padding-left: 1rem; padding-right: 1rem; }
  .navbar { background: transparent; }
  .navbar.scrolled { background: rgba(255,255,255,0.97) !important; box-shadow: 0 1px 0 var(--border); }
}
.navbar-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; white-space: nowrap; }
.navbar-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 1.0625rem; font-weight: 600; padding: 0.4rem 0.75rem; }
.navbar.scrolled .navbar-links a { color: #6b7280; }
.navbar-links a:hover { color: rgba(255,255,255,0.7); }
.navbar.scrolled .navbar-links a:hover { color: var(--accent); }
.nav-cta a { background: var(--accent); color: #fff !important; padding: 0.4rem 1.125rem; border-radius: 6px; font-size: 1rem; font-weight: 700; }
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; overflow: hidden; margin-top: -80px; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.35) 55%,rgba(0,0,0,0.15) 100%); z-index: 1; }
@media (max-width: 900px) { .hero-overlay { background: linear-gradient(to bottom,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.5) 60%,rgba(0,0,0,0.65) 100%); } }
.hero-content { position: relative; z-index: 2; padding-top: 33.33vh; padding-bottom: 4rem; margin-left: max(100px, 6vw); margin-right: 200px; text-align: left; }
@media (max-width: 900px) { .hero-content { margin-left: 1.5rem; margin-right: 1.5rem; } }
.hero-heading { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 901px) { .hero-heading { white-space: nowrap; } }
.hero-sub { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 52ch; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: 6px; font-size: 1.0625rem; font-weight: 600; text-decoration: none; }
.hero-cta--primary { background: var(--accent); color: #fff; }
.hero-cta--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.nav-sentinel { height: 80px; opacity: 0; pointer-events: none; }
/* Lang switcher */
.lang-switcher-desktop { flex-shrink: 0; display: flex; }
.lang-switcher-x22 { display: flex; align-items: center; margin-left: 18px; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; }
.lang-switcher-x22 a { font-size: 0.875rem; padding: 0.25rem 0.75rem; color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x22 .lang-active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar.scrolled .lang-switcher-x22 { background: rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.12); }
.navbar.scrolled .lang-switcher-x22 a { color: #4b5563; }
.navbar.scrolled .lang-switcher-x22 .lang-active { color: #1a1a1a; background: rgba(0,0,0,0.1); }
.lang-switcher-x13,.lang-switcher-x21 { display: flex; align-items: center; margin-left: 18px; }
.lang-switcher-xm11,.lang-switcher-xm12,.lang-switcher-xm14 { display: flex; gap: 0.375rem; font-size: 0.6875rem; }
.lang-switcher-xm12 a { color: #fff !important; text-shadow: 0 1px 3px rgba(0,0,0,0.5); text-decoration: none; }
.navbar.scrolled .lang-switcher-xm12 a { color: #4b5563 !important; text-shadow: none; }
.navbar.scrolled .lang-switcher-xm12 .lang-active { color: #1a1a1a !important; }
.lang-switcher-x22 a:hover { color: #fff; }
.navbar.scrolled .lang-switcher-x22 a:hover { color: var(--accent); }
.navbar-right-mobile { display: none; flex-direction: column; align-items: center; gap: 2px; }
@media (max-width: 1023px) { .navbar-right-mobile { display: flex; } .navbar-links { display: none !important; } .lang-switcher-desktop { display: none !important; } }
@media (min-width: 1024px) { .lang-switcher-mobile { display: none !important; } }
.hamburger-bar { background: #fff !important; }
.navbar.scrolled .hamburger-bar { background: #1a1a1a !important; }
/* Footer */
.footer-lang { display: flex; gap: 0.75rem; align-items: center; margin-top: 1.25rem; }
.footer-flag { display: inline-flex; align-items: center; opacity: 0.75; transition: opacity 0.2s; text-decoration: none; }
.footer-flag:hover,.footer-flag.lang-active { opacity: 1; }
.flag-svg { display: block; width: 28px; height: 18px; }
.footer-location { font-size: 1rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.footer-location i { color: var(--accent) !important; }
/* Contact */
.contact-card { background: var(--surface, #f9fafb); border: 1px solid var(--border, #e5e7eb); border-radius: 10px; padding: 1.25rem 1.375rem; margin-bottom: 1rem; }
.contact-card h4 { font-size: 1.0625rem; margin: 0 0 0.625rem; display: flex; align-items: center; gap: 0.5rem; }
.contact-card h4 i { color: var(--accent); }
.contact-card p,.contact-card address { font-size: 1rem; color: #6b7280; margin: 0; font-style: normal; line-height: 1.55; }
.quick-facts-sidebar { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.quick-facts-sidebar li { display: flex; align-items: center; gap: 0.625rem; font-size: 1rem; color: #6b7280; }
.quick-facts-sidebar li i { color: var(--accent); width: 1.25rem; text-align: center; flex-shrink: 0; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row--2 { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 1rem; font-weight: 600; }
.form-field input,.form-field select,.form-field textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--text, #1a1a1a); }
.form-field input::placeholder,.form-field textarea::placeholder { color: #9ca3af !important; font-family: 'DM Sans', sans-serif !important; font-size: 1rem !important; opacity: 1 !important; }
.form-field select { color: #9ca3af; }
.form-field select option { color: var(--text, #1a1a1a); }
.form-field input:focus,.form-field select:focus,.form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.form-field textarea { resize: vertical; min-height: 110px; }
.btn-submit { display: inline-flex; padding: 0.875rem 2.25rem; background: var(--accent); color: #fff; border: none; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; }
.form-reassurance { font-size: 0.9375rem; color: #6b7280; margin: 0.75rem 0 0; }
.form-error { background: #fef2f2; border-left: 4px solid #dc2626; color: #7f1d1d; padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-radius: 6px; }
.form-success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #14532d; padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-radius: 6px; }
.booking-form { display: flex; flex-direction: column; gap: 1.25rem; }
.optional-label { font-size: 0.9375rem; font-weight: 400; color: #6b7280; }
.mobile-cta a { display: block; margin-top: 1.25rem; padding: 0.875rem; background: var(--accent); color: #fff !important; text-align: center; border-radius: 6px; font-weight: 600; text-decoration: none; }
/* Tour block grid */
.tour-block { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; padding: 2rem; align-items: start; min-width: 0; }
.tour-block-reverse { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 768px) { .tour-block,.tour-block-reverse { grid-template-columns: 1fr; } }
/* Mobile font floor */
@media (max-width: 768px) {
  p, li, td, th, address, label { font-size: 1rem !important; }
  input, select, textarea { font-size: 1rem !important; }
  .footer-copyright { font-size: 0.9375rem !important; }
  .form-reassurance { font-size: 0.9375rem !important; }
  .review-country { font-size: 0.9375rem !important; }
}

/* Modal hidden by default */
.modal { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
.modal.open { display: flex; }
.modal .modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.modal .modal-dialog { position: relative; z-index: 1; background: #fff; border-radius: 10px; padding: 2.5rem; max-width: 600px; width: 90%; max-height: 85vh; overflow-y: auto; }
.modal .modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #6b7280; }
.modal .modal-dialog ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1.5rem; }
.modal .modal-dialog li { padding: 0.15rem 0; }
.modal .btn-room-cta { width: 100%; text-align: center; padding: 0.875rem 1.5rem; background: var(--accent); color: #fff; border: none; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; margin-top: 1rem; }

/* Footer */
.footer-description { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0.5rem 0; }
.footer-location { font-size: 1rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.footer-location i { color: var(--accent) !important; }
.footer-enquiry { color: #fff; font-size: 1.0625rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 1rem; }
.footer-social a:hover { background: rgba(255,255,255,0.18); }

/* Contact grid layout - form left, sidebar right */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Logo bottom padding 5px */
.logo-navbar { margin-bottom: 5px !important; }

/* Modal paragraph padding */
.modal .modal-dialog p {
  margin: 1.25rem 0;
  line-height: 1.6;
}

/* Contact grid - sidebar 1/4 width */
.contact-grid {
  grid-template-columns: 3fr 1fr !important;
}

/* Carousel dots - hide overflow beyond 6 */
.carousel-dots {
  max-width: 200px;
  overflow: hidden;
}

/* Desktop font floors */
.section-intro, .section-eyebrow { font-size: 1.0625rem; }
.about-text p, .room-desc, .room-features li { font-size: 1rem; }
.tour-text p, .tour-highlights li { font-size: 1rem; }
.activity-desc, .activity-title { font-size: 1rem; }
.meals-text p { font-size: 1rem; }
.transfer-text p { font-size: 1rem; }
.review-body { font-size: 1rem; }
.contact-card p, .contact-card address { font-size: 1rem; }
.quick-facts-sidebar li { font-size: 1rem; }

/* Mobile contact: single column, form first */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .contact-form-wrap { order: 1; }
  .contact-sidebar { order: 2; }
}

/* Tour block wider text column */
.tour-block {
  grid-template-columns: 1fr 1.8fr !important;
}
.tour-block-reverse {
  grid-template-columns: 1.8fr 1fr !important;
}

/* Mobile activity icon inline with text */
@media (max-width: 768px) {
  .activity-icon { margin-bottom: 0; }
  .activity-card-body h3 { display: flex; align-items: center; gap: 0.5rem; }
}

/* Comprehensive font size audit */
body { font-size: 1rem; line-height: 1.6; }
.section-intro { font-size: 1.0625rem; }
.room-card p, .room-features li { font-size: 1rem; }
.tour-text p, .tour-desc { font-size: 1rem; }
.activity-card-body p { font-size: 1rem; }
.meals-text p, .meal-desc { font-size: 1rem; }
.transfer-text p, .getting-here-text p { font-size: 1rem; }
.review-body, .review-text { font-size: 1rem; }

@media (max-width: 768px) {
  body { font-size: 1rem; }
  p, li, td, th, address, label, span { font-size: 1rem !important; }
  input, select, textarea { font-size: 1rem !important; }
  h3 { font-size: 1.125rem !important; }
  .section-eyebrow { font-size: 1rem !important; }
  .section-intro { font-size: 1rem !important; }
  .room-features li { font-size: 1rem !important; }
  .activity-card-body p { font-size: 1rem !important; }
  .tour-text p, .tour-desc { font-size: 1rem !important; }
  .review-body, .review-text { font-size: 1rem !important; }
  .contact-card p, .quick-facts-sidebar li { font-size: 1rem !important; }
  .modal-dialog p, .modal-dialog li { font-size: 1rem !important; }
  .footer-copyright { font-size: 0.9375rem !important; }
  .form-reassurance { font-size: 0.9375rem !important; }
  .review-country { font-size: 0.9375rem !important; }
}

/* View Details button - outline style like Send an Enquiry */
.villa-view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  background: transparent !important;
  color: var(--text, #1a1a1a) !important;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.villa-view-link:hover {
  background: rgba(37,99,235,0.05) !important;
}

/* Tour text minimum font size */
.tour-text p, .tour-desc, .tour-block p {
  font-size: 1.0625rem !important;
  line-height: 1.65;
}

/* Mobile tours single column */
@media (max-width: 768px) {
  .tour-block, .tour-block-reverse {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .tour-block .tour-image, .tour-block .tour-img-col { order: 1 !important; }
  .tour-block .tour-text, .tour-block .tour-text-col { order: 2 !important; }
  .tour-block-reverse .tour-image, .tour-block-reverse .tour-img-col { order: 1 !important; }
  .tour-block-reverse .tour-text, .tour-block-reverse .tour-text-col { order: 2 !important; }
}

/* COMPREHENSIVE MOBILE FONT FIX - everything 1rem minimum */
@media (max-width: 768px) {
  /* All text elements */
  body, p, li, td, th, address, label, span, a, div {
    font-size: 1rem !important;
  }
  /* Specific selectors */
  .btn, .btn-sm, .btn-primary, .btn-outline, .btn-footer-cta,
  .btn-room-cta, .villa-view-link, .btn-submit {
    font-size: 1rem !important;
  }
  .footer-resort-name { font-size: 1.5rem !important; }
  .footer-tagline, .footer-description, .footer-location { font-size: 1rem !important; }
  .footer-explore li a, .footer-contact-col li, .footer-enquiry { font-size: 1rem !important; }
  .footer-col-heading { font-size: 1.125rem !important; }
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.25rem !important; }
  h4, h5 { font-size: 1.125rem !important; }
  /* Tour text */
  .tour-text p, .tour-desc, .tour-block p { font-size: 1rem !important; }
  .tour-highlights li { font-size: 1rem !important; }
  /* Exceptions - slightly smaller */
  .footer-copyright { font-size: 0.9375rem !important; }
  .review-country { font-size: 0.9375rem !important; }
  /* Ensure no tiny text anywhere */
  * { min-font-size: 1rem; }
}

/* Mobile tour blocks - reduce padding */
@media (max-width: 768px) {
  .tour-block, .tour-block-reverse {
    padding: 0 !important;
  }
  .tour-text, .tour-text-col, .tour-block-content {
    padding: 0 !important;
  }
}

/* Snorkeling tour image square on mobile */
@media (max-width: 768px) {
  img[src*="snorkeling-tour-packages-sicily"] {
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    width: 100% !important;
  }
}

/* Extra padding above contact/reservations section */
#contact {
  padding-top: 75px !important;
}
