/* 
 * Vinuss Victory Tourism - Premium Brand Style System
 * Theme: Royal Emerald Green + Rich Gold | Luxury Travel Identity
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* === BRAND CORE PALETTE === */
  --emerald:        #0d3d2b;
  --emerald-mid:    #155c3e;
  --emerald-light:  #1e7a4a;
  --emerald-glow:   #27a862;

  --gold:           #D4AF37;
  --gold-deep:      #B8860B;
  --gold-light:     #F5E17A;
  --gold-pale:      #FFF8DC;

  /* === GRADIENTS === */
  --gold-gradient:    linear-gradient(135deg, #F5E17A 0%, #D4AF37 40%, #B8860B 100%);
  --emerald-gradient: linear-gradient(135deg, #0d3d2b 0%, #1e7a4a 100%);
  --hero-overlay:     linear-gradient(160deg, rgba(13,61,43,0.82) 0%, rgba(13,61,43,0.55) 50%, rgba(13,61,43,0.90) 100%);

  /* === NEUTRALS === */
  --bg-main:        #f7f5f0;
  --bg-card:        #ffffff;
  --bg-cream:       #fdf9f0;
  --text-dark:      #0d2519;
  --text-body:      #2d4a3a;
  --text-muted:     #6b7d72;
  --text-white:     #ffffff;

  /* === STATUS === */
  --success:        #10b981;
  --danger:         #ef4444;

  /* === GLASSMORPHISM === */
  --glass-bg:       rgba(255, 255, 255, 0.75);
  --glass-border:   rgba(212, 175, 55, 0.25);
  --glass-shadow:   0 8px 32px rgba(13, 61, 43, 0.12);

  /* === FONTS === */
  --font-display:   'Cormorant Garamond', serif;
  --font-headings:  'Outfit', sans-serif;
  --font-body:      'Inter', sans-serif;

  /* === ANIMATION === */
  --transition-fast:   0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.55s ease;

  /* === RADII === */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  40px;
}

/* ===========================
   RESET & BASE
=========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--emerald);
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ===========================
   UTILITIES
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }

.section-subtitle {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  position: relative;
  padding: 0 20px;
}
.section-subtitle::before,
.section-subtitle::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--gold);
}
.section-subtitle::before { left: 0; }
.section-subtitle::after  { right: 0; }

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--emerald);
}
@media (max-width: 768px) { .section-title { font-size: 28px; } }

/* Gold underline accent for titles */
.section-title-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--emerald);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: var(--emerald-gradient);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(13, 61, 43, 0.3);
}
.btn-secondary:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--emerald);
  color: var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold-gradient);
  color: var(--emerald);
  border-color: transparent;
}

/* ===========================
   WHATSAPP FLOATING BUTTON
=========================== */
.whatsapp-chat {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: linear-gradient(135deg, #25d366, #128c4b);
  color: var(--text-white);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition-normal);
  border: 3px solid rgba(255,255,255,0.3);
}
.whatsapp-chat:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

/* ===========================
   HEADER & NAV
=========================== */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 18px 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(13, 61, 43, 0.1);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  padding: 10px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  letter-spacing: 0.3px;
}
header.scrolled .nav-links a { color: var(--emerald); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--gold-light); }
header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active { color: var(--gold-deep); }

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

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}
header.scrolled .mobile-menu-toggle { color: var(--emerald); }

@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -300px;
  width: 285px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1001;
  padding: 36px 24px;
  box-shadow: -6px 0 40px rgba(0,0,0,0.15);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-left: 3px solid var(--gold);
}
.mobile-nav.open { right: 0; }

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--emerald);
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: var(--emerald);
  padding-left: 8px;
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--gold-deep);
  border-left-color: var(--gold);
  padding-left: 14px;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(13, 61, 43, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}
.overlay.active { opacity: 1; pointer-events: all; }

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero_travel.png') no-repeat center center/cover;
  color: var(--text-white);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}
