.elementor-346 .elementor-element.elementor-element-368a61e{margin-top:0px;margin-bottom:50px;z-index:0;}/* Start custom CSS for html, class: .elementor-element-9ecc3e3 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.tourex-luxury-venues-wrapper {
  font-family: 'Poppins', sans-serif;
  color: #333333;
  width: 100%;
  box-sizing: border-box;
}

.tourex-venues-section {
  padding: 60px 10% 80px 10%;
  max-width: 1900px;
  margin: 0 auto;
}

.tourex-section-header.text-center {
  text-align: center;
  margin-bottom: 50px;
}

.tourex-subtitle {
  font-size: 20px;
  color: #0284c7;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 1.5px;
}

.tourex-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 14px 0;
  color: #0f172a;
}

.tourex-section-desc {
  font-size: 15px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================= 6 VENUE SLABS GRID STYLES ================= */
.tourex-venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tourex-venue-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tourex-venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.15);
  border-color: #38bdf8;
}

/* Venue Image Container */
.venue-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.venue-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tourex-venue-card:hover .venue-img-box img {
  transform: scale(1.08);
}

.venue-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

/* Venue Card Content Body */
.venue-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.venue-tag {
  color: #0284c7;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

.venue-content h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: #0f172a;
  line-height: 1.35;
}

.venue-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 18px 0;
}

.venue-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #e2e8f0;
}

.venue-specs span {
  font-size: 11px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  padding: 5px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.venue-specs span i {
  color: #0284c7;
}

/* Venue Card Footer & Pricing */
.venue-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.venue-price label {
  display: block;
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

.venue-price span {
  font-size: 12px;
  color: #334155;
}

.venue-price span strong {
  font-size: 18px;
  color: #0284c7;
  font-weight: 800;
}

/* 🟢 BOOK YOUR EVENT BUTTON */
.tourex-btn-venue {
  background: #0284c7;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

.tourex-btn-venue:hover {
  background: #0369a1;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .tourex-venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tourex-venues-grid {
    grid-template-columns: 1fr;
  }
  .venue-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .tourex-btn-venue {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */