/* Vinzons LikhaLokal — global styles */
:root {
  --lk-navy: #001F3F;
  --lk-navy-2: #001F3F;
  --lk-orange: #F39200;
  --lk-orange-dark: #CC7A00;
  --lk-green: #023e8a;
  --lk-mint: #e8f5e9;
  --lk-sky: #bde5f8;
  --lk-hero-overlay: rgba(11, 29, 38, 0.4);
  --radius: 20px;
  --lk-navbar-height: 76px;
}

body.lk-has-fixed-nav {
  padding-top: var(--lk-navbar-height);
}

body.lk-has-fixed-nav .lk-navbar.fixed-top {
  z-index: 1040;
}

body {
  font-family: 'Montserrat', "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #f4f7f6;
  color: #1a1a1a;
  font-size: 17px;
  line-height: 1.65;
}

p {
  font-size: 17px;
  line-height: 1.65;
}

.lk-navbar {
  background: rgba(2, 62, 138, 0.8) !important;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease-in-out;
}

.lk-navbar-scrolled {
  background: rgba(0, 31, 63, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lk-navbar .nav-link.active {
  font-weight: 600;
}

.lk-footer {
  background: var(--lk-navy-2);
}

.lk-footer .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.lk-footer .bi:hover {
  background: #fff;
  color: var(--lk-navy-2) !important;
}

/* The Hero Section with the Background */
.main-hero {
  /* Use ../ to go out of the 'css' folder, then into 'images' */
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('/Users/samsam/Likhalokal/likhalokal/assets/images/tourismbackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: white;
}

/* Positioning the overlapping cards */
.overlap-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.image-overlap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -150px;
  /* This pulls the images UP into the hero background */
  position: relative;
  z-index: 10;
}

.overlap-img {
  width: 100%;
  height: 400px;
  /* Adjust based on Figma dimensions */
  object-fit: cover;
  border-radius: 15px;
  /* Matches the rounded corners in your Figma design */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  /* Fallback */
}

/* Text Styling */
.hero-main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-sub-tagline {
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 10px;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-layer-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 2;
}

.hero .hero-inner {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-sub {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.btn-lk-orange {
  background: var(--lk-orange);
  border-color: var(--lk-orange);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-lk-orange:hover {
  background: var(--lk-orange-dark);
  border-color: var(--lk-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
}

.section-title {
  font-family: Impact, 'Arial Black', sans-serif;
  font-weight: normal;
  color: var(--lk-navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title span.accent {
  color: var(--lk-orange);
}

.card-lk {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Entrepreneurs Section */
.entrepreneurs-wrap {
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.entrepreneurs-wrap:hover {
  transform: scale(1.01);
}

.entrepreneurs-inner {
  background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 8px;
  padding: 3rem 2rem;
  color: #fff;
  overflow: hidden;
}

.entrepreneurs-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.entrepreneurs-content {
  position: relative;
  z-index: 1;
}

/* Discover More */
.discover-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.discover-more::before,
.discover-more::after {
  content: "";
  height: 3px;
  width: 150px;
  background-color: var(--lk-navy);
}

.discover-text {
  text-align: center;
  line-height: 0.8;
}

.discover-text .cursive {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: var(--lk-navy);
  display: block;
}

.discover-text .bold-orange {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 3.5rem;
  color: var(--lk-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Featured Products */
.featured-main-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-main-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-main-card .content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 1.5rem 1.5rem;
  color: #fff;
}

.featured-small-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 200px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-small-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.featured-small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-small-card .content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-small-card .content-overlay h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
}

.featured-small-card .content-overlay p {
  margin: 0;
  font-size: 0.7rem;
  color: #666;
}

/* Tourist Spots */
.tourist-section {
  position: relative;
  background: #e6f0eb;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.tourist-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tourist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tourist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourist-card .title-pill {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--lk-navy);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Events */
.events-section {
  background: #cce3f0;
  padding: 4rem 0;
}

.events-title-stack {
  text-align: center;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.events-title-stack .small-text {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.5rem;
  color: var(--lk-orange);
  letter-spacing: 0.05em;
  display: block;
}

.events-title-stack .large-text {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 3rem;
  color: var(--lk-orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Original remaining */
.shop-card {
  background: #d8f5dc;
  border-radius: 14px;
  border: 1px solid #b7e6bf;
}

.chat-shell {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
  background: #fff;
}

.chat-header {
  border-bottom: 1px solid #e9ecef;
}

.chat-bubble-out {
  background: var(--lk-orange);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
}

.chat-bubble-in {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 14px 14px 14px 4px;
}

.chat-messages-area {
  min-height: 360px;
  max-height: 55vh;
  overflow-y: auto;
  background: #f1f3f5;
}

.badge-soft {
  background: #e7f5ff;
  color: #0b1d26;
}

.sidebar-admin {
  min-height: 100vh;
  background: var(--lk-navy);
}

.sidebar-admin a {
  color: #e9ecef;
  text-decoration: none;
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 8px;
}

.sidebar-admin a:hover,
.sidebar-admin a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.table-admin th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 46vh;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-sub {
    font-size: 1.5rem;
  }

  .discover-more::before,
  .discover-more::after {
    width: 50px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-main-card img,
.featured-small-card img,
.tourist-card img {
  transition: transform 0.6s ease;
}

.featured-main-card:hover img,
.featured-small-card:hover img,
.tourist-card:hover img {
  transform: scale(1.1);
}

/* Brutalism & Glassmorphism Global Overrides */
.btn {
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-lk-orange {
  background: var(--lk-orange);
  border-color: var(--lk-orange);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.6rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-lk-orange:hover {
  background: var(--lk-orange-dark);
  border-color: var(--lk-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(243, 146, 0, 0.4);
}

.btn-lk-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-lk-outline-white:hover {
  background: #fff;
  color: var(--lk-navy);
  transform: translateY(-2px);
}

/* Glassmorphism Banner */
.glass-banner {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Product CSS Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tourist Spot Gallery */
.tourist-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .tourist-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tourist-gallery {
    grid-template-columns: 1fr;
  }
}

.tourist-spot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 300px;
}

.tourist-spot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tourist-spot:hover img {
  transform: scale(1.05);
}

.spot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 31, 63, 0.95) 0%, rgba(0, 31, 63, 0.4) 100%);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  z-index: 2;
}

.tourist-spot:hover .spot-overlay {
  transform: translateY(0);
}

.spot-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  transition: opacity 0.3s ease;
  z-index: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.tourist-spot:hover .spot-title {
  opacity: 0;
}

/* Marketplace Global Styles */
.card-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-lift:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-spotlight {
  grid-column: span 2;
  border: none;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .product-spotlight {
    grid-column: span 1;
  }
}

.review-card-gold {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.review-card-gold .verified-tag {
  font-size: 0.75rem;
  background: #fff3cd;
  color: #856404;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  font-weight: bold;
}

/* Chat Interface Styles */
.chat-bubble-out {
  background: var(--lk-orange) !important;
  color: #fff !important;
  border-radius: 20px 20px 4px 20px !important;
  border: none !important;
}

.chat-bubble-in {
  background: #fff !important;
  color: var(--lk-navy) !important;
  border: 1px solid #ccc !important;
  border-radius: 20px 20px 20px 4px !important;
}

.inquiry-pill {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: #e9ecef;
  color: var(--lk-navy);
  border: 1px solid #dee2e6;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.inquiry-pill:hover {
  background: var(--lk-orange);
  color: #fff;
  border-color: var(--lk-orange);
}

.product-context-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

/* Prototype Specific Styles */
.prototype-title {
  font-family: Impact, 'Arial Black', sans-serif;
  color: var(--lk-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shop-header-box {
  border: 2px solid var(--lk-green);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin-bottom: 1rem;
  min-width: 300px;
}

.shop-header-box h3 {
  color: var(--lk-green);
  font-family: Impact, 'Arial Black', sans-serif;
  margin: 0;
  letter-spacing: 1px;
}

.btn-dark-green {
  background: var(--lk-green);
  color: white;
  border-radius: 8px;
  font-weight: bold;
  padding: 0.4rem 1rem;
  text-decoration: none;
}

.btn-dark-green:hover {
  background: #112a20;
  color: white;
}

.see-deals-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--lk-green);
  font-family: Impact, sans-serif;
  font-size: 3rem;
  margin: 3rem 0;
}

.see-deals-divider::before,
.see-deals-divider::after {
  content: '';
  flex: 1;
  border-bottom: 4px solid var(--lk-green);
}

.see-deals-divider::before {
  margin-right: 1rem;
}

.see-deals-divider::after {
  margin-left: 1rem;
}

.shop-list-card {
  background: #a8f5b4;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #112a20;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.shop-list-icon {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}



@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

.heritage-card {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: #000;
  /* Black background helps the image pop */
}

.heritage-image-container {
  position: relative;
  width: 100%;
  height: 450px;
  /* Matches Figma height ratio better */
}

.heritage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* This adds the dark fade at the bottom directly to the image */
  filter: brightness(0.9);
}

.heritage-bottom-left-text {
  position: absolute;
  /* LOCK TO BOTTOM LEFT */
  bottom: 30px;
  left: 40px;

  /* Styling */
  font-family: 'Dancing Script', cursive;
  color: #ffffff !important;
  font-size: 2.5rem;
  margin: 0;
  z-index: 5;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  /* User can click through the text */
}

/* Adds the shadow overlay so the white text is readable */
.heritage-image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

@media (max-width: 768px) {
  .heritage-image-container {
    height: 250px;
  }

  .heritage-bottom-left-text {
    bottom: 15px;
    left: 20px;
    font-size: 1.6rem;
  }
}


.ragged-bg-container {
  position: relative;
  width: 100%;
  height: 600px !important;
  overflow: hidden;
  background-color: #e0f2f7;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 75% 92%, 50% 85%, 25% 95%, 0% 82%);
}

.ragged-bg-container .container {
  /* We set this to 70% to match the image height */
  height: 50% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  /* This keeps the Brand at the top */
  align-items: flex-start !important;
  padding-top: 40px !important;
  position: relative;
  z-index: 10;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 67% !important;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  filter: brightness(0.7);
}

.hero-brand {
  font-family: 'Georgia', serif;
  color: #ffda79;
  font-size: 5.5rem;
  font-weight: bold;
  margin: 0 !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-quote {
  /* CENTERED ALIGNMENT */
  align-self: center !important;
  max-width: 400px;
  color: #ffffff !important;
  text-align: right;
  font-size: 1.1rem;
  line-height: 1.5;
  /* Remove the top margin since center alignment handles the spacing */
  margin-top: 0 !important;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 1);
  display: block !important;
}

/* Mobile fix */
@media (max-width: 992px) {
  .ragged-bg-container .container {
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
  }

  .hero-quote {
    text-align: center;
    margin-top: 20px !important;
  }
}


/* This targets the title specifically to push it down */
.island-title {
  margin-top: 60px;
  /* Adjust this value until it clears the green background */
  font-family: 'Georgia', serif;
  color: #1a4d2e;
  /* A dark green to contrast with the light blue */
  font-weight: bold;
}

/* Optional: Add spacing to the whole text block */
.island-text {
  margin-top: 15px;
  line-height: 1.6;
  color: #333;
}

/* Ensure it doesn't look weird on mobile */
@media (max-width: 991px) {
  .island-title {
    margin-top: 20px;
  }
}

/* Global search overlay (navbar) */
.lk-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(0, 31, 63, 0.92);
  backdrop-filter: blur(8px);
  padding: 5.5rem 1rem 2rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}

.lk-search-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lk-search-box {
  max-width: 720px;
  margin: 0 auto;
}

.lk-search-box .form-control {
  border-radius: 50px 0 0 50px;
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  border: 2px solid var(--lk-orange);
}

.lk-search-results {
  max-width: 720px;
  margin: 1rem auto 0;
  max-height: 50vh;
  overflow-y: auto;
}

.lk-search-results .lk-search-group {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.lk-search-results .lk-search-group h6 {
  background: var(--lk-navy);
  color: #fff;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lk-search-results a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--lk-navy);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.lk-search-results a:hover {
  background: #fff8ee;
}

.lk-map-box {
  border-radius: 14px;
  overflow: hidden;
  height: 350px;
  min-height: 350px;
  background: #e9ecef;
}

/* Vendor / seller public profile */
.vendor-profile-page .vendor-profile-cover {
  height: clamp(150px, 22vw, 230px);
  background-size: cover;
  background-position: center;
  border-bottom: 6px solid var(--lk-orange);
  position: relative;
}

.vendor-profile-page .vendor-profile-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(27, 67, 50, 0.75));
}

.vendor-profile-page .vendor-profile-shell {
  margin-top: -2.25rem;
  padding-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.vendor-profile-page .vendor-profile-card {
  position: relative;
  max-width: 980px;
  margin: clamp(0.75rem, 2.5vw, 1.35rem) auto 0;
  padding: clamp(0.75rem, 1.8vw, 1.15rem);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  border: 2px solid rgba(27, 67, 50, 0.1);
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.12);
  overflow: visible;
}

.vendor-profile-page .vendor-profile-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  white-space: nowrap;
}

.vendor-profile-page .vendor-profile-card .vendor-map-wrap {
  margin-top: 0.75rem;
}

.vendor-profile-page .vendor-profile-card #vendorMap,
.vendor-profile-page .vendor-profile-card .lk-map-box {
  height: 350px;
  min-height: 350px;
  width: 100%;
}

@media (max-width: 767px) {
  .vendor-profile-page .vendor-profile-card #vendorMap,
  .vendor-profile-page .vendor-profile-card .lk-map-box {
    height: 320px;
    min-height: 320px;
  }
}

.vendor-profile-page .vendor-catalog-section {
  margin-top: 2.5rem;
  padding-top: 1rem;
}

.vendor-profile-page {
  padding-top: 0;
}

body.vendor-profile-page.lk-has-fixed-nav {
  padding-top: var(--lk-navbar-height);
}

.vendor-profile-subnav {
  background: rgba(27, 67, 50, 0.92);
  border-bottom: 2px solid var(--lk-orange);
  padding: 0.65rem 0;
  position: sticky;
  top: var(--lk-navbar-height);
  z-index: 1030;
}

.vendor-profile-page.lk-internal-workspace .vendor-profile-subnav,
.vendor-profile-page:not(.vendor-profile-has-nav) .vendor-profile-subnav {
  top: 0;
}

.vendor-profile-page.lk-internal-workspace {
  padding-top: 0 !important;
}

.vendor-profile-flash {
  margin-top: 0;
}

.vendor-profile-subnav .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.vendor-profile-subnav a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.vendor-profile-subnav a:hover {
  color: var(--lk-orange);
}

.lk-internal-workspace .vendor-profile-subnav,
.message-page .vendor-profile-subnav,
.events-page .vendor-profile-subnav {
  top: 0;
}

.events-page.lk-internal-workspace {
  padding-top: 0;
}

.vendor-profile-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: start;
}

.vendor-logo-frame {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--lk-green);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(27, 67, 50, 0.14);
}

.vendor-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-rating-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(27, 67, 50, 0.14);
  background: #f8faf8;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--lk-navy);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.vendor-profile-name {
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 1px;
  color: var(--lk-green);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.vendor-profile-owner {
  font-family: "Dancing Script", cursive;
  font-size: 1.2rem;
  color: var(--lk-orange);
  margin-bottom: 0.55rem;
}

.vendor-profile-description {
  color: #53615b;
  line-height: 1.55;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.vendor-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.vendor-info-card {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  min-width: 0;
  min-height: 48px;
  background: #f8faf8;
  border-left: 4px solid var(--lk-green);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.04);
}

.vendor-info-card i {
  color: var(--lk-orange);
  width: 18px;
  text-align: center;
  padding-top: 0.1rem;
  font-size: 0.9rem;
}

.vendor-info-card span {
  display: block;
  color: #68736d;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.vendor-info-card strong {
  display: block;
  color: var(--lk-navy);
  font-size: 0.78rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.vendor-info-card-wide {
  grid-column: 1 / -1;
}

.vendor-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  color: #53615b;
  background: linear-gradient(135deg, #f8faf8, #fff8ee);
  border: 1px dashed rgba(27, 67, 50, 0.25);
}

.vendor-map-placeholder i {
  color: var(--lk-orange);
  font-size: 2.2rem;
}

.vendor-map-placeholder strong {
  color: var(--lk-green);
}

.lk-events-hero {
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.96), rgba(27, 67, 50, 0.94)),
    url("../images/localbg.png") center/cover;
  color: #fff;
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.lk-events-hero h1,
.lk-section-title {
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 1px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin: 0.3rem 0 0.8rem;
}

.lk-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  background: rgba(243, 146, 0, 0.15);
  color: var(--lk-orange);
  border: 1px solid rgba(243, 146, 0, 0.28);
  padding: 0.45rem 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.lk-events-page {
  background: linear-gradient(135deg, #fffaf1 0%, #edf8ee 48%, #ffffff 100%);
}

.lk-event-card,
.lk-events-empty {
  border-radius: 18px;
  border: 1px solid rgba(27, 67, 50, 0.1);
  background: #fff;
  box-shadow: 0 16px 34px rgba(27, 67, 50, 0.09);
}

.lk-event-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lk-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(27, 67, 50, 0.15);
}

.lk-event-image {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 18px;
}

.lk-event-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lk-event-card:hover .lk-event-image img {
  transform: scale(1.04);
}

.lk-event-date {
  background: #fff;
  border-left: 5px solid var(--lk-orange);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  color: var(--lk-navy);
  padding: 0.65rem 0.85rem;
  text-align: center;
  min-width: 74px;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}

.lk-event-date span {
  display: block;
  color: #dc3545;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.lk-event-date strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.lk-event-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--lk-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
}

.lk-event-image .lk-event-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.lk-event-body {
  padding: 1.35rem;
}

.lk-event-body h2 {
  color: var(--lk-navy);
  font-weight: 900;
}

.lk-event-meta,
.lk-event-location {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #61706a;
  font-size: 0.9rem;
}

.lk-event-meta i,
.lk-event-location i {
  color: var(--lk-orange);
  margin-right: 0.35rem;
}

.lk-event-location {
  border-top: 1px solid rgba(27, 67, 50, 0.1);
  padding-top: 0.9rem;
}

.lk-events-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #53615b;
}

.lk-events-empty i {
  color: var(--lk-orange);
  font-size: 3rem;
}

.lk-events-empty h2 {
  color: var(--lk-navy);
  margin-top: 1rem;
  font-weight: 900;
}

/* Calendar Styles */
.lk-calendar-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(27, 67, 50, 0.1);
  box-shadow: 0 16px 34px rgba(27, 67, 50, 0.09);
  overflow: hidden;
}

.lk-calendar-header {
  background: linear-gradient(135deg, var(--lk-navy), var(--lk-green));
  color: #fff;
  padding: 1.25rem;
  text-align: center;
}

.lk-calendar-header h3 {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
}

.lk-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}

.lk-calendar-day-header {
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--lk-navy);
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lk-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lk-navy);
  position: relative;
  transition: all 0.2s ease;
  cursor: default;
}

.lk-calendar-day.empty {
  background: transparent;
  cursor: default;
}

.lk-calendar-day:hover:not(.empty) {
  background: rgba(243, 146, 0, 0.1);
}

.lk-calendar-day.has-event {
  background: rgba(243, 146, 0, 0.15);
  color: #b36b00;
  font-weight: 700;
}

.lk-calendar-day.today {
  background: var(--lk-orange);
  color: #fff;
  font-weight: 700;
}

.lk-calendar-day.today.has-event {
  background: var(--lk-orange);
  color: #fff;
}

.lk-calendar-day .event-dot {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--lk-orange);
  border-radius: 50%;
}

.lk-calendar-day.today .event-dot {
  background: #fff;
}

.lk-calendar-events {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(27, 67, 50, 0.1);
  box-shadow: 0 16px 34px rgba(27, 67, 50, 0.09);
  padding: 1.5rem;
  height: 100%;
}

.lk-calendar-events h3 {
  font-family: Impact, "Arial Black", sans-serif;
  color: var(--lk-navy);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.lk-monthly-events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lk-monthly-event-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, #fffaf1 0%, #edf8ee 100%);
  border-radius: 12px;
  border-left: 4px solid var(--lk-orange);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-monthly-event-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.1);
}

.lk-monthly-event-date {
  background: #fff;
  border-left: 4px solid var(--lk-orange);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  color: var(--lk-navy);
  padding: 0.6rem 0.8rem;
  text-align: center;
  min-width: 64px;
  flex-shrink: 0;
}

.lk-monthly-event-date span {
  display: block;
  color: #dc3545;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.lk-monthly-event-date strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.lk-monthly-event-details {
  flex: 1;
  min-width: 0;
}

.lk-monthly-event-details h4 {
  font-weight: 700;
  color: var(--lk-navy);
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.lk-monthly-event-details p {
  margin: 0;
  color: #61706a;
  font-size: 0.9rem;
}

.lk-monthly-event-details i {
  color: var(--lk-orange);
  margin-right: 0.35rem;
}

@media (max-width: 991px) {
  .lk-calendar-grid {
    gap: 0.35rem;
  }

  .lk-calendar-day {
    font-size: 0.8rem;
  }

  .lk-calendar-day-header {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .vendor-profile-grid,
  .vendor-info-grid {
    grid-template-columns: 1fr;
  }

  .vendor-profile-media {
    order: -1;
  }

  .vendor-profile-page .vendor-profile-card #vendorMap,
  .vendor-profile-page .vendor-profile-card .lk-map-box,
  .lk-map-box {
    height: 200px;
    max-height: 220px;
    min-height: 180px;
  }

  .vendor-info-grid {
    grid-template-columns: 1fr;
  }

  .vendor-profile-page .vendor-profile-card {
    padding: 2rem 1rem 1rem;
  }
}

.avatar-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--lk-orange);
  padding: 3px;
  background: #fff;
  overflow: hidden;
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Auth pages */
body.lk-auth-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(160deg, #f4f7f6 0%, #fff8ee 50%, #e8f5e9 100%);
}
.lk-auth-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0 1rem;
}
.lk-auth-card {
  border-radius: 20px;
  border: none;
}
.lk-auth-divider,
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  color: #6c757d;
  font-size: 0.85rem;
}
.lk-auth-divider::before,
.lk-auth-divider::after,
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dee2e6;
}
.btn-lk-google,
.google-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  text-decoration: none;
}
.btn-lk-google:hover,
.google-auth-btn:hover {
  background: #f8f9fa;
  color: #202124;
}
.btn-lk-google:disabled,
.google-auth-btn:disabled,
.google-auth-btn.is-disabled {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
  background: #f8f9fa;
  color: #6c757d;
}
.auth-switch-text {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: #6c757d;
}
.auth-switch-text a {
  font-weight: 600;
  text-decoration: none;
}
.auth-switch-text a:hover {
  text-decoration: underline;
}
body.lk-auth-page footer {
  margin-top: auto;
  flex-shrink: 0;
}
.lk-google-g {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dadce0;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #4285f4;
}