/* Subtle gold shimmer at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 180px;
  background: linear-gradient(to top, rgba(13,61,43,0.6), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  padding: 0 24px;
  margin-bottom: 60px;
}

/* Decorative tagline above h1 */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease forwards;
}
.hero-eyebrow i { color: var(--gold); }

.hero-content h1 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-content h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease forwards;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.1s ease forwards;
}

.search-container {
  position: absolute;
  bottom: -160px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1020px;
  width: calc(100% - 48px);
  z-index: 10;
  animation: fadeInUp 1.3s ease forwards;
}
.search-bar {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 12px 48px rgba(13, 61, 43, 0.18);
}
.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.search-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-field label i { color: var(--gold-deep); }
.search-field input,
.search-field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  color: var(--emerald);
  padding: 4px 0;
  text-align: center;
  text-align-last: center;
}
.search-field input[type="date"] {
  color-scheme: light;
}
.search-field select option {
  background: var(--bg-card);
  color: var(--emerald);
}
.search-divider {
  width: 1px; height: 44px;
  background: rgba(212, 175, 55, 0.25);
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 38px; }
  .hero-content p { font-size: 16px; }
  .search-container { bottom: -240px; }
  .search-bar { 
    flex-direction: row; 
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
    border-radius: var(--radius-lg); 
    padding: 16px 20px; 
    gap: 16px;
  }
  .search-field {
    min-width: 130px;
  }
  .search-divider { 
    display: none; 
  }
  .categories {
    padding-top: 320px;
  }
}

/* ===========================
   CATEGORIES / TABS
=========================== */
.categories {
  padding-top: 250px;
  padding-bottom: 20px;
}
.tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tab-btn {
  background: var(--bg-card);
  border: 1.5px solid rgba(13, 61, 43, 0.12);
  padding: 10px 26px;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--emerald);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}
.tab-btn.active {
  background: var(--emerald-gradient);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(13, 61, 43, 0.3);
}

/* ===========================
   PACKAGE CARDS
=========================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}
@media (max-width: 480px) { .packages-grid { grid-template-columns: 1fr; } }

.package-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 61, 43, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition-normal);
  pointer-events: none;
  z-index: 1;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(13, 61, 43, 0.14);
}
.package-card:hover::before {
  border-color: var(--gold);
}

.package-image-wrapper {
  position: relative;
  height: 235px;
  overflow: hidden;
}
.package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.package-card:hover .package-image { transform: scale(1.08); }

.package-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold-gradient);
  color: var(--emerald);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  z-index: 2;
}
.package-price-tag {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(13, 61, 43, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-family: var(--font-headings);
  font-size: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 2;
}
.package-price-tag span {
  font-size: 10px;
  font-weight: 500;
  color: rgba(245, 225, 122, 0.7);
  display: block;
}

.package-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.package-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.package-meta span { display: flex; align-items: center; gap: 6px; }
.package-meta i { color: var(--gold-deep); }

.package-title {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--emerald);
  transition: var(--transition-fast);
}
.package-card:hover .package-title { color: var(--gold-deep); }

.package-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
  line-height: 1.6;
}

.package-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 16px;
}
.package-actions .btn { flex: 1; padding: 10px 14px; font-size: 13px; }

/* ===========================
   WHY CHOOSE US
=========================== */
.features-section {
  background: var(--emerald-gradient);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}
