/* ===== PART 1 OF 3 - ROOT VARIABLES THROUGH HEADER STYLES ===== */
/* MERGE POINT: This is the START of the file */

:root {
  --brand-green: #008f4f;
  --brand-orange: #f39910;
  --brand-white: #ffffff;
  --gold:#f39c12;
  --accent:#00b9a9;
  --teal:#00b9a9;
  --card-gray:#efefef;
  --muted:#f7f7f7;
  --dark:#222;
  --max-width:1200px;
  --text-muted: #6b7280;
  --bg-light: #f8f9fa;
  --border-light: #e5e7eb;
  --font-secondary: 'Poppins', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html,body { height: 100%; margin: 0; }
html {
  scroll-padding-top: 80px;
}
body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing:antialiased;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.logo-text-footer {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    display: block;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-text-footer .koneqt {
    color: #ffffff;
}

.logo-text-footer .me {
    color: #fd9f0b;
}

.sign-in {
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.sign-in:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sign-up {
    padding: 8px 16px;
    background-color: #007bff;
    border: 1px solid #007bff;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.sign-up:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #fff;
}

.sign-up-rounded {
    padding: 8px 24px;
    background-color: #00b9a9;
    border: 1px solid #00b9a9;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.sign-up-rounded:hover {
    background-color: #007da6;
    border-color: #007da6;
    color: #fff;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(243, 156, 18, 0.95);
  z-index: 5000;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
  padding: 10px 18px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-text {
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 800;
  color: #00b9a9;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  display: block;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-text span { color: #fff; }

/* Search Area */
.search-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  min-width: 200px;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
}

.search-combined {
  width: 100%;
  padding: 12px 120px 12px 16px;
  border: none;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
}

.loc-icon-combined {
  position: absolute;
  right: 50px;
  color: #888;
  pointer-events: none;
}

.search-btn-combined {
  position: absolute;
  right: 6px;
  background: var(--accent);
  border: none;
  border-radius: 18px;
  padding: 6px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dd-btn {
  background: transparent;
  border-radius: 22px;
  padding: 8px 14px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .12s ease;
  white-space: nowrap;
}

.drop-white {
  position: relative;
  z-index: 4000;
}

/* Header dropdown menus with invisible bridge */
.dd-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  padding: 8px 0;
  display: none;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 10000;
  max-height: 320px;
  overflow-y: auto;
}

.dd-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.drop-white:hover .dd-menu,
.drop-white.active .dd-menu {
  display: block;
}

.dd-menu li {
  padding: 10px 14px;
  color: #444;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.dd-menu li:last-child { border-bottom: none; }
.dd-menu li:hover { background: rgba(0,0,0,0.04); }
.dd-menu li i { width: 22px; text-align: center; font-size: 14px; color: var(--accent); }
.dd-menu li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.btn-outline-light.sign-in {
  border-radius: 22px;
  padding: 8px 12px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile hamburger for categories */
.mobile-cat-toggle {
  display: none;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

/* ===== HERO + CATEGORIES ===== */
.hero {
  position: relative;
  width: 100%;
  height: 50vh !important;
  min-height: 350px !important;
  max-height: 500px !important;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 185, 169, 0.001); 
  backdrop-filter: blur(2px);
  padding: 20px 2px 20px !important;  
  overflow-y: auto;
  z-index: 2;
}

/* DESKTOP CATEGORY BAR - POSITIONED AT TOP OF HERO */
.category-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1px;
  z-index: 100000;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 1px;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  color: #fff;
  font-weight: 700;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* FIXED: Category item structure for proper alignment */
.cat-item {
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  z-index: 100000;
  text-align: left;
}

.cat-item-content {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  color: #fff;
  text-decoration: none;
}

.cat-item:hover {
  opacity: 0.95;
}

.cat-item-content i {
  font-size: 14px;
  flex-shrink: 0;
}

/* CATEGORY DROPDOWN - DESKTOP - LIGHT GRAY BACKGROUND */
.cat-dd {
  position: absolute;
  top: calc(100%);
  left: 0 !important;
  background: #f5f5f5 !important;
  color: #333;
  padding: 0;
  padding-top: 8px;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 999999 !important;
  min-width: 280px;
  max-height: 450px;
  overflow-y: auto;
  text-align: left !important;
}

/* CRITICAL: Extended invisible bridge for desktop hover - prevents dropdown from disappearing */
.cat-dd::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -10px;
  right: -10px;
  height: 24px;
  background: transparent;
  z-index: 999999;
  pointer-events: auto;
}

/* Ensure dropdown is always on top and mouse events work */
.cat-item:hover .cat-dd,
.cat-dd:hover {
  display: block !important;
}

.cat-dd li {
  padding: 0;
  list-style: none;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
  text-align: left !important;
  position: relative;
  transition: all 0.2s ease;
}

.cat-dd li:last-child { 
  border-bottom: none; 
}

/* Orange vertical accent bar on hover */
.cat-dd li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--brand-orange);
  transition: width 0.2s ease;
}

.cat-dd li:hover::before {
  width: 4px;
}

.cat-dd li:hover { 
  background: #ebebeb;
}

.cat-dd li a {
  text-decoration: none;
  color: #333 !important;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left !important;
  padding: 12px 16px 12px 20px;
  transition: padding-left 0.2s ease;
}

.cat-dd li:hover a {
  padding-left: 24px;
}

.cat-dd li a i {
  color: var(--teal) !important;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.cat-dd li a strong {
  color: #111 !important;
  font-weight: 700;
}

.cat-dd li a span {
  color: #333 !important;
  text-align: left !important;
}

.cat-dd hr {
  border: none;
  border-top: 2px solid #d0d0d0;
  margin: 8px 0;
}

/* First item (View All) - special styling */
.cat-dd li:first-child {
  background: #e8e8e8;
  border-bottom: 2px solid #d0d0d0;
}

.cat-dd li:first-child a {
  font-weight: 700;
  padding: 14px 16px 14px 20px;
}

.cat-dd li:first-child a i {
  color: var(--brand-orange) !important;
}

.cat-dd li:first-child:hover {
  background: #dcdcdc;
}

/* ===== END OF PART 1 ===== */
/* MERGE POINT: Continue with PART 2 for mobile responsive and card styles */
/* ===== PART 2 OF 3 - MOBILE RESPONSIVE THROUGH CARD STYLES ===== */
/* MERGE POINT: This continues from PART 1 */

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .logo-text {
    font-size: 24px;
    padding: 8px;
    text-align: center;
  }

  .search-area {
    order: 1;
    width: 100%;
    padding: 0;
  }

  .search-combined {
    padding: 10px 100px 10px 12px;
    font-size: 13px;
  }

  .loc-icon-combined {
    right: 45px;
    font-size: 13px;
  }

  .search-btn-combined {
    width: 32px;
    height: 32px;
  }

  .header-actions {
    order: 2;
    width: 100%;
    justify-content: space-between;
  }

  .dd-btn {
    font-size: 13px;
    padding: 8px 12px;
  }

  .btn-outline-light.sign-in {
    padding: 8px 16px;
    font-size: 13px;
  }

  .mobile-cat-toggle {
    display: flex !important;
  }

  /* MOBILE CATEGORY BAR - TEAL BACKGROUND */
  .category-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    background: var(--teal) !important;
    padding: 60px 0 0 0 !important;
    display: none !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    width: 100% !important;
  }

  /* FIXED: Show category bar when active */
  .category-bar.active {
    display: block !important;
  }

  .cat-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  /* MOBILE CATEGORY ITEMS - LEFT ALIGNED */
  .cat-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: auto;
    text-align: left !important;
    background: var(--teal) !important;
  }

  .cat-item-content {
    padding: 14px 16px;
    width: 100%;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .cat-item-content span {
    flex: 1;
    text-align: left !important;
  }

  .cat-item-content i:last-child {
    margin-left: auto;
  }

  /* MOBILE: Subcategory dropdown - LIGHT GRAY BACKGROUND */
  .cat-dd {
    position: static !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-left: 3px solid var(--brand-orange) !important;
    padding-left: 0 !important;
    background: #f5f5f5 !important;
    max-height: none !important;
    text-align: left !important;
    border-radius: 0 !important;
    display: none !important;
  }

  /* FIXED: Show subcategories when parent is active on mobile */
  .cat-item.active .cat-dd {
    display: block !important;
  }

  .cat-dd::before {
    display: none;
  }

  .cat-dd li {
    text-align: left !important;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent !important;
  }

  .cat-dd li::before {
    display: none;
  }

  .cat-dd li a {
    text-align: left !important;
    justify-content: flex-start !important;
    padding: 12px 16px 12px 24px !important;
    color: #333 !important;
  }

  .cat-dd li:hover a {
    padding-left: 24px !important;
    background: #ebebeb !important;
  }

  .cat-dd li a i {
    color: var(--teal) !important;
  }

  .cat-dd li a span,
  .cat-dd li a strong {
    color: #333 !important;
    text-align: left !important;
  }

  .cat-dd li:first-child {
    background: #e8e8e8 !important;
    border-bottom: 1px solid #d0d0d0;
  }

  .cat-dd li:hover {
    background: #ebebeb !important;
  }

  .hero-overlay {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 2.2rem !important;
    margin-bottom: 25px !important;
  }
}

@media (max-width: 520px) {
  .logo-text {
    font-size: 22px;
  }

  .dd-btn span {
    display: none;
  }

  .dd-btn {
    padding: 8px;
  }
}

/* ===== HERO CONTENT WITH FIXED CLICKABLE BUTTONS ===== */
.hero-content-wrapper {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
  max-width: 800px !important;
  padding: 0 20px !important;
  z-index: 2000 !important;
  text-align: center !important;
  pointer-events: none !important;
}

.hero-content {
  animation: fadeInUp 1s ease-out !important;
  pointer-events: auto !important;
}

.hero-main-title {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: -0.4px !important;
  line-height: 36px !important;
  color: white !important;
  margin-bottom: 16px !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.highlight-teal {
  color: #00b9a9 !important;
  text-shadow: 0 0 30px rgba(0, 185, 169, 0.5) !important;
}

.highlight-orange {
  color: #f39d19 !important;
  text-shadow: 0 0 30px rgba(243, 157, 25, 0.5) !important;
}

.hero-description {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: -0.1px !important;
  color: white !important;
  opacity: 0.95 !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

/* HERO CTA BUTTONS - FIXED Z-INDEX FOR CLICKABILITY */
.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.hero-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #00b9a9 0%, #018377 100%) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(0, 185, 169, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  letter-spacing: -0.2px !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative !important;
  z-index: 3000 !important;
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #f39d19 0%, #e89110 100%) !important;
  box-shadow: 0 12px 35px rgba(243, 157, 25, 0.5) !important;
  transform: translateY(-3px) !important;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.hero-cta-btn:active {
  transform: translateY(-1px) !important;
}

.hero-cta-btn i {
  font-size: 14px !important;
}

.hero-cta-btn-secondary {
  background: linear-gradient(135deg, #e89815 0%, #d68910 100%) !important;
}

.hero-cta-btn-secondary:hover {
  background: linear-gradient(135deg, #f39d19 0%, #e89110 100%) !important;
}

.hero-cta-btn-outline {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  color: white !important;
}

.hero-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: white !important;
  color: white !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: -0.4px !important;
  line-height: 36px !important;
  color: rgba(45, 46, 47, 1) !important;
  margin-bottom: 0 !important;
  text-shadow: none !important;
}

/* ===== RECENT ACTIVITY WRAPPER ===== */
.recent-activity-wrapper {
  margin-top: -20px !important;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 60px;
}

/* Slider Container */
.slider-container {
  position: relative;
  padding: 0 50px;
  overflow: hidden;
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

/* Activity cards */
.activity-card,
.uniform-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 -2px 10px rgba(0, 0, 0, 0.05),
    inset 0 2px 10px rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  min-height: 320px !important;
  max-height: 340px !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

.uniform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b9a9, #00bcd4, #00b9a9);
  border-radius: 20px 20px 0 0;
}

.uniform-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.15),
    inset 0 -2px 10px rgba(0, 0, 0, 0.05),
    inset 0 2px 10px rgba(255, 255, 255, 0.9);
}

.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem !important;
}

.photo-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
  max-height: 270px;
}

/* Card Header */
.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0.75rem !important;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 153, 204, 0.1);
}

