/* styles.css â€” Glassmorphism Dark Luxury */

:root {
  --bg-0: #000000;
  --bg-1: #000000;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --accent: #d33b3b;
  /* primary warm red accent */
  --accent-2: #ffb86b;
  /* soft gold highlight */
  --muted: #bfbfc1;
  --card: #0d0d0f;
  --txt: #ffffff;
  --radius-s: 10px;
  --radius-m: 16px;
  --shadow-1: 0 6px 30px rgba(0, 0, 0, 0.6);
  --focus: 3px solid rgba(211, 59, 59, 0.14);
  --max-width: 1180px;
  --container-padding: 28px;
  --transition: 200ms cubic-bezier(.2, .9, .2, 1);
  --glass-blur: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%;
  background: var(--bg-0);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Typography */
h1,
h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  font-weight: 700;
  color: var(--txt)
}

h1 {
  font-size: 2.8rem
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px
}

.lead {
  font-size: 1.12rem;
  font-weight: 300;
  color: var(--muted)
}

.muted {
  color: var(--muted)
}

.center-text {
  text-align: center
}

/* Layout grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px
}

.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  position: sticky;
  top: 0;
  z-index: 120;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.25), rgba(10, 10, 12, 0.06));
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03)
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand img {
  height: 48px;
  border-radius: 8px;
  object-fit: contain
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--txt);
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff, #ffb86b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand .tag {
  font-size: 12px;
  color: var(--muted)
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--txt)
}

.outline {
  border: 1.5px solid #ff8c00;
  background: rgba(255, 140, 0, 0.05);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.15);
}

.outline:hover {
  transform: scale(1.05);
  border-color: #ff4500;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.btn {
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
}

.btn-img {
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: #fff !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.btn-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* Popular Areas Section Redesign */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.area-link {
  background: #0a0a0a;
  border: 1px solid #ff3b3b;
  color: #ff3b3b !important;
  text-align: center;
  padding: 14px 10px;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.area-link:hover {
  background: #1a1a1a;
  border-color: #ff5555;
  color: #ff5555 !important;
  box-shadow: 0 0 15px rgba(255, 59, 59, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 28px;
  min-height: 420px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2)), url('images/hero-banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-small {
  position: relative;
  padding: 60px 28px;
  min-height: 220px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.18)), url('images/hero-banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-small::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  pointer-events: none
}

.hero-small .hero-content {
  position: relative;
  z-index: 2
}

.hero::before {
  /* subtle overlay to ensure text contrast */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.hero .hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 10px
}

.hero .lead {
  font-size: 1.18rem;
  position: relative;
  z-index: 2
}

/* Glass card */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-m);
  padding: 18px;
  backdrop-filter: blur(var(--glass-blur)) saturate(110%);
  box-shadow: var(--shadow-1);
  transition: transform 220ms ease, box-shadow 220ms ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.7)
}

/* Profile portrait */
.profile-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04)
}

/* Neon accent underline for headings */
.card h3 {
  position: relative;
  padding-bottom: 8px
}

.card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 18px rgba(211, 59, 59, 0.12)
}

/* Badges */
.badges {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(255, 200, 120, 0.06);
  padding: 6px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.6px
}

/* Info grid for profile cards */
.profile-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px
}

.meta-item {
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03)
}

/* Search / filter bar (optional) */
.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 16px
}

.search-bar input,
.search-bar select {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--txt)
}

/* Pricing table */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem
}

thead {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent)
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

th {
  font-weight: 700;
  color: var(--txt)
}

td {
  color: var(--muted)
}

td .price {
  color: var(--accent);
  font-weight: 800
}

/* Contact/CTA */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

.cta-row .outline {
  padding: 10px 14px;
  border-radius: 10px
}

.cta-row .btn {
  padding: 12px 18px;
  border-radius: 12px
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--txt);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--txt);
  transition: 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Footer */
.site-footer {
  padding: 40px 28px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 28px;
  color: var(--muted)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 220px 220px 320px;
  gap: 24px;
  align-items: start
}

.site-footer h3,
.site-footer h4 {
  color: var(--txt);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.site-footer a {
  color: var(--muted)
}

.site-footer a:hover {
  color: var(--txt);
  text-decoration: underline
}

.footer-about p {
  margin-bottom: 10px
}

.footer-contact p {
  margin: 6px 0
}

.footer-contact .disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 8px
}

.footer-legal {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 18px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted)
}