/* Gold shimmer decorative circles */
.features-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.features-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.features-section .section-title { color: var(--text-white); }
.features-section .section-subtitle { color: var(--gold-light); }
.features-section .section-subtitle::before,
.features-section .section-subtitle::after { color: var(--gold-light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.feature-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 2px;
  background: var(--gold-gradient);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: var(--transition-normal);
}
.feature-box:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
.feature-box:hover::before { opacity: 1; }

.feature-icon-wrapper {
  width: 72px; height: 72px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(212,175,55,0.2);
  transition: var(--transition-normal);
}
.feature-box:hover .feature-icon-wrapper {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: scale(1.08) rotate(5deg);
}
.feature-icon-wrapper i {
  font-size: 28px;
  color: var(--gold);
  transition: var(--transition-normal);
}
.feature-box:hover .feature-icon-wrapper i { color: var(--emerald); }

.feature-box h3 {
  color: var(--text-white);
  font-size: 17px;
  margin-bottom: 12px;
}
.feature-box p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  background: var(--gold-pale);
  padding: 50px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M20 20l20-20H0z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  position: relative;
}
.stat-item h3 {
  font-size: 44px;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-item p {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===========================
   PLANNER WIZARD
=========================== */
.planner-section { background: var(--bg-cream); }
.planner-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 20px 60px rgba(13,61,43,0.08);
  max-width: 900px;
  margin: 50px auto 0;
  overflow: hidden;
}
.planner-header {
  background: var(--emerald-gradient);
  color: var(--text-white);
  padding: 34px 40px;
  position: relative;
  overflow: hidden;
}
.planner-header::after {
  content: '◆';
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  color: rgba(212,175,55,0.12);
  pointer-events: none;
}
.planner-header h3 {
  color: var(--text-white);
  font-size: 24px;
  margin-bottom: 6px;
}
.planner-header p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* Wizard Progress */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 36px 40px 10px;
}
.wizard-progress::before {
  content: '';
  position: absolute;
  top: 15px; left: 0;
  width: 100%; height: 3px;
  background: #e5e7eb;
  z-index: 1;
}
.progress-fill {
  position: absolute;
  top: 15px; left: 0;
  width: 0%; height: 3px;
  background: var(--gold-gradient);
  z-index: 2;
  transition: var(--transition-normal);
  border-radius: 2px;
}
.progress-step {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 3px solid #d1d5db;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  color: var(--text-muted);
  position: relative; z-index: 3;
  transition: var(--transition-normal);
}
.progress-step.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--text-white);
  box-shadow: 0 0 0 4px rgba(13,61,43,0.15);
}
.progress-step.completed {
  background: var(--gold-gradient);
  border-color: var(--gold);
  color: var(--emerald);
}
.step-label {
  position: absolute;
  bottom: -24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 100px;
  text-align: center;
  letter-spacing: 0.5px;
}
.progress-step.active .step-label { color: var(--emerald); }

.wizard-form { padding: 30px 40px 40px; }
.form-step { display: none; animation: fadeIn 0.4s ease forwards; }
.form-step.active { display: block; }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.dest-card-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dest-card {
  border: 2px solid rgba(13,61,43,0.1);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  background: var(--bg-main);
}
.dest-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.dest-card-input:checked + .dest-card {
  border-color: var(--emerald);
  background: rgba(13,61,43,0.06);
  box-shadow: 0 4px 16px rgba(13,61,43,0.12);
}
.dest-card i { font-size: 26px; color: var(--text-muted); transition: var(--transition-normal); }
.dest-card-input:checked + .dest-card i { color: var(--emerald); transform: scale(1.1); }
.dest-card span { font-family: var(--font-headings); font-weight: 600; font-size: 13px; color: var(--emerald); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(13,61,43,0.12);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-main);
  transition: var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 20px; }
.exp-card {
  border: 2px solid rgba(13,61,43,0.1);
  border-radius: var(--radius-md);
  padding: 22px;
  cursor: pointer;
  transition: var(--transition-normal);
  background: var(--bg-main);
}
.exp-card:hover { border-color: var(--gold); background: var(--gold-pale); }
.exp-card-input:checked + .exp-card { border-color: var(--emerald); background: rgba(13,61,43,0.05); }
.exp-card h4 { font-size: 15px; margin-bottom: 8px; color: var(--emerald); display: flex; align-items: center; justify-content: space-between; }
.exp-card-input:checked + .exp-card h4 { color: var(--gold-deep); }
.exp-card h4::after { content: '\f10c'; font-family: 'Font Awesome 5 Free'; font-weight: 400; font-size: 14px; color: var(--text-muted); }
.exp-card-input:checked + .exp-card h4::after { content: '\f058'; font-weight: 900; color: var(--gold-deep); }
.exp-card p { font-size: 13px; color: var(--text-muted); }

