/* CSS For Homepage 22/06/26 */
/* ============================================
   MODERN DESIGN SYSTEM
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif;
  color: #1e293b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero-container {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 25%, #1e0836 50%, #0f0524 75%, #1a0b2e 100%);
  z-index: 1;
}
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.25) 0%, transparent 50%), radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
  z-index: 2;
  animation-delay: 4s;
  animation-fill-mode: both;
}
@keyframes gradientShift {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 3;
  animation: gridMove 20s linear infinite;
  animation-delay: 4s;
  animation-fill-mode: both;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e9d5ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-icon {
  width: 1rem;
  height: 1rem;
  stroke: #c4b5fd;
  fill: none;
  stroke-width: 2;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-title .accent {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  display: inline-block;
  animation: accentGlow 3s ease-in-out infinite;
  animation-delay: 4s;
  animation-fill-mode: both;
}
@keyframes accentGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}
.hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: #e2e8f0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 400;
}
.hero-subtitle strong {
  color: #fbbf24;
  font-weight: 700;
}
.desktop-break {
  display: block;
}
.search-form {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(139, 92, 246, 0.15);
  margin-bottom: 4rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.form-field {
  position: relative;
}
.modern-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(51, 65, 85, 0.8);
  border: 1.5px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a78bfa' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  min-height: 60px;
}
.modern-select:focus {
  outline: none;
  background: rgba(51, 65, 85, 1);
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
  transform: translateY(-1px);
}
.modern-select:hover {
  border-color: #8b5cf6;
  background: rgba(51, 65, 85, 0.95);
}
.search-button {
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 60px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
}
.search-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.search-button:hover::before {
  left: 100%;
}
.search-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(139, 92, 246, 0.5),
    0 0 30px rgba(236, 72, 153, 0.3);
}
.search-button:active {
  transform: translateY(0);
}
.search-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.5;
  fill: none;
  stroke: currentColor;
}
@media (max-width: 767px) {
  .hero-container {
    min-height: auto;
    padding: 5rem 0 2rem 0;
  }
  .search-form {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-title {
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    margin-bottom: 2rem;
  }
  .desktop-break {
    display: inline;
  }
  .form-grid {
    gap: 1rem;
  }
  .modern-select,
  .search-button {
    min-height: 52px;
    font-size: 0.95rem;
  }
}
/* ============================================
   WORK SHOWCASE CAROUSEL
   ============================================ */
.showcase {
  padding: 50px 0 10px;
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
}
.showcase-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}
.showcase-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.showcase-title p {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
  padding: 15px 0 40px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.carousel-track:hover {
  animation-play-state: paused;
}
.project {
  flex: 0 0 450px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.project:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}
.project-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project:hover .project-image img {
  transform: scale(1.08);
}
.project-info {
  padding: 24px 30px;
}
.project-client {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.96);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
.lightbox.show {
  display: flex;
}
.lightbox img {
  max-width: 92%;
  max-height: 92vh;
  border-radius: 12px;
}
.lb-btn {
  position: absolute;
  width: 54px;
  height: 54px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.lb-btn:hover {
  background: #f5f5f5;
  transform: scale(1.08);
}
.lb-close {
  top: 32px;
  right: 32px;
}
.lb-prev {
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-prev:hover,
.lb-next:hover {
  transform: translateY(-50%) scale(1.08);
}
/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.benefits-section .absolute {
  position: absolute;
}
.benefits-section .inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-4px);
}
/* ============================================
   WORK GALLERY
   ============================================ */
#work-gallery {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom right, white, #f9fafb, white);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.gallery-overlay {
  transition: opacity 0.5s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1 !important;
}
.gallery-caption {
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0) !important;
}
.gallery-icon {
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-icon {
  transform: translateY(0) !important;
}
/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 100px;
}
@media (min-width: 1215px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}
.process-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.2);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}
.icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f0f0ff, #e8e7ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.process-card:hover .icon-wrapper {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
.icon-wrapper i {
  color: #4f46e5;
  width: 28px;
  height: 28px;
  transition: all 0.4s ease;
}
.process-card:hover .icon-wrapper i {
  color: white;
}
.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.featured-video {
  margin-bottom: 60px;
}
.featured-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.5s ease;
  background: #000;
}
.featured-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(168, 85, 247, 0.25);
}
.featured-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-container:hover .featured-img {
  transform: scale(1.05);
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.featured-container:hover .play-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.play-btn {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.featured-container:hover .play-btn {
  transform: scale(1.1);
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.play-icon {
  width: 0;
  height: 0;
  border-left: 28px solid #1a1a1a;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 6px;
  transition: border-color 0.4s ease;
}
.featured-container:hover .play-icon {
  border-left-color: white;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}
.video-card {
  transition: transform 0.4s ease;
}
.video-card:hover {
  transform: translateY(-6px);
}
/* ============================================
   CASE STUDIES
   ============================================ */
.case-studies-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.carousel-container {
  position: relative;
  margin-bottom: 70px;
}
.carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0 30px 0;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.case-card {
  min-width: 420px;
  max-width: 420px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
}
/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 50%, #e7f3ff 100%);
  position: relative;
  overflow: hidden;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(-10px) rotate(240deg);
  }
}
/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-wrapper {
  position: relative;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}
.cta-gradient-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 100%, rgba(0, 224, 255, 0.1) 0%, transparent 50%);
  animation: gradientShift 8s ease infinite;
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  text-align: center;
}
/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-cta-section {
  padding: 100px 0;
  background: #f8f9fb;
}
.contact-cta-section .container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .showcase {
    padding: 60px 0;
  }
  .benefits-section,
  .process-section,
  .video-section,
  .case-studies-section,
  .faq-section {
    padding: 60px 0;
  }
  .project {
    min-width: 320px;
  }
}
/* ============================================
   BOOTH SIZE
   ============================================ */
