@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-color: #1a0d1f;
  --primary-color-dark: #0d0511;
  --secondary-color: #df42f7;
  --secondary-color-light: #e866ff;
  --accent-color: #ff6b9d;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #888;
  --text-dark: #333;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  overflow-x: hidden;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 13, 31, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(223, 66, 247, 0.5);
}

.business-name span {
  color: var(--secondary-color);
  font-size: 2.2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

nav {
  display: flex;
  align-items: center;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(223, 66, 247, 0.2);
  border: 2px solid rgba(223, 66, 247, 0.4);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(223, 66, 247, 0.3);
  border-color: var(--secondary-color);
}

.mobile-menu-toggle.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.mobile-menu-toggle i {
  transition: transform 0.3s ease;
}

.link a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.link a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.link a:hover::after {
  width: 80%;
}

.link a:hover {
  color: var(--secondary-color);
  background: rgba(223, 66, 247, 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("bg.jpg") center/cover;
  opacity: 0.2;
  z-index: -1;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__content {
  animation: fadeInUp 1s ease;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand-name {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.5rem 0;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(223, 66, 247, 0.5);
  position: relative;
  display: inline-block;
}

.hero__brand-dollar {
  color: var(--secondary-color);
  font-size: 4rem;
  display: inline-block;
  animation: dollarPulse 2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(223, 66, 247, 0.8);
  margin-left: 0.2rem;
}

@keyframes dollarPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

.hero__brand-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  position: relative;
  display: inline-block;
}

.hero__brand-tagline::before,
.hero__brand-tagline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.hero__brand-tagline::before {
  left: -50px;
}

.hero__brand-tagline::after {
  right: -50px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero__description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__description strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.cta-links {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-link {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  border: none;
}

.cta-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-link:hover::before {
  width: 300px;
  height: 300px;
}

.cta-channel {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.cta-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
}

.cta-contact {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
}

.cta-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 233, 123, 0.6);
}

.cta-backup {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}

.cta-backup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 112, 154, 0.6);
}

/* Section Styles */
section {
  padding: 6rem 2rem;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-title span {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Offerings Section */
.offerings {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.offering-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(223, 66, 247, 0.3);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(223, 66, 247, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.offering-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(223, 66, 247, 0.1), rgba(255, 107, 157, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 25px;
}

.offering-card:hover::before,
.offering-card:hover::after {
  opacity: 1;
}

.offering-card:hover {
  transform: translateY(-25px) scale(1.05);
  border-color: var(--secondary-color);
  box-shadow: 0 30px 60px rgba(223, 66, 247, 0.5), 0 0 40px rgba(223, 66, 247, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

/* Different color variations for cards */
.offering-card:nth-child(1) .offering-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.offering-card:nth-child(2) .offering-icon {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.offering-card:nth-child(3) .offering-icon {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.offering-card:nth-child(4) .offering-icon {
  background: linear-gradient(135deg, #30cfd0, #330867);
}

.offering-card:nth-child(5) .offering-icon {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  color: var(--primary-color);
}

.offering-card:nth-child(6) .offering-icon {
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

.offering-card:nth-child(7) .offering-icon {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  color: var(--primary-color);
}

.offering-card:nth-child(8) .offering-icon {
  background: linear-gradient(135deg, #ff8a80, #ea4c89);
}

/* Savings Badge */
.offering-savings-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #ff6b9d, #df42f7);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(223, 66, 247, 0.5);
  z-index: 10;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(223, 66, 247, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(223, 66, 247, 0.7);
  }
}

/* Decorative Shape */
.offering-decorative-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(223, 66, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.offering-card:hover .offering-decorative-shape {
  transform: scale(1.5);
  opacity: 1;
}

/* Icon Wrapper */
.offering-icon-wrapper {
  position: relative;
  margin: 0 auto 1.5rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.offering-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--white);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(223, 66, 247, 0.4);
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 66, 247, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  animation: iconGlowPulse 3s ease-in-out infinite;
}

@keyframes iconGlowPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.offering-card:hover .offering-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 15px 40px rgba(223, 66, 247, 0.6);
}

.offering-card:hover .icon-glow {
  opacity: 1;
  transform: scale(1.5);
}

.offering-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.offering-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Min Payment Display */
.offering-min-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(223, 66, 247, 0.15);
  border: 1px solid rgba(223, 66, 247, 0.3);
  border-radius: 15px;
  margin: 1rem 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.offering-card:hover .offering-min-payment {
  background: rgba(223, 66, 247, 0.25);
  border-color: var(--secondary-color);
  transform: scale(1.05);
}

.min-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.min-amount {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Enhanced Click Hint */
.offering-click-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: rgba(223, 66, 247, 0.1);
  border: 1px solid rgba(223, 66, 247, 0.3);
  border-radius: 25px;
  color: var(--secondary-color);
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.offering-click-hint i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.offering-card:hover .offering-click-hint {
  opacity: 1;
  transform: translateY(0);
  background: rgba(223, 66, 247, 0.2);
  border-color: var(--secondary-color);
}

.offering-card:hover .offering-click-hint i {
  transform: translateX(5px);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: linear-gradient(135deg, rgba(26, 13, 31, 0.98), rgba(13, 5, 17, 0.98));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 30px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #ffd700;
  border-color: #ffd700;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.modal-content {
  padding: 3rem 2.5rem;
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.modal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.modal-details {
  margin-top: 2rem;
}

.detail-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffd700;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.detail-label {
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-value {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.6;
}

.detail-highlight {
  color: #ffed4e;
  font-weight: 600;
}

.modal-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.15);
  border-left: 4px solid #ffd700;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.modal-note p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
}

.modal-note strong {
  color: #ffd700;
}

/* Scrollbar styling for modal */
.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: #ffd700;
  border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: #ffed4e;
}

/* Exclusive Offerings Section */
.exclusive-offerings {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(26, 13, 31, 0.6));
  position: relative;
  overflow: hidden;
}

.exclusive-offerings::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(223, 66, 247, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.exclusive-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(223, 66, 247, 0.4);
  border-radius: 30px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.exclusive-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(223, 66, 247, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.exclusive-card:hover::before {
  opacity: 1;
}

.exclusive-card:hover {
  transform: translateY(-25px) scale(1.05);
  border-color: var(--secondary-color);
  box-shadow: 0 30px 60px rgba(223, 66, 247, 0.5), 0 0 40px rgba(223, 66, 247, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.exclusive-featured {
  border: 3px solid rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(223, 66, 247, 0.15));
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3), 0 10px 40px rgba(223, 66, 247, 0.3);
  animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% {
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3), 0 10px 40px rgba(223, 66, 247, 0.3);
  }
  50% {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5), 0 15px 50px rgba(223, 66, 247, 0.5);
  }
}

.exclusive-featured:hover {
  border-color: #ffd700;
  box-shadow: 0 35px 70px rgba(255, 215, 0, 0.6), 0 0 50px rgba(223, 66, 247, 0.4);
  transform: translateY(-30px) scale(1.08);
}

.exclusive-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(223, 66, 247, 0.4);
  z-index: 2;
}

.featured-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.exclusive-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(223, 66, 247, 0.4);
}

.featured-icon {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.exclusive-card:hover .exclusive-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 15px 40px rgba(223, 66, 247, 0.6);
}

.exclusive-card:hover .featured-icon {
  transform: rotate(360deg) scale(1.2);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.7);
}

.exclusive-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.exclusive-featured h3 {
  background: linear-gradient(135deg, #ffd700, var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exclusive-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.exclusive-highlight {
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.highlight-text {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(223, 66, 247, 0.2);
  border: 1px solid var(--secondary-color);
  border-radius: 25px;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exclusive-featured .highlight-text {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
  color: #ffd700;
}

.exclusive-click-hint {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(223, 66, 247, 0.1);
  border: 1px solid rgba(223, 66, 247, 0.3);
  border-radius: 25px;
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.exclusive-featured .exclusive-click-hint {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.exclusive-card:hover .exclusive-click-hint {
  opacity: 1;
  transform: translateY(0);
  background: rgba(223, 66, 247, 0.2);
  border-color: var(--secondary-color);
}

.exclusive-featured:hover .exclusive-click-hint {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

/* Vouches Section */
.vouches {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 13, 31, 0.5));
  position: relative;
  overflow: hidden;
}

.vouches::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.vouch-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 5rem;
  z-index: 1;
}

.vouch-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
}

.vouch-carousel-container:active {
  cursor: grabbing;
}

.vouch-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.vouch-carousel-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  min-width: 100%;
  flex-shrink: 0;
  padding: 1.5rem;
  box-sizing: border-box;
}

.vouch-carousel-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  max-height: 200px;
}

.vouch-carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(223, 66, 247, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.vouch-carousel-item:hover::before {
  opacity: 1;
}

.vouch-carousel-item:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.vouch-carousel-item img,
.vouch-carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  max-height: 200px;
}

.vouch-carousel-item:hover img,
.vouch-carousel-item:hover video {
  transform: scale(1.15);
}

.vouch-carousel-item .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.vouch-carousel-item[data-type="video"] .play-overlay {
  opacity: 1;
}

.vouch-carousel-item:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.vouch-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  color: #ffd700;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.vouch-nav-btn:hover {
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.vouch-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.vouch-prev {
  left: 0;
}

.vouch-next {
  right: 0;
}

.vouch-pagination {
  text-align: center;
  margin-top: 2rem;
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  display: inline-block;
}

/* Lightbox Modal */
.vouch-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vouch-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
  transform: rotate(90deg) scale(1.1);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  color: #ffd700;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* FAQ Section */
.faq {
  background: rgba(255, 255, 255, 0.03);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(223, 66, 247, 0.2);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(223, 66, 247, 0.2);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(223, 66, 247, 0.1);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0;
}

/* Rules Section */
.rules {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 13, 31, 0.5));
  position: relative;
  overflow: hidden;
}

.rules::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.rules-container {
  max-width: 1000px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.rule-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rule-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffd700, #ffed4e);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rule-item:hover::before {
  opacity: 1;
}

.rule-item:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.rule-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
}

.rule-item:hover .rule-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.rule-content {
  flex: 1;
}

.rule-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rule-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.rule-content strong {
  color: #ffd700;
  font-weight: 600;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.4);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section h3 span {
  color: var(--secondary-color);
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

.footer-cta-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-cta-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-cta-link i {
  font-size: 1.2rem;
}

.footer-cta-link span {
  flex: 1;
}

.footer-cta-channel {
  background: rgba(79, 172, 254, 0.15);
  border-color: rgba(79, 172, 254, 0.3);
  color: #4facfe;
}

.footer-cta-channel:hover {
  background: rgba(79, 172, 254, 0.25);
  border-color: #4facfe;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.footer-cta-contact {
  background: rgba(67, 233, 123, 0.15);
  border-color: rgba(67, 233, 123, 0.3);
  color: #43e97b;
}

.footer-cta-contact:hover {
  background: rgba(67, 233, 123, 0.25);
  border-color: #43e97b;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.footer-cta-backup {
  background: rgba(250, 112, 154, 0.15);
  border-color: rgba(250, 112, 154, 0.3);
  color: #fa709a;
}

.footer-cta-backup:hover {
  background: rgba(250, 112, 154, 0.25);
  border-color: #fa709a;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(223, 66, 247, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero__description {
    margin: 0 auto 2.5rem;
  }

  .cta-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }

  .business-name {
    font-size: 1.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 13, 31, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(223, 66, 247, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    max-height: 500px;
    padding: 1rem 0;
  }

  .nav__links {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
    width: 100%;
  }

  .link {
    width: 100%;
  }

  .link a {
    display: block;
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-radius: 10px;
  }

  .link a:hover {
    background: rgba(223, 66, 247, 0.2);
  }

  /* Make click hints always visible on mobile */
  .offering-click-hint {
    opacity: 1 !important;
    transform: translateY(0) !important;
    background: rgba(223, 66, 247, 0.15);
    border-color: rgba(223, 66, 247, 0.4);
  }

  .exclusive-click-hint {
    opacity: 1 !important;
    transform: translateY(0) !important;
    background: rgba(223, 66, 247, 0.15);
    border-color: rgba(223, 66, 247, 0.4);
  }

  .exclusive-featured .exclusive-click-hint {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
  }

  .hero {
    padding: 140px 1rem 2rem;
  }

  .hero__brand-name {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero__brand-dollar {
    font-size: 3rem;
  }

  .hero__brand-tagline {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .hero__brand-tagline::before,
  .hero__brand-tagline::after {
    width: 20px;
  }

  .hero__brand-tagline::before {
    left: -35px;
  }

  .hero__brand-tagline::after {
    right: -35px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__tagline {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .offerings-grid,
  .exclusive-grid {
    grid-template-columns: 1fr;
  }

  .vouch-carousel-page {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }

  .vouch-carousel-item {
    max-height: 150px;
  }

  .vouch-carousel-item img,
  .vouch-carousel-item video {
    max-height: 150px;
  }

  .vouch-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .vouch-carousel-wrapper {
    padding: 0 3.5rem;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .rules-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rule-item {
    flex-direction: column;
    padding: 1.5rem;
  }

  .rule-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.5rem;
  }

  .rule-content h3 {
    font-size: 1.2rem;
  }

  .exclusive-card {
    padding: 2rem 1.5rem;
  }

  .exclusive-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .exclusive-card h3 {
    font-size: 1.5rem;
  }

  .modal-container {
    max-width: 95%;
    border-radius: 20px;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }

  .modal-title {
    font-size: 2rem;
  }

  .modal-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__brand-name {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero__brand-dollar {
    font-size: 2.5rem;
  }

  .hero__brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .hero__brand-tagline::before,
  .hero__brand-tagline::after {
    width: 15px;
  }

  .hero__brand-tagline::before {
    left: -25px;
  }

  .hero__brand-tagline::after {
    right: -25px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .offering-card,
  .exclusive-card {
    padding: 1.5rem;
    min-height: auto;
  }

  /* Ensure click hints are visible and styled on mobile */
  .offering-click-hint {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .exclusive-click-hint {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .vouch-carousel-page {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .vouch-carousel-item {
    max-height: 120px;
  }

  .vouch-carousel-item img,
  .vouch-carousel-item video {
    max-height: 120px;
  }

  .vouch-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .vouch-carousel-wrapper {
    padding: 0 2.5rem;
  }

  .vouch-pagination {
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
  }

  .footer-cta-links {
    gap: 0.5rem;
  }

  .footer-cta-link {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  /* Mobile menu adjustments for smaller screens */
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .business-name {
    font-size: 1.3rem;
  }

  /* Ensure click hints remain visible on small mobile */
  .offering-click-hint {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .exclusive-click-hint {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: 1rem;
    right: 1rem;
  }

  .lightbox-nav {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .offering-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .offering-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }

  .offering-savings-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    top: 1rem;
    right: 1rem;
  }

  .offering-card h3 {
    font-size: 1.3rem;
  }

  .offering-min-payment {
    padding: 0.6rem 1.2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .min-amount {
    font-size: 1.1rem;
  }

  .exclusive-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .exclusive-card h3 {
    font-size: 1.3rem;
  }

  .exclusive-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
    top: 1rem;
    right: 1rem;
  }

  .modal-overlay {
    padding: 1rem;
  }

  .modal-container {
    max-width: 100%;
    border-radius: 15px;
  }

  .modal-content {
    padding: 1.5rem 1rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-subtitle {
    font-size: 0.95rem;
  }

  .modal-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .detail-item {
    padding: 1rem;
  }

  .detail-value {
    font-size: 1rem;
  }

  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    top: 1rem;
    right: 1rem;
  }

  .rule-item {
    padding: 1.25rem;
  }

  .rule-content h3 {
    font-size: 1.1rem;
  }

  .rule-content p {
    font-size: 0.9rem;
  }
}