.wizard-actions { display: flex; justify-content: space-between; margin-top: 40px; border-top: 1px solid rgba(212,175,55,0.15); padding-top: 24px; }

.success-screen { text-align: center; padding: 40px 0; animation: scaleUp 0.5s ease forwards; }
.success-icon {
  width: 80px; height: 80px;
  background: rgba(16,185,129,0.1);
  color: var(--success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  border: 2px solid rgba(16,185,129,0.2);
}
.success-screen h3 { font-size: 24px; color: var(--emerald); margin-bottom: 12px; }
.success-screen p { color: var(--text-muted); margin-bottom: 24px; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  background: var(--bg-card);
  border-top: 3px solid rgba(212,175,55,0.2);
  border-bottom: 3px solid rgba(212,175,55,0.2);
  overflow: hidden;
}
.testimonials-slider { display: flex; gap: 30px; margin-top: 50px; transition: transform var(--transition-normal); }
.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(212,175,55,0.15);
  position: relative; display: flex; flex-direction: column;
  transition: var(--transition-normal);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13,61,43,0.08);
}
/* Quote icon */
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--gold-light);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 992px) { .testimonial-card { min-width: calc(50% - 15px); } }
@media (max-width: 600px) { .testimonial-card { min-width: 100%; } }

.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 14px; }
.testimonial-quote { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 24px; flex: 1; line-height: 1.8; padding-top: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.author-info h4 { font-size: 14px; margin-bottom: 2px; color: var(--emerald); }
.author-info span { font-size: 12px; color: var(--text-muted); }

.slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(13,61,43,0.15);
  border: none; cursor: pointer;
  transition: var(--transition-fast);
}
.slider-dot.active { background: var(--gold-gradient); width: 28px; border-radius: 5px; }