.booth-sizes-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}
.booth-sizes-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 1400px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.booth-sizes-section .colored-pill {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.12));
  border-radius: 50px;
  color: #8b5cf6;
  display: inline-block;
  font-size: clamp(12px, 2.8vw, 14px);
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: clamp(8px, 2vw, 10px) clamp(20px, 5vw, 28px);
  text-transform: uppercase;
  position: relative;
}
.booth-sizes-section .colored-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}
.booth-sizes-section .sizes-header {
  text-align: center;
  padding: 0 clamp(20px, 5vw, 24px);
  position: relative;
  z-index: 1;
}
.booth-sizes-section .sizes-header h2 {
  font-size: clamp(36px, 8vw, 58px);
  font-weight: 800;
  margin: 0 0 clamp(20px, 4vw, 24px) 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1.2;
}
.booth-sizes-section .sizes-subtitle {
  font-size: clamp(17px, 4vw, 21px);
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}
.booth-sizes-section .sizes-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.booth-sizes-section .sizes-carousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #8b5cf6 #e5e7eb;
  padding-bottom: 20px;
}
.booth-sizes-section .sizes-carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}
.booth-sizes-section .sizes-carousel-wrapper::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 10px;
}
.booth-sizes-section .sizes-carousel-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 10px;
  transition: background 0.3s ease;
}
.booth-sizes-section .sizes-carousel-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}
.booth-sizes-section .sizes-carousel-track {
  display: flex;
  gap: clamp(24px, 5vw, 32px);
  padding-top: 20px;
}
.booth-sizes-section .sizes-carousel-track::before,
.booth-sizes-section .sizes-carousel-track::after {
  content: "";
  display: flex;
  padding: 0 1px;
}
.booth-sizes-section .size-card {
  flex: 0 0 auto;
  width: clamp(300px, 40vw, 380px);
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.booth-sizes-section .size-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}
.booth-sizes-section .size-card-image {
  position: relative;
  width: 100%;
  height: clamp(200px, 30vw, 260px);
  overflow: hidden;
  background: #f3f4f6;
}
.booth-sizes-section .size-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.7) 0%, rgba(236, 72, 153, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.booth-sizes-section .size-card:hover .size-card-image::before {
  opacity: 1;
}
.booth-sizes-section .size-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.booth-sizes-section .size-card:hover .size-card-image img {
  transform: scale(1.1);
}
.booth-sizes-section .size-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}
.booth-sizes-section .size-card-content {
  padding: clamp(24px, 5vw, 32px);
}
.booth-sizes-section .size-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.booth-sizes-section .size-type {
  font-size: clamp(13px, 3vw, 14px);
  color: #8b5cf6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.booth-sizes-section .size-price {
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.booth-sizes-section .size-price-label {
  font-size: clamp(13px, 3vw, 14px);
  color: #6b7280;
  margin-bottom: 20px;
}
.booth-sizes-section .size-features {
  list-style: none;
  margin-bottom: 24px;
}
.booth-sizes-section .size-features li {
  font-size: clamp(14px, 3vw, 15px);
  color: #4b5563;
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.5;
}
.booth-sizes-section .size-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transform: translateY(0);
}
.booth-sizes-section .size-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 3vw, 15px);
  font-weight: 700;
  color: #8b5cf6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.booth-sizes-section .size-cta::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease;
}
.booth-sizes-section .size-card:hover .size-cta::after {
  transform: translateX(4px);
}
.booth-sizes-section .sizes-bottom-cta {
  text-align: center;
  margin-top: clamp(60px, 12vw, 80px);
  padding: clamp(40px, 8vw, 60px) clamp(20px, 5vw, 24px);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
  border-radius: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.booth-sizes-section .bottom-cta-title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px 0;
  line-height: 1.3;
}
.booth-sizes-section .bottom-cta-text {
  font-size: clamp(16px, 3.5vw, 18px);
  color: #4b5563;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.booth-sizes-section .bottom-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.booth-sizes-section .cta-button {
  display: inline-block;
  padding: clamp(14px, 3vw, 18px) clamp(32px, 6vw, 42px);
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-size: clamp(15px, 3vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}
.booth-sizes-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}
.booth-sizes-section .cta-button-secondary {
  background: white;
  color: #8b5cf6 !important;
  border: 2px solid #8b5cf6;
  box-shadow: none;
}
.booth-sizes-section .cta-button-secondary:hover {
  background: #faf5ff;
}
@media (max-width: 768px) {
  .booth-sizes-section .sizes-carousel-container {
    padding: 0 20px;
  }
  .booth-sizes-section .size-card {
    width: 85vw;
  }
  .booth-sizes-section .bottom-cta-buttons {
    flex-direction: column;
  }
  .booth-sizes-section .cta-button {
    width: 100%;
    text-align: center;
  }
}
/* Scope these styles to avoid conflicts */
#pure-locations-section {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
#pure-locations-section * {
  box-sizing: border-box;
}
/* Custom Scrollbar */
#pure-locations-section .custom-scroll::-webkit-scrollbar {
  width: 6px;
}
#pure-locations-section .custom-scroll::-webkit-scrollbar-track {
  background: #1e293b;
}
#pure-locations-section .custom-scroll::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 3px;
}
#pure-locations-section .custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}
/* Animation */
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Force Active State Colors (Overrides Theme Defaults) */
#pure-locations-section .location-btn.active-state {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}
/* 	tailwind css */
#pure-locations-section *,
#pure-locations-section *:after,
#pure-locations-section *:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
.pointer-events-none {
  pointer-events: none;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.-bottom-12 {
  bottom: -3rem;
}
.-right-12 {
  right: -3rem;
}
.right-0 {
  right: 0;
}
.right-5 {
  right: 1.25rem;
}
.top-0 {
  top: 0;
}
.top-1\/2 {
  top: 50%;
}
.z-10 {
  z-index: 10;
}
.m-0 {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.h-1 {
  height: 0.25rem;
}
.h-full {
  height: 100%;
}
.max-h-\[60vh\] {
  max-height: 60vh;
}
.min-h-\[550px\] {
  min-height: 550px;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-20 {
  width: 5rem;
}
.w-full {
  width: 100%;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-xl {
  max-width: 36rem;
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
}
.-translate-y-1\/2,
.translate-x-2 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-2 {
  --tw-translate-x: 0.5rem;
}
.-rotate-12 {
  --tw-rotate: -12deg;
}
.-rotate-12,
.scale-105 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.bg-\[\#0f172a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1e293b\] {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/20 {
  background-color: hsla(0, 0%, 100%, 0.2);
}
.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.from-\[\#1e293b\] {
  --tw-gradient-from: #1e293b var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-\[\#162032\] {
  --tw-gradient-to: rgba(22, 32, 50, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #162032 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.p-8 {
  padding: 2rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[200px\] {
  font-size: 200px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.\!text-black {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1)) !important;
}
.text-black {
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-black,
.text-blue-300 {
  --tw-text-opacity: 1;
}
.text-blue-300 {
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-cyan-400 {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.text-fuchsia-500 {
  --tw-text-opacity: 1;
  color: rgb(217 70 239 / var(--tw-text-opacity, 1));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-indigo-400 {
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity, 1));
}
.text-indigo-500 {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-pink-400 {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-sky-500 {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.no-underline {
  text-decoration-line: none;
}
.opacity-0 {
  opacity: 0;
}
.opacity-5 {
  opacity: 0.05;
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
}
.shadow-2xl,
.shadow-lg {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.duration-200 {
  transition-duration: 0.2s;
}
.duration-300 {
  transition-duration: 0.3s;
}
.duration-700 {
  transition-duration: 0.7s;
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.hover\:border-white:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.hover\:bg-gray-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.hover\:pr-14:hover {
  padding-right: 3.5rem;
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:shadow-\[0_0_20px_rgba\(255\2c 255\2c 255\2c 0\.3\)\]:hover {
  --tw-shadow: 0 0 20px hsla(0, 0%, 100%, 0.3);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:hover .group-hover\:translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.group {
  position: relative;
  overflow: hidden;
}
.group-hover\:translate-x-0 {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) translateX(0.5rem);
  opacity: 0;
  transition: all 0.3s ease;
}
.group:hover .group-hover\:translate-x-0 {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.wpforms-form input,
.wpforms-form textarea,
.wpforms-form select {
  border-radius: 12px;
  padding: 14px;
  font-size: 0.95rem;
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.wpforms-form input:focus,
.wpforms-form textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 0.1rem rgba(79, 70, 229, 0.2);
  outline: none;
}
.wpforms-submit {
  background: #4f46e5 !important;
  border-radius: 30px !important;
  padding: 12px 28px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  transition: 0.3s ease;
}
.wpforms-submit:hover {
  background: #3730a3 !important;
}