/* Map picker */
.lk-map-picker {
  width: 100%;
  min-height: 350px;
  border-radius: 18px;
  overflow: hidden;
  background: #e9eef2;
  border: 1px solid #dde3ea;
}
@media (max-width: 768px) {
  .lk-map-picker {
    min-height: 320px;
  }
}

/* Event cards uniform images */
.event-card-image-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.event-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .event-card-image-wrap {
    height: 220px;
  }
}

.lk-chat-attachment-img {
  display: block;
  width: 100%;
  max-width: 260px;
  max-height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.chat-bubble.is-mine .lk-chat-attachment-img,
.lk-bubble-out.is-mine .lk-chat-attachment-img {
  margin-left: auto;
}

.lk-chat-attachment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.lk-product-inquiry-bubble {
  background: #ffffff !important;
  color: var(--lk-navy, #001f3f) !important;
  border: 1px solid rgba(27, 67, 50, 0.16);
}

.lk-product-inquiry-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  min-width: min(320px, 72vw);
  max-width: 100%;
}

.lk-product-inquiry-card img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0, 31, 63, 0.08);
  background: #f8f9fa;
}

.lk-product-inquiry-body {
  min-width: 0;
}

.lk-product-inquiry-eyebrow {
  color: #f39200;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lk-product-inquiry-body strong {
  display: block;
  color: #1b4332;
  line-height: 1.25;
}

.lk-product-inquiry-meta,
.lk-product-inquiry-shop {
  color: #6c757d;
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.lk-quick-replies {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.lk-quick-replies-label {
  flex: 0 0 auto;
  color: #6c757d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lk-quick-reply-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(243, 146, 0, 0.45);
  border-radius: 999px;
  background: #fff8ee;
  color: #1b4332;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.lk-quick-reply-chip:hover,
.lk-quick-reply-chip:focus {
  background: #f39200;
  border-color: #f39200;
  color: #001f3f;
  transform: translateY(-1px);
}

/* ==========================================================================
   GLOBAL SCROLL REVEAL & INTERACTIVE MICRO-ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
              transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
              transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
              transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
              transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Dynamic Hover Effects on Cards & Buttons */
.hover-lift {
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 31, 63, 0.12) !important;
}

.hover-zoom-img {
  overflow: hidden;
}
.hover-zoom-img img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-zoom-img:hover img {
  transform: scale(1.06);
}