/* ===========================
   MODALS
=========================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13, 61, 43, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-container {
  background: var(--bg-card);
  width: 100%; max-width: 950px;
  height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  transform: translateY(40px);
  transition: transform var(--transition-normal);
  border: 1px solid rgba(212,175,55,0.2);
}
.modal-overlay.active .modal-container { transform: translateY(0); }

.modal-header-banner {
  height: 255px;
  position: relative;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.modal-header-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,61,43,0.35) 0%, rgba(13,61,43,0.75) 100%);
}
.modal-header-content { position: absolute; bottom: 24px; left: 30px; right: 80px; color: var(--text-white); z-index: 2; }
.modal-header-content h2 { color: var(--text-white); font-size: 30px; font-weight: 800; font-family: var(--font-display); margin-bottom: 8px; }
.modal-header-meta { display: flex; gap: 20px; font-size: 14px; color: var(--gold-light); }

.modal-close-btn {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; z-index: 10;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
}
.modal-close-btn:hover { background: var(--danger); border-color: var(--danger); transform: rotate(90deg); }

.modal-body { flex: 1; display: grid; grid-template-columns: 1.7fr 1fr; overflow: hidden; }
@media (max-width: 850px) { .modal-body { grid-template-columns: 1fr; overflow-y: auto; } }

.modal-left { padding: 28px; overflow-y: auto; border-right: 1px solid rgba(212,175,55,0.12); height: 100%; }
@media (max-width: 850px) { .modal-left { height: auto; overflow: visible; } }

.modal-tabs { display: flex; border-bottom: 2px solid rgba(212,175,55,0.15); margin-bottom: 22px; gap: 22px; }
.modal-tab-btn {
  background: none; border: none;
  font-family: var(--font-headings); font-weight: 600; font-size: 14px;
  color: var(--text-muted); padding: 10px 0; cursor: pointer;
  position: relative; transition: var(--transition-fast);
}
.modal-tab-btn:hover, .modal-tab-btn.active { color: var(--emerald); }
.modal-tab-btn.active::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 100%; height: 2px;
  background: var(--gold-gradient);
}
.modal-tab-pane { display: none; animation: fadeIn 0.4s ease forwards; }
.modal-tab-pane.active { display: block; }

.itinerary-timeline { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }
.timeline-item { border: 1px solid rgba(212,175,55,0.12); border-radius: var(--radius-sm); overflow: hidden; }
.timeline-header {
  background: var(--bg-cream); padding: 15px 18px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: var(--transition-fast);
}
.timeline-header:hover { background: var(--gold-pale); }
.timeline-header h4 { font-size: 14px; color: var(--emerald); display: flex; align-items: center; gap: 10px; }
.timeline-header h4 span {
  background: var(--emerald-gradient); color: var(--text-white);
  padding: 2px 8px; border-radius: 4px; font-size: 11px;
}
.timeline-header i { color: var(--text-muted); transition: var(--transition-normal); }
.timeline-item.active .timeline-header { background: var(--gold-pale); }
.timeline-item.active .timeline-header i { transform: rotate(180deg); color: var(--gold-deep); }
.timeline-content {
  display: none; padding: 18px;
  border-top: 1px solid rgba(212,175,55,0.1);
  font-size: 13.5px; color: var(--text-muted);
  background: var(--bg-card);
  animation: slideDown 0.3s ease forwards;
  line-height: 1.8;
}
.timeline-item.active .timeline-content { display: block; }

.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .inc-exc-grid { grid-template-columns: 1fr; } }
.inc-list h4, .exc-list h4 { font-size: 15px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.inc-list h4 { color: var(--success); }
.exc-list h4 { color: var(--danger); }
.inc-list ul, .exc-list ul { display: flex; flex-direction: column; gap: 10px; }
.inc-list li, .exc-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
.inc-list li i { color: var(--success); margin-top: 3px; }
.exc-list li i { color: var(--danger); margin-top: 3px; }

.modal-right {
  padding: 28px;
  background: var(--bg-cream);
  display: flex; flex-direction: column;
  justify-content: flex-start;
  height: 100%; overflow-y: auto;
  border-left: 1px solid rgba(212,175,55,0.1);
}
@media (max-width: 850px) { .modal-right { height: auto; overflow: visible; border-top: 1px solid rgba(212,175,55,0.12); } }
.modal-right h3 { font-size: 18px; margin-bottom: 6px; text-align: center; color: var(--emerald); }
.modal-right p { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; text-align: center; }
.modal-right form { display: flex; flex-direction: column; gap: 14px; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--emerald);
  color: var(--text-white);
  padding-top: 80px;
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}
.footer-col h3 {
  color: var(--gold-light);
  font-size: 17px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}
.footer-col p { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.8; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: var(--transition-normal);
}
.social-links a:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--emerald);
  transform: translateY(-4px);
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; transition: var(--transition-fast); }
.footer-links a i { color: var(--gold); font-size: 11px; }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,0.65); }
.contact-item i { color: var(--gold); margin-top: 4px; font-size: 15px; }

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-input-group {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
}
.newsletter-input-group input {
  flex: 1;
  padding: 13px 16px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--emerald);
  background: var(--bg-card);
}
.newsletter-input-group button {
  background: var(--gold-gradient);
  border: none;
  color: var(--emerald);
  padding: 0 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition-normal);
}
.newsletter-input-group button:hover { opacity: 0.88; }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.65); margin: 0 10px; transition: var(--transition-fast); }
.footer-bottom a:hover { color: var(--gold); }

/* ===========================
   GENERAL ENQUIRY MODAL
=========================== */
#generalEnquiryModal .modal-container {
  max-width: 450px;
  height: auto;
  max-height: 90vh;
  border-radius: var(--radius-md);
}
#generalEnquiryModal .modal-close-btn {
  color: var(--emerald);
  background: rgba(13,61,43,0.06);
  border-color: rgba(13,61,43,0.1);
  top: 15px; right: 15px;
}
#generalEnquiryModal .modal-close-btn:hover { background: var(--danger); color: white; border-color: var(--danger); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Shimmer effect for section title underlines */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ===========================
   NOTIFICATION BELL SYSTEM
