
/* ============================================
   301 EVENTS - ENHANCED FEATURES CSS (CLEAN)
   - Image Lightbox (protected UX)
   - Toast Notifications
   - Trusted Logos Slider (image logos)
   - Minor UX helpers used by index.html
   ============================================ */

/* ========== IMAGE LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  z-index: 10001;
  animation: zoomIn 0.4s ease-out;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);

  /* UX protection (not bulletproof, but discourages) */
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

/* Clickable image indication */
.gallery-image,
.category-card img,
.package-image img,
.gallery-item img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-image:hover,
.category-card img:hover,
.package-image img:hover,
.gallery-item img:hover {
  transform: scale(1.02);
  filter: brightness(1.08);
}

/* ========== TOAST NOTIFICATION ========== */
.toast-notification {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0a2463 0%, #00b4d8 100%);
  color: white;
  padding: 18px 34px;
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10002;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
  bottom: 40px;
}

.toast-icon {
  font-size: 22px;
}

.toast-message {
  letter-spacing: 0.2px;
}

/* ========== TRUSTED LOGOS SLIDER (IMAGE LOGOS) ========== */
.trust-bar {
  background: #f9fafb;
  padding: 60px 0;
  overflow: hidden;
}

.trust-bar h3 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 1.25rem;
  color: #222;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== MINOR UX HELPERS (used by index.html) ========== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus { left: 10px; }

.hero-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  justify-content: center;
}

.slide-cta.secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-proof {
  margin-top: 18px;
  font-size: 0.95rem;
  opacity: 0.92;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  padding: 18px 0 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 98vw;
    max-height: 98vh;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .lightbox-watermark {
    font-size: 12px;
    padding: 8px 15px;
    bottom: 10px;
    right: 10px;
  }

  .toast-notification {
    max-width: 90vw;
    padding: 14px 22px;
    font-size: 14px;
  }

  .logo-item {
    padding: 15px 30px;
  }

  .logo-item img {
    max-height: 45px;
    max-width: 120px;
  }
}

/* ========== PRINT ========== */
@media print {
  .lightbox,
  .lightbox-content img {
    display: none !important;
  }
}
/* ============================================
   BROWSE CATALOG — BIGGER, BOLDER, 3x2 GRID
   Paste at END of enhanced-features.css
   ============================================ */

.browse-catalog {
  padding: 110px 0; /* bigger section */
  background: linear-gradient(
    180deg,
    rgba(23, 162, 184, 0.08) 0%,
    #f9fafb 45%,
    rgba(23, 162, 184, 0.06) 100%
  );
}

/* Make the intro feel more "hero-like" */
.browse-catalog .section-header {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.browse-catalog .section-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #0a2463;
  margin-bottom: 14px;
}

.browse-catalog .section-header p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.8;
}

/* 3 columns x 2 rows */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 columns */
  gap: 30px;
}

/* Bigger premium cards */
.catalog-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 2px solid rgba(23, 162, 184, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(23, 162, 184, 0.22);
  border-color: rgba(23, 162, 184, 0.35);
}

.catalog-item img {
  width: 100%;
  height: 220px; /* bigger image */
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
  transition: transform 0.35s ease;
}

.catalog-item:hover img {
  transform: scale(1.04);
}

/* BIG bold category label */
.catalog-item h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #0a2463;
  text-align: center;
}

/* Responsive: 2 columns tablet */
@media (max-width: 992px) {
  .browse-catalog {
    padding: 90px 0;
  }

  .browse-catalog .section-title {
    font-size: 40px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-item img {
    height: 200px;
  }
}

/* Responsive: 1 column phone */
@media (max-width: 520px) {
  .browse-catalog .section-title {
    font-size: 34px;
  }

  .browse-catalog .section-header p {
    font-size: 16px;
  }

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

  .catalog-item img {
    height: 190px;
  }

  .catalog-item h3 {
    font-size: 20px;
  }
}