@media (max-width:1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .site-footer {
    padding: 28px 20px
  }
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .hero {
    padding: 72px 20px;
    min-height: 320px
  }

  h1 {
    font-size: 2.2rem
  }

  .profile-img {
    height: 220px
  }

  .container {
    padding: 20px
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-1);
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  header {
    padding: 14px 18px
  }

  .grid {
    gap: 14px
  }

  .profile-img {
    height: 200px
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 1.6rem
  }

  .hero {
    padding: 48px 16px;
    min-height: 220px
  }

  .profile-meta {
    flex-direction: column;
    gap: 8px
  }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
  .brand img {
    height: 40px
  }

  .nav a {
    padding: 12px 14px;
    font-size: 1rem
  }

  .btn {
    width: 100%;
    display: inline-block;
    text-align: center
  }

  .search-bar {
    flex-direction: column
  }

  .search-bar input,
  .search-bar select {
    width: 100%
  }

  .hero .hero-content {
    max-width: 100%
  }
}

@media (max-width:520px) {
  .profile-img {
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 8px
  }

  .hero {
    padding: 36px 12px
  }

  h1 {
    font-size: 1.5rem
  }
}

/* Focus states */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 8px
}

/* Small utility */
.center {
  display: flex;
  align-items: center;
  justify-content: center
}

/* Star ratings */
.info strong {
  color: var(--txt)
}

.info {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.7
}

.info p {
  color: var(--muted)
}

/* â˜… star color â€” gold for rating stars */
.rating-stars {
  color: #f5c518;
  font-size: 1.1rem;
  letter-spacing: 2px
}

/* Responsive table wrapper */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* SEO content sections */
.hero-section {
  padding: 40px 28px;
  margin-top: 40px;
}

.hero-section h2 {
  margin-bottom: 12px;
}

.hero-section p,
.intro-section p,
.why-different p,
.categories p,
.booking p,
.events p,
.safety p,
.conclusion p,
.profiles p {
  line-height: 1.75;
  margin-bottom: 12px;
}

.why-different ul,
.categories ul,
.events ul,
.safety ul {
  padding-left: 20px;
  margin: 12px 0;
}

.why-different li,
.categories li,
.events li,
.safety li {
  margin-bottom: 6px;
  line-height: 1.6;
  color: var(--muted);
}

/* Internal link styling in content */
.seo-content a,
.hero-section a,
.intro-section a,
.conclusion a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-content a:hover,
.hero-section a:hover,
.intro-section a:hover,
.conclusion a:hover {
  color: var(--accent);
}

/* Anchor scroll offset */
[id] {
  scroll-margin-top: 80px
}

/* Touch targets â€” minimum 44px for mobile */
@media (max-width: 768px) {
  .nav a, .btn, .outline {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center
  }

  .hero-section {
    padding: 28px 16px;
  }

  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 10px 8px;
  }
}

/* Category Gallery */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  height: 240px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
  text-align: center;
}

.category-overlay h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.category-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(211, 59, 59, 0.3);
}

/* Global Flash Popup Styles */
#flash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#flash-overlay.active {
  opacity: 1;
  visibility: visible;
}

#flash-modal {
  width: 420px;
  max-width: 90%;
  max-height: 90vh;
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-m);
  position: relative;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(211, 59, 59, 0.4);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  text-align: center;
}

#flash-overlay.active #flash-modal {
  transform: scale(1);
}

/* Removed .flash-close for mandatory Gatekeeper splash */

.flash-body {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.flash-body img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-bottom: 10px;
  object-fit: cover;
}

.flash-body h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #fff;
}

.flash-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.flash-footer {
  padding: 20px;
  background: rgba(255,255,255,0.03);
}

@media (max-width: 500px) {
  #flash-modal {
    width: 95%;
    margin: 10px;
    padding: 20px 10px;
  }
  .flash-btn-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .flash-btn-group .btn, 
  .flash-btn-group .outline {
    width: 100%;
    min-height: 48px;
  }
}

.flash-btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 0 20px;
}

/* Video Carousel */
.video-carousel-container {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.video-carousel-container::-webkit-scrollbar {
  height: 6px;
}

.video-carousel-container::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.video-carousel-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

/* Cinematic Video Styles */
.cinematic-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .cinematic-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cinematic-video-grid {
    grid-template-columns: 1fr;
  }
}

.cinematic-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(211, 59, 59, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cinematic-video-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(211, 59, 59, 0.5);
  border-color: var(--accent-2);
}

.cinematic-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(211, 59, 59, 0.9);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.flash-btn-group .btn { min-width: 160px; }
.flash-btn-group .outline { min-width: 160px; }

/* ========== WhatsApp Floating Button ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  padding: 12px 22px 12px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.whatsapp-float span {
  white-space: nowrap;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile: icon-only compact button */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .whatsapp-float span {
    display: none;
  }
}