=========================== */
.notif-wrapper {
  position: relative;
}

.notif-bell {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  position: relative;
  padding: 6px 10px;
  transition: var(--transition-fast);
  border-radius: 50%;
}
header.scrolled .notif-bell {
  color: var(--emerald);
}
.notif-bell:hover {
  color: var(--gold);
  transform: rotate(12deg);
}

.notif-badge {
  position: absolute;
  top: 0; right: 2px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-family: var(--font-headings);
  animation: badgePulse 2s ease infinite;
  box-shadow: 0 2px 8px rgba(239,68,68,0.5);
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Dropdown Panel */
.notif-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: -20px;
  width: 370px;
  max-height: 440px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 20px 60px rgba(13,61,43,0.18);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.notif-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
/* Arrow pointer */
.notif-dropdown::before {
  content: '';
  position: absolute;
  top: -8px; right: 28px;
  width: 16px; height: 16px;
  background: var(--bg-card);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-left: 1px solid rgba(212,175,55,0.2);
  transform: rotate(45deg);
  z-index: 1;
}

.notif-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 2px solid rgba(212,175,55,0.12);
  background: var(--bg-cream);
}
.notif-dropdown-header h4 {
  font-size: 14px;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 8px;
}
.notif-dropdown-header h4 i {
  color: var(--gold-deep);
  font-size: 15px;
}

.notif-clear-btn {
  background: none;
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-headings);
  letter-spacing: 0.3px;
}
.notif-clear-btn:hover {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.notif-dropdown-body {
  overflow-y: auto;
  flex: 1;
  max-height: 360px;
  padding: 8px;
}

/* Empty state */
.notif-empty {
  text-align: center;
  padding: 36px 20px;
  color: var(--text-muted);
}
.notif-empty i {
  font-size: 36px;
  color: rgba(212,175,55,0.3);
  margin-bottom: 12px;
  display: block;
}
.notif-empty p {
  font-size: 13px;
}

/* Individual notification card */
.notif-item {
  display: flex;
  gap: 12px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,175,55,0.08);
  margin-bottom: 6px;
  transition: var(--transition-fast);
  background: var(--bg-main);
  animation: slideDown 0.3s ease forwards;
  position: relative;
}
.notif-item:hover {
  background: var(--gold-pale);
  border-color: rgba(212,175,55,0.25);
}

.notif-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
/* Color variants by type */
.notif-item-icon.enquiry {
  background: rgba(212,175,55,0.12);
  color: var(--gold-deep);
  border: 1.5px solid rgba(212,175,55,0.3);
}
.notif-item-icon.planner {
  background: rgba(13,61,43,0.08);
  color: var(--emerald-light);
  border: 1.5px solid rgba(13,61,43,0.2);
}
.notif-item-icon.quick {
  background: rgba(37,211,102,0.1);
  color: #128c4b;
  border: 1.5px solid rgba(37,211,102,0.25);
}

.notif-item-content {
  flex: 1;
  min-width: 0;
}
.notif-item-content h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notif-item-content p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notif-item-time {
  font-size: 10px;
  color: var(--gold-deep);
  font-weight: 600;
  white-space: nowrap;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.notif-item-time i {
  font-size: 9px;
}

.notif-item-dismiss {
  position: absolute;
  top: 8px; right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition-fast);
  padding: 2px 4px;
}
.notif-item:hover .notif-item-dismiss {
  opacity: 1;
}
.notif-item-dismiss:hover {
  color: var(--danger);
}

/* Unread dot */
.notif-item.unread::after {
  content: '';
  position: absolute;
  top: 14px; right: 26px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(212,175,55,0.5);
}

@media (max-width: 480px) {
  .notif-dropdown {
    width: 300px;
    right: -80px;
  }
  .notif-dropdown::before {
    right: 88px;
  }
}