.user-img {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(0, 153, 204, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.uniform-card:hover .user-img {
  transform: scale(1.05);
}

.user-meta {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.user-title {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: -0.2px !important;
  color: rgba(45, 46, 47, 1) !important;
  line-height: 1.4 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  margin-bottom: 4px;
}

.action-text {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.1px !important;
  color: rgba(45, 46, 47, 0.7) !important;
}

.user-time {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: -0.1px !important;
  color: rgba(45, 46, 47, 0.7) !important;
}

/* Card Body */
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0.5rem 0 !important;
}

.biz-name {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  line-height: 24px !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  color: #00b9a9 !important;
  margin: 0 0 0.4rem 0 !important;
  text-shadow: none !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.stars {
  color: #ffa500;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(255, 165, 0, 0.3);
  filter: drop-shadow(0 0 2px rgba(255, 165, 0, 0.4));
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.stars.small {
  font-size: 14px;
}

.card-text {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  letter-spacing: -0.1px !important;
  color: rgba(45, 46, 47, 0.9) !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  font-weight: 400 !important;
  margin: 0 0 14px 0;
  flex: 1;
  overflow: hidden !important;
  max-height: 3.5em !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.read-more {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: -0.2px !important;
  color: #00b9a9;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
  text-shadow: 0 1px 2px rgba(0, 153, 204, 0.2);
}

.read-more:hover {
  color: #007aa3;
  gap: 8px;
  text-decoration: none;
}

.thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.photo-card .thumb {
  height: 280px;
}

.card-hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 8px 0;
}

/* Card Footer */
.card-footer {
  margin-top: 0.75rem !important;
  padding-top: 0.75rem !important;
  border-top: 2px solid rgba(0, 153, 204, 0.1);
}

.card-smilies {
  display: flex;
  justify-content: space-around;
  gap: 12px;
}

.smiley {
  font-size: 26px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0.3);
  opacity: 0.7;
  display: inline-block;
}

.smiley:hover {
  transform: scale(1.4) rotate(5deg);
  filter: grayscale(0);
  opacity: 1;
}

/* ===== END OF PART 2 ===== */
/* MERGE POINT: Continue with PART 3 for sliders, premium sections, and responsive */
/* ===== PART 3 OF 3 - SLIDERS, PREMIUM SECTIONS, AND RESPONSIVE ===== */
/* MERGE POINT: This continues from PART 2 and completes the file */

/* Slider Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.9),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-nav:hover {
  background: linear-gradient(145deg, #00b9a9, #00bcd4);
  box-shadow: 
    0 12px 30px rgba(0, 153, 204, 0.4),
    0 6px 15px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.15);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.slider-nav i {
  color: #00b9a9;
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s;
}

.slider-nav:hover i {
  color: white;
}

/* ===== TRENDING SECTION (RIGHT SIDEBAR) ===== */
.trending-section {
  background: white !important;
  padding: 25px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #f3f4f6 !important;
  position: relative !important;
  height: fit-content !important;
}

.section-title {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: -0.4px !important;
  line-height: 36px !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  padding-bottom: 16px !important;
  margin-bottom: 20px;
  color: #1f2937;
}

.vertical-slider-wrapper {
  overflow: hidden;
  position: relative;
  height: 500px;
}

.vertical-slider-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-slider-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: white;
  border: 2px solid #e5e7eb;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vertical-slider-nav:hover {
  background: #00b9a9;
  color: white;
  border-color: #00b9a9;
  transform: translateX(-50%) scale(1.1);
}

.vertical-slider-nav.prev-vertical {
  top: 55px;
}

.vertical-slider-nav.next-vertical {
  bottom: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  min-height: 140px;
  flex-shrink: 0;
}

.list-item:hover {
  background: #f9fafb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.square-thumb {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: #e5e7eb;
}

.list-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list-title {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: -0.2px !important;
  line-height: 1.3 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  color: rgba(45, 46, 47, 1) !important;
  margin-bottom: 6px;
}

.list-meta {
  font-size: 11px;
  color: #6b7280;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.list-desc {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  letter-spacing: -0.1px !important;
  line-height: 1.4 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  color: rgba(45, 46, 47, 0.85) !important;
  margin-bottom: 10px;
  flex-grow: 1;
}

.list-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.tag-pill {
  font-size: 10px;
  padding: 3px 8px;
  background: #f3f4f6;
  color: #4b5563;
  border-radius: 50px;
  font-weight: 600;
}

.btn-visit {
  padding: 6px 12px;
  background: var(--accent, #00b9a9);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-visit:hover {
  background: #009688;
  transform: scale(1.05);
}

/* ===== PREMIUM SECTION ===== */
.premium-section {
  max-width: 1400px !important;
  margin: 3rem auto 0 auto !important;
  padding: 0 60px !important;
  display: block !important;
}

.text-teal { color: #00b9a9; }
.text-gold { color: #e89815; }

.grid-4-col {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
}

.brand-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  color: inherit !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.brand-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.brand-logo {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  background: #f5f5f5;
}

.brand-icon {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.brand-icon i {
  font-size: 34px;
  opacity: .95;
}

.brand-info {
  width: 100%;
  padding-top: 6px;
}

.brand-name {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: -0.2px !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  color: rgba(45, 46, 47, 1) !important;
}

.brand-url {
  color: #888;
  font-size: 13px;
}

.brand-meta {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
}

.rating {
  font-weight: 700;
  color: #222;
}

.reviews {
  color: #888;
}

/* Section Separator */
.section-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #00b9a9, #e89815, transparent);
  margin: 3rem 0;
  opacity: 0.3;
}

/* ===== LAYOUT ADJUSTMENTS ===== */
.activity-titles-wrapper {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 32px !important;
  max-width: 1400px !important;
  margin: 0 auto 1.5rem auto !important;
  padding: 0 60px !important;
  align-items: center !important;
}

.activity-title-left {
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
}

.activity-title-right {
  text-align: right !important;
  margin: 0 !important;
  padding: 0 !important;
}

.reviews-section {
  display: grid !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 20px !important;
}

.reviews-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

/* ===== CHECKBOX AND RADIO BUTTONS ===== */
input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #00b9a9 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    position: relative !important;
    background: white !important;
    transition: all 0.1s ease !important;
}

input[type="checkbox"]:hover {
    background: rgba(0, 185, 169, 0.1) !important;
}

input[type="checkbox"]:checked {
    background: #00b9a9 !important;
    border-color: #00b9a9 !important;
}

input[type="checkbox"]:checked::after {
    content: "✓" !important;
    position: absolute !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
}

input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #00b9a9 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    position: relative !important;
    background: white !important;
    transition: all 0.1s ease !important;
}

input[type="radio"]:hover {
    background: rgba(0, 185, 169, 0.1) !important;
}

input[type="radio"]:checked {
    border-color: #00b9a9 !important;
}

input[type="radio"]:checked::after {
    content: "" !important;
    position: absolute !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #00b9a9 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
  .grid-4-col {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 45vh !important;
    min-height: 380px !important;
  }

  .hero-content-wrapper {
    top: 50% !important;
  }

  .hero-main-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .hero-description {
    font-size: 15px !important;
    margin-bottom: 18px !important;
  }

  .hero-cta-btn {
    padding: 9px 20px !important;
    font-size: 13px !important;
  }

  .activity-titles-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 40px !important;
  }

  .activity-title-left,
  .activity-title-right {
    text-align: center !important;
  }

  .recent-activity-wrapper {
    grid-template-columns: 1fr !important;
    padding: 0 40px !important;
  }

  .reviews-section {
    grid-template-rows: auto !important;
  }

  .grid-4-col {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .premium-section {
    padding: 0 40px !important;
  }
}

@media (max-width: 900px) {
  .recent-activity-wrapper {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .slider-container {
    padding: 0 40px;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
  }

  .activity-card,
  .photo-card {
    min-width: calc(100% - 10px);
  }
}

@media (max-width: 768px) {
  .hero {
    height: 40vh !important;
    min-height: 320px !important;
    background-attachment: scroll;
  }

  .hero-content-wrapper {
    top: 45% !important;
    padding: 0 15px !important;
  }

  .hero-main-title {
    font-size: 22px !important;
    line-height: 28px !important;
    margin-bottom: 12px !important;
  }

  .hero-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  .hero-cta-btn {
    padding: 8px 18px !important;
    font-size: 13px !important;
    gap: 6px !important;
  }

  .hero-cta-btn i {
    font-size: 13px !important;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .activity-titles-wrapper {
    padding: 0 20px !important;
  }

  .recent-activity-wrapper {
    padding: 0 20px !important;
  }

  .reviews-row {
    grid-template-columns: 1fr !important;
  }

  .reviews-section .uniform-card {
    min-height: 360px !important;
    max-height: 360px !important;
  }

  .grid-4-col {
    grid-template-columns: 1fr !important;
  }

  .premium-section {
    padding: 0 20px !important;
  }

  .vertical-slider-wrapper {
    height: 400px !important;
  }

  .trending-section {
    padding: 20px 15px !important;
  }
}

@media (max-width: 520px) {
  .slider-container {
    padding: 0 35px;
  }

  .slider-nav {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 35vh !important;
    min-height: 280px !important;
  }

  .hero-content-wrapper {
    top: 40% !important;
  }

  .hero-main-title {
    font-size: 20px !important;
    line-height: 26px !important;
    margin-bottom: 10px !important;
  }

  .hero-description {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .hero-cta-btn {
    padding: 8px 16px !important;
    font-size: 12px !important;
    width: 100%;
    justify-content: center;
  }

  .hero-cta-btn i {
    font-size: 12px !important;
  }

  .hero-title {
    font-size: 22px !important;
    line-height: 28px !important;
  }
}

/* Global Button Styles */
button:focus, a:focus { 
    outline: 3px solid rgba(0,143,79,0.3); 
    outline-offset: 2px; 
}

/* ===== END OF PART 3 ===== */
/* This is the END of the file */