/* ============================================
   REMEDY REX — PREMIUM $50K REDESIGN v2
   ============================================ */

:root {
  --orange:    #FF8C00;
  --orange-d:  #FF8C00;
  --orange-l:  #FF8C00;
  --yellow:    #FFD700;
  --yellow-d:  #FFD700;
  --blue:      #1E90FF;
  --blue-d:    #1E90FF;
  --pink:      #FF4500;
  --green:     #2ECC40;
  --navy:      #1E90FF;
  --navy-l:    #1E90FF;
  --navy-ll:   #1E90FF;
  --white:     #ffffff;
  --off-white: #ffffff;
  --cream:     #ffffff;
  --gray:      #ffffff;
  --text:      #111111;
  --text-mid:  #111111;
  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
  --shadow:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.25);
  --t: 0.3s cubic-bezier(0.4,0,0.2,1);
  --t-bounce: 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Fredoka One', cursive; line-height: 1.1; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 100px 0; }
.desktop-only { display: inline; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s var(--t), transform 0.7s var(--t); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s var(--t), transform 0.7s var(--t); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800;
  cursor: pointer; border: 3px solid transparent;
  transition: transform var(--t-bounce), box-shadow var(--t), background var(--t), color var(--t);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.btn:active { transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: #ffffff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-d); border-color: var(--orange-d); box-shadow: 0 12px 32px rgba(255,107,43,0.4); }

.btn-outline { background: rgba(255,255,255,0.08); color: #ffffff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.85); color: #ffffff; }

.btn-card { background: #1E90FF; color: #ffffff; padding: 11px 24px; font-size: 0.9rem; border-color: var(--navy); }
.btn-card:hover { background: var(--orange); border-color: var(--orange); box-shadow: 0 8px 24px rgba(255,107,43,0.35); }

.btn-white { background: #fff; color: var(--orange); border-color: #111111; font-weight: 900; }
.btn-white:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); box-shadow: 0 12px 32px rgba(255,214,0,0.4); }

.btn-white-lg { background: #fff; color: var(--orange); border-color: #111111; font-size: 1.15rem; padding: 20px 48px; }
.btn-white-lg:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--navy); margin-bottom: 16px; }
.section-header p { font-size: 1.15rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.section-cta { text-align: center; margin-top: 56px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--navy);
  font-weight: 900; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 18px;
}
.section-tag-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.25); color: #ffffff;
  font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(4px);
}

.highlight-yellow { color: var(--yellow); }
.highlight-orange { color: var(--orange); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
  padding: 8px 0;
}
.navbar.scrolled {
  background: rgba(15,31,61,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: #ffffff;
}
.nav-logo img {
  width: 52px; height: 52px; object-fit: contain;
  border-radius: 50%; background: rgba(255,255,255,0.15);
  padding: 4px; border: 2px solid rgba(255,255,255,0.2);
  transition: transform var(--t-bounce);
}
.nav-logo:hover img { transform: rotate(-5deg) scale(1.1); }
.nav-logo span { background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #ffffff; font-weight: 700; font-size: 0.95rem;
  padding: 9px 16px; border-radius: 50px;
  transition: background var(--t), color var(--t);
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.12); color: #ffffff; }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important; border-radius: 50px !important;
  padding: 11px 24px !important; font-weight: 900 !important;
  box-shadow: 0 4px 16px rgba(255,107,43,0.4) !important;
}
.nav-cta:hover { background: var(--orange-d) !important; box-shadow: 0 8px 24px rgba(255,107,43,0.5) !important; transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #111111; border-radius: 3px; transition: all 0.3s ease; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 24px; background: rgba(15,31,61,0.98); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu a { color: #ffffff; font-weight: 700; padding: 12px 18px; border-radius: var(--radius-sm); transition: background var(--t); }
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: #ffffff; }
.mobile-menu .mobile-cta { background: var(--orange); color: #ffffff; text-align: center; margin-top: 10px; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #1E90FF;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: 
    linear-gradient(135deg, rgba(20,45,95,0.65) 0%, rgba(20,45,95,0.55) 50%, rgba(20,45,95,0.4) 100%),
    url("../images/hero-main.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateZ(0);
}
.hero-grid-overlay { display: none; }
.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  animation: particleFloat linear infinite;
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1100px; margin: 0 auto;
  padding: 0 48px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100vh;
  text-align: center;
}
.hero-content {
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-left: auto; margin-right: auto;
  background: rgba(255,133,27,0.12); border: 1px solid rgba(255,133,27,0.4);
  color: var(--orange); font-weight: 800; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 8px 20px; border-radius: 50px; margin-bottom: 18px;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.8s ease forwards;
  white-space: normal; text-align: center;
}
.hero-eyebrow::before { content: '🎉'; font-size: 1rem; }

.hero-title {
  font-size: clamp(3.1rem, 5.5vw, 5.8rem);
  color: #ffffff; line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: none;
  white-space: nowrap;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 {
  display: block;
  background: linear-gradient(120deg, #FFD700 0%, #FF8C00 45%, #FF4500 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative;

}
.hero-title .line-2-inline {
  display: inline;
  background: linear-gradient(120deg, #FFD700 0%, #FF8C00 45%, #FF4500 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;

}
.hero-title .line-3 { display: block; color: rgba(255,255,255,0.85); }

.hero-sub {
  font-size: 1.26rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 28px; max-width: 600px;
  text-align: center;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 24px; justify-content: center;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: #ffffff;
  margin-left: -10px;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 1rem; color: rgba(255,255,255,0.65); }
.hero-trust-text strong { color: #ffffff; }

/* Hero visual */
.hero-visual {
  display: flex; flex-direction: row; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeSlideUp 0.8s 0.7s ease both;
}
.hero-visual::before { display: none; }
.hero-img-main {
  display: none;
}
.hero-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.hero-img-main:hover img { transform: scale(1.05); }
.hero-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,0.5) 0%, transparent 50%);
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.9);
  border-left: 4px solid var(--orange);
  z-index: 10;
}
.hero-float-card .card-icon { font-size: 2rem; }
.hero-float-card strong { display: block; font-size: 1.05rem; color: var(--navy); font-weight: 800; }
.hero-float-card span { font-size: 0.88rem; color: var(--text-mid); }
.fc-1 { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation-delay: 0s; }
.fc-2 { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation-delay: -2s; }
.fc-3 { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation-delay: -4s; }

.hero-img-mini {
  display: none;
}
.hero-img-mini img { width: 100%; height: 100%; object-fit: cover; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(-5px) rotate(-0.5deg); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 4;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.stats-grid {
  display: grid; grid-template-columns: 260px repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
.stat-item {
  text-align: center; padding: 20px 32px;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: transform var(--t);
}
.stat-logo-col {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.stats-logo {
  width: 243px; height: 243px;
  object-fit: contain; border-radius: 12px;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-2px); }
.stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.9rem; color: var(--text-mid); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ===== SERVICES STRIP ===== */
.services-strip {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1E90FF 0%, #2ECC40 100%);
}
.services-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255,255,255,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 90% 30%, rgba(255,255,255,0.1) 0%, transparent 55%);
}
.services-strip::after { display: none; }
.services-strip .container { position: relative; z-index: 1; }
.services-strip .section-header h2 { color: #ffffff; }
.services-strip .section-header p { color: rgba(255,255,255,0.9); }
.strip-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.strip-scroll .strip-item:nth-child(5),
.strip-scroll .strip-item:nth-child(6),
.strip-scroll .strip-item:nth-child(7) {
  grid-column: auto;
}
/* Center the bottom 3 — shift them into middle columns */
.strip-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.strip-item {
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  border: 1.5px solid rgba(0,0,0,0.1);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), background var(--t);
  cursor: default;
}
.strip-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0,0,0,0.3);
  background: rgba(0,0,0,0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.strip-icon {
  font-size: 2.4rem; margin-bottom: 12px; display: block;
  transition: transform var(--t-bounce);
}
.strip-item:hover .strip-icon { transform: scale(1.2) rotate(-5deg); }
.strip-item strong { display: block; font-size: 1rem; font-weight: 800; color: #ffffff; margin-bottom: 6px; }
.light-bg .strip-item strong { color: var(--navy); }
.light-bg .strip-item p { color: var(--text-mid); }
.strip-item p { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* ===== FEATURED RENTALS ===== */
.featured { background: #ffffff; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rental-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.rental-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.card-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.card-img-wrap img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.rental-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,0.4) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--t);
}
.rental-card:hover .card-img-wrap::after { opacity: 1; }
.card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--yellow); color: var(--navy);
  font-weight: 900; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 6px 14px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.card-body p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--gray); }
.card-tag { font-size: 0.78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }

/* ===== WHY US ===== */
.why-us { background: #fff; }
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-col { position: relative; }
.why-img-stack { position: relative; }
.why-img-main {
  width: 90%; border-radius: 28px; box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4; object-fit: cover;
}
.why-img-secondary {
  position: absolute; bottom: -30px; right: -10px;
  width: 55%; border-radius: 20px; box-shadow: var(--shadow-lg);
  aspect-ratio: 1; object-fit: cover;
  border: 5px solid #fff;
}
.why-badge {
  position: absolute; top: 30px; right: -10px;
  background: var(--orange); color: #ffffff;
  padding: 18px 22px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
}
.why-badge-num { font-family: 'Fredoka One', cursive; font-size: 2.2rem; line-height: 1; display: block; }
.why-badge-text { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

.why-text-col h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--navy); margin-bottom: 16px; }
.why-intro { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 36px; line-height: 1.8; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.why-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius-sm);
  background: #ffffff; border: 1.5px solid transparent;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.why-list li:hover { border-color: var(--orange); background: #ffffff; transform: translateX(6px); }
.why-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-l));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,107,43,0.3);
}
.why-list strong { display: block; font-weight: 800; color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.why-list p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }

/* ===== WATER CALLOUT ===== */
.water-callout {
  background: linear-gradient(135deg, #1E90FF 0%, #1E90FF 50%, #1E90FF 100%);
  padding: 64px 0; overflow: hidden; position: relative;
}
.water-callout::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.water-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; position: relative; }
.water-emoji { font-size: 5rem; animation: splash 2s ease-in-out infinite; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2)); }
@keyframes splash { 0%,100%{transform:translateY(0) rotate(0deg)} 25%{transform:translateY(-14px) rotate(-5deg)} 75%{transform:translateY(-7px) rotate(3deg)} }
.water-text { flex: 1; min-width: 240px; }
.water-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: #ffffff; margin-bottom: 10px; }
.water-text p { color: rgba(255,255,255,0.9); font-size: 1.1rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #FF8C00; padding: 100px 0; position: relative; overflow: hidden; }
.testimonials::before {
  content: '"'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  font-family: 'Fredoka One', cursive; font-size: 300px; color: rgba(255,255,255,0.03); line-height: 1;
  pointer-events: none;
}
.testimonials .section-header h2 { color: #ffffff; }
.testimonials .section-header p { color: rgba(255,255,255,0.7); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #ffffff; border-radius: var(--radius-lg);
  padding: 36px; border: 1.5px solid var(--gray);
  transition: transform var(--t), border-color var(--t), background var(--t);
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  opacity: 0; transition: opacity var(--t);
}
.testi-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); }
.testi-card:hover::before { opacity: 1; }
.testi-card.featured {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  border-color: transparent;
  border-color: transparent; transform: translateY(-12px);
}
.testi-card.featured:hover { transform: translateY(-16px); }
.testi-card.featured::before { opacity: 1; background: rgba(255,255,255,0.3); }
.testi-stars { font-size: 1.1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-quote { font-size: 1.05rem; color: #333333; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-card.featured .testi-quote { color: rgba(255,255,255,0.98); }
.testi-card.featured .testi-name { color: #ffffff; }
.testi-card.featured .testi-role { color: rgba(255,255,255,0.75); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; color: #ffffff; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
}
.testi-card.featured .testi-avatar { background: rgba(255,255,255,0.3); }
.testi-name { font-weight: 800; color: #142D5F; font-size: 0.95rem; }
.testi-role { font-size: 0.8rem; color: #777777; margin-top: 2px; }

/* ===== GALLERY ===== */
.gallery { background: #ffffff; }
.gallery-masonry {
  columns: 3; column-gap: 20px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 20px;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0;
  background: rgba(15,31,61,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; opacity: 0;
  transition: opacity var(--t);
  backdrop-filter: blur(2px);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-xl); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.15); border: none; color: #ffffff;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem;
  cursor: pointer; transition: background var(--t); display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--orange); }

/* ===== SOCIAL CTA ===== */
.social-cta { background: #fff; }
.social-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.social-inner h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 14px; }
.social-inner > p { color: var(--text-mid); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.8; }
.social-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px; margin-left: auto; margin-right: auto;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 800; font-size: 1rem; color: #111111;
  transition: transform var(--t-bounce), box-shadow var(--t);
}
.social-btn:hover { transform: translateY(-4px); }
.social-btn svg { width: 22px; height: 22px; }
.instagram { background: linear-gradient(135deg, #1E90FF 0%, #FF4500 50%, #FF8C00 100%); }
.instagram:hover { box-shadow: 0 12px 28px rgba(253,29,29,0.4); }
.facebook { background: #1E90FF; }
.facebook:hover { box-shadow: 0 12px 28px rgba(24,119,242,0.4); }
.tiktok { background: #111111; color: #ffffff; }
.tiktok:hover { background: #333333; color: #ffffff; box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
.social-handle {
  font-size: 0.95rem; color: var(--text-mid);
  background: #ffffff; padding: 12px 24px;
  border-radius: 50px; display: inline-block;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFD700 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(255,214,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(255,63,164,0.15) 0%, transparent 60%);
}
.final-cta-inner { text-align: center; position: relative; }
.final-cta-inner h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: #ffffff; margin-bottom: 18px; }
.final-cta-inner p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; }

/* ===== FOOTER ===== */
.footer { background: #1E90FF; color: #ffffff; }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 60px; }
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.1); padding: 4px; margin-bottom: 20px; border: 2px solid rgba(255,255,255,0.15); }
.footer-brand h3 { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: #ffffff; margin-bottom: 12px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); transition: background var(--t), transform var(--t-bounce), border-color var(--t);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-4px); color: white !important; }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 { font-family: 'Fredoka One', cursive; font-size: 1.15rem; color: #ffffff; margin-bottom: 20px; }
.footer-col a, .footer-col span { display: block; font-size: 0.93rem; margin-bottom: 10px; transition: color var(--t), transform var(--t); cursor: pointer; }
.footer-col a:hover { color: var(--orange); transform: translateX(4px); }

.footer-contact-card {
  background: #ffffff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius); padding: 24px; margin-bottom: 16px;
}
.footer-contact-card h4 { font-family: 'Fredoka One', cursive; color: #142D5F; font-size: 1.1rem; margin-bottom: 14px; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.92rem; color: #444; }
.footer-contact-row a { color: #1E90FF; transition: color var(--t); }
.footer-contact-row a:hover { color: var(--yellow); }
.footer-cta-btn {
  display: block; background: var(--orange); color: #ffffff;
  padding: 13px 20px; border-radius: 50px; font-weight: 800;
  text-align: center; transition: background var(--t), transform var(--t-bounce);
  font-size: 0.95rem;
}
.footer-cta-btn:hover { background: #FF4500; color: #ffffff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,69,0,0.4); }

.footer-divider { border: none; border-top: 1px solid rgba(0,0,0,0.08); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: var(--blue); transition: color var(--t); }
.footer-bottom a:hover { color: var(--yellow); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #FF8C00 0%, #FF4500 40%, #FF4500 100%);
  padding: 150px 24px 90px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(0,173,239,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,107,43,0.15) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); color: #ffffff; margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.page-hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }
.page-hero-wave svg { width: 100%; height: 60px; }

/* ===== INVENTORY ===== */
.inv-category { grid-column: 1/-1; margin-top: 48px; }
.inv-category h2 {
  font-size: 1.8rem; color: var(--navy);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid var(--gray);
}
.inv-category h2::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); }
.inventory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { border-radius: 28px; box-shadow: var(--shadow-xl); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--yellow); border-radius: 20px;
  padding: 20px 24px; text-align: center; box-shadow: var(--shadow);
}
.about-img-accent .num { font-family: 'Fredoka One', cursive; font-size: 2.5rem; color: var(--navy); line-height: 1; }
.about-img-accent .lbl { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); }
.about-text h2 { font-size: 2.6rem; color: var(--navy); margin-bottom: 18px; }
.about-text p { color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; font-size: 1.02rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); border: 1.5px solid transparent; transition: transform var(--t), border-color var(--t), box-shadow var(--t); }
.value-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: var(--shadow); }
.value-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { color: var(--text-mid); line-height: 1.9; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; padding: 18px; border-radius: var(--radius-sm); background: #ffffff; transition: background var(--t), transform var(--t); }
.contact-detail:hover { background: #ffffff; transform: translateX(4px); }
.contact-detail-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--orange), var(--orange-l)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(255,107,43,0.3); }
.contact-detail strong { display: block; color: var(--navy); margin-bottom: 3px; font-size: 1rem; font-weight: 800; }
.contact-detail span, .contact-detail a { color: var(--text-mid); font-size: 0.95rem; }
.contact-detail a { color: var(--blue); }
.contact-detail a:hover { color: var(--orange); }

.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); border: 1.5px solid rgba(0,0,0,0.06); }
.contact-form-wrap h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-weight: 800; font-size: 0.88rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px; border: 2px solid #ffffff; border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: 1rem; color: var(--text);
  background: #ffffff; transition: border-color var(--t), box-shadow var(--t), background var(--t);
  outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,43,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 18px; font-size: 1.1rem; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; }
.form-success { display: none; background: var(--green); color: #111111; padding: 18px; border-radius: var(--radius-sm); text-align: center; font-weight: 800; margin-top: 16px; font-size: 1.05rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .fc-1 { left: 0; }
  .fc-2 { left: 0; }
  .fc-3 { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-logo-col { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding-top: 40px; }
  .strip-scroll { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card.featured { transform: none; }
  .gallery-masonry { columns: 2; }
  .water-inner { flex-direction: column; text-align: center; }
  .inventory-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .strip-scroll { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 1; }
  .inventory-grid { grid-template-columns: 1fr; }
  .hero-float-card { display: none; }
  .hero-img-mini { display: none; }
  .why-img-secondary { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}

/* Strip items on light backgrounds */
section:not(.services-strip) .strip-item strong { color: var(--navy) !important; }
section:not(.services-strip) .strip-item p { color: var(--text-mid) !important; }
section:not(.services-strip) .strip-item {
  background: #fff !important;
  border: 1.5px solid rgba(0,0,0,0.08) !important;
}
section:not(.services-strip) .strip-item:hover {
  border-color: var(--orange) !important;
  background: #fff !important;
}
/* build: 1780456229 */

/* ===== NEW ARRIVALS BANNER ===== */
.new-arrivals-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}
.new-arrivals-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.new-arrivals-ticker span {
  color: var(--yellow);
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 32px;
}
.new-arrivals-ticker span.dot {
  color: var(--orange);
  padding: 0 8px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrap { overflow: hidden; }

/* ===== NEW ARRIVALS SECTION ===== */
.new-arrivals {
  background: linear-gradient(135deg, #FF8C00 0%, #FF4500 50%, #FFD700 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.new-arrivals::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(255,214,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 50%, rgba(255,107,43,0.12) 0%, transparent 55%);
}
.new-arrivals .section-header h2 { color: #ffffff; }
.new-arrivals .section-header p { color: rgba(255,255,255,0.7); }
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.new-arrival-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.new-arrival-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(255,133,27,0.2);
}
.new-arrival-card .card-img-wrap img { height: 200px; object-fit: cover; width: 100%; }
.new-arrival-card .card-body { padding: 22px; }
.new-arrival-card .card-body h3 { color: #111111; font-size: 1.15rem; margin-bottom: 8px; }
.new-arrival-card .card-body p { color: #111111; font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.new-arrival-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--yellow); color: var(--navy);
  font-weight: 900; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 50px;
}

/* ===== EVENT DECOR SECTION ===== */
.event-decor {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}
.decor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.decor-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.decor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--pink); }
.decor-card-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.decor-card-img.balloon-bg { background: linear-gradient(135deg, #FF4500, #FF8C00); }
.decor-card-img.lighting-bg { background: linear-gradient(135deg, #1E90FF, #FF4500); }
.decor-card-img.backdrop-bg { background: linear-gradient(135deg, #1E90FF, #1E90FF); }
.decor-card-img.linen-bg { background: linear-gradient(135deg, #FF8C00, #FFD700); }
.decor-card-img.marquee-bg { background: linear-gradient(135deg, #FF8C00, #FFD700); }
.decor-card-img.package-bg { background: linear-gradient(135deg, #2ECC40, #1E90FF); }
.decor-card-body { padding: 24px; }
.decor-card-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.decor-card-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.decor-upsell {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ffffff; color: var(--orange);
  font-weight: 800; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 50px;
}

/* ===== PACKAGES SECTION ===== */
.packages { background: #fff; padding: 100px 0; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border: 2px solid var(--gray);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--orange); }
.package-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  border-color: var(--yellow);
  transform: translateY(-8px);
}
.package-card.featured:hover { transform: translateY(-14px); }
.package-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--navy);
  font-weight: 900; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 20px; border-radius: 50px;
  white-space: nowrap;
}
.package-icon { font-size: 3rem; margin-bottom: 16px; }
.package-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.package-card.featured h3 { color: #ffffff; }
.package-card > p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 24px; line-height: 1.7; }
.package-card.featured > p { color: rgba(255,255,255,0.8); }
.package-includes {
  list-style: none; text-align: left;
  margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px;
}
.package-includes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid);
}
.package-card.featured .package-includes li { color: rgba(255,255,255,0.85); }
.package-includes li::before { content: '✅'; font-size: 0.85rem; flex-shrink: 0; }
.package-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem; color: var(--orange); margin-bottom: 20px;
}
.package-card.featured .package-price { color: var(--yellow); }

@media(max-width:1024px) {
  .new-arrivals-grid { grid-template-columns: repeat(2,1fr); }
  .decor-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:640px) {
  .new-arrivals-grid { grid-template-columns: 1fr; }
  .decor-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
}

/* ===== PLAYFUL ADDITIONS ===== */

/* Wavy section dividers */
.wave-top, .wave-bottom { line-height: 0; }

/* Strip item stagger animation */
.strip-item {
  animation-delay: 0s;
  animation: stripPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes stripPop {
  from { opacity:0; transform:translateY(20px) scale(0.9); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* Wobbly hover on ALL buttons */
.btn:hover {
  animation: btnWobble 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes btnWobble {
  0%   { transform: translateY(-4px) rotate(0deg); }
  25%  { transform: translateY(-6px) rotate(-2deg); }
  50%  { transform: translateY(-4px) rotate(2deg); }
  75%  { transform: translateY(-5px) rotate(-1deg); }
  100% { transform: translateY(-4px) rotate(0deg); }
}

/* Colorful card top border flash on hover */
.rental-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--card-color, var(--orange)), var(--pink));
  opacity: 0; transition: opacity 0.3s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.rental-card:hover::before { opacity: 1; }

/* Fun emoji bullets in Why Us list */
.why-icon-wrap {
  animation: iconPop 3s ease-in-out infinite;
}
@keyframes iconPop {
  0%,100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(-5deg); }
}

/* Pulsing CTA button */
.btn-primary {
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(255,107,43,0.4); }
  50% { box-shadow: 0 8px 32px rgba(255,107,43,0.7), 0 0 0 6px rgba(255,107,43,0.15); }
}

/* Rainbow underline on hero title */
.hero-title .line-2::after {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #FF8C00, #FFD700, #1E90FF, #FF4500, #2ECC40);
  border-radius: 4px;
  margin-top: 4px;
  animation: rainbowSlide 3s ease-in-out infinite;
}
@keyframes rainbowSlide {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating emoji decoration in hero */
.hero-emoji-float {
  position: absolute;
  font-size: 2rem;
  animation: emojiDrift 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.4;
  z-index: 2;
}
@keyframes emojiDrift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(10deg); }
  66% { transform: translateY(-10px) rotate(-5deg); }
}

/* ===== PARTY HERO — BALLOONS, CONFETTI, STARS, CLOUDS ===== */

/* BALLOONS */
.balloon {
  position: absolute; bottom: -20px; z-index: 2; pointer-events: none;
  animation: balloonFloat 6s ease-in-out infinite;
}
.balloon::before {
  content: '';
  display: block;
  width: 52px; height: 62px;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  box-shadow: inset -6px -4px 0 rgba(0,0,0,0.12);
}
.balloon::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: inherit;
  margin: 0 auto;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.balloon-red::before    { background: #FF4500; }
.balloon-yellow::before { background: #FFD700; }
.balloon-blue::before   { background: #1E90FF; }
.balloon-green::before  { background: #2ECC40; }
.balloon-orange::before { background: #FF8C00; }
.balloon-string {
  width: 1px; height: 80px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto;
  animation: stringWiggle 3s ease-in-out infinite;
}
@keyframes balloonFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  25%      { transform: translateY(-18px) rotate(2deg); }
  50%      { transform: translateY(-8px) rotate(-1deg); }
  75%      { transform: translateY(-22px) rotate(3deg); }
}
@keyframes stringWiggle {
  0%,100% { transform: rotate(-2deg); }
  50%     { transform: rotate(2deg); }
}

/* CONFETTI */
.confetti-container {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.confetti-piece {
  position: absolute; top: -20px; opacity: 0;
  animation: confettiFall linear infinite;
  transform-origin: center;
}
.confetti-piece.circle  { border-radius: 50%; }
.confetti-piece.triangle {
  background: transparent !important;
  width: 0 !important; height: 0 !important;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #FFD700;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 1; }
  100% { transform: translateY(110vh)  rotate(720deg); opacity: 0.3; }
}

/* CARTOON STARS */
.star-burst {
  position: absolute; z-index: 2; pointer-events: none;
  font-size: 1.6rem; line-height: 1;
  animation: starSpin 4s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255,215,0,0.8));
}
.star-1 { top:8%;  left:4%;  color:#FFD700; animation-delay:0s;    font-size:2rem; }
.star-2 { top:18%; right:5%; color:#FF4500; animation-delay:-1s;   font-size:1.4rem; }
.star-3 { top:45%; left:7%;  color:#2ECC40; animation-delay:-2s;   font-size:1.8rem; }
.star-4 { top:65%; right:6%; color:#1E90FF; animation-delay:-0.5s; font-size:2.2rem; }
.star-5 { top:80%; left:12%; color:#FF8C00; animation-delay:-3s;   font-size:1.5rem; }
.star-6 { top:30%; right:12%;color:#FFD700; animation-delay:-1.5s; font-size:1.2rem; }
@keyframes starSpin {
  0%,100% { transform: scale(1)   rotate(0deg);   opacity: 0.9; }
  25%     { transform: scale(1.3) rotate(15deg);  opacity: 1; }
  50%     { transform: scale(0.9) rotate(-10deg); opacity: 0.7; }
  75%     { transform: scale(1.2) rotate(20deg);  opacity: 1; }
}

/* BOUNCE on hero title */
.hero-title {
  animation: titleBounceIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.2s both !important;
}
@keyframes titleBounceIn {
  0%   { opacity:0; transform: scale(0.7) translateY(40px); }
  60%  { opacity:1; transform: scale(1.05) translateY(-8px); }
  80%  { transform: scale(0.97) translateY(4px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}

/* BOUNCE on CTA button */
.btn-primary {
  animation: btnPulse 2.5s ease-in-out 1.5s infinite !important;
}
@keyframes btnPulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}

/* BOUNCE on float cards */
.hero-float-card {
  animation: cardBounce 4s ease-in-out infinite !important;
}
.fc-1 { animation-delay: 0s !important; }
.fc-2 { animation-delay: -1.3s !important; }
.fc-3 { animation-delay: -2.6s !important; }
@keyframes cardBounce {
  0%,100% { transform: translateY(0); }
  40%     { transform: translateY(-10px); }
  60%     { transform: translateY(-6px); }
}

/* ===== PREMIUM SERVICES SECTION ===== */
.services-premium {
  background: linear-gradient(135deg, #1E90FF 0%, #142D5F 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.services-premium .section-header h2 { color: #ffffff; }
.services-premium .section-header p  { color: rgba(255,255,255,0.85); }
.services-premium .section-tag {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
}

/* Background confetti dots */
.svc-bg-confetti { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.svc-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: svcDotBob 4s ease-in-out infinite;
}
@keyframes svcDotBob {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-14px) rotate(180deg); }
}
.svc-balloon {
  position: absolute;
  bottom: 0;
  font-size: 3rem;
  opacity: 0.18;
  animation: svcBalloonRise 10s ease-in-out infinite;
}
@keyframes svcBalloonRise {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%     { transform: translateY(-40px) rotate(5deg); }
}

/* CARD GRID */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.svc-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease;
  position: relative;
}
.svc-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255,140,0,0.45),
              0 8px 24px rgba(0,0,0,0.2);
}
.svc-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.08); }
.svc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,45,95,0.5) 0%, transparent 60%);
}
.svc-card-body {
  padding: 22px 24px 26px;
}
.svc-card-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: #142D5F;
  margin-bottom: 8px;
}
.svc-card-body p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}
.svc-btn {
  display: inline-block;
  background: #FF8C00;
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.svc-btn:hover {
  background: #FF4500;
  transform: translateX(4px);
}

/* TRUST BAR */
.svc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 28px 40px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.svc-trust-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2.4rem;
  color: #FFD700;
  line-height: 1;
}
.svc-trust-icon {
  font-size: 2rem;
  line-height: 1;
}
.svc-trust-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.svc-trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.25);
}

@media(max-width:900px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-trust-item { padding: 0 20px; }
}
@media(max-width:580px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-trust-divider { display: none; }
}

/* ===== HOT NEW ARRIVALS — PREMIUM REDESIGN ===== */
.hna-section {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #FF4500 0%, #FF8C00 40%, #FFD700 100%);
}

/* Floating bg elements */
.hna-bg-elements { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hna-bal {
  position: absolute; bottom: 10%;
  font-size: 3.5rem; opacity: 0.15;
  animation: hnaBalloonFloat 8s ease-in-out infinite;
}
@keyframes hnaBalloonFloat {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%     { transform: translateY(-50px) rotate(6deg); }
}

/* Confetti pieces */
.hna-confetti {
  position: absolute;
  border-radius: 3px;
  opacity: 0.35;
  animation: hnaConfettiBob ease-in-out infinite;
}
.hna-c1 { width:12px;height:12px;background:#ffffff;  top:10%;left:8%;  animation-duration:3s; animation-delay:0s;   border-radius:50%; }
.hna-c2 { width:10px;height:10px;background:#1E90FF;  top:20%;left:90%; animation-duration:4s; animation-delay:-1s; }
.hna-c3 { width:14px;height:14px;background:#2ECC40;  top:60%;left:5%;  animation-duration:5s; animation-delay:-2s; border-radius:50%; }
.hna-c4 { width:8px; height:8px; background:#ffffff;  top:75%;left:92%; animation-duration:3.5s;animation-delay:-0.5s; }
.hna-c5 { width:16px;height:16px;background:#1E90FF;  top:30%;left:50%; animation-duration:6s; animation-delay:-3s; border-radius:50%; }
.hna-c6 { width:10px;height:10px;background:#2ECC40;  top:85%;left:30%; animation-duration:4.5s;animation-delay:-1.5s; }
.hna-c7 { width:12px;height:12px;background:#ffffff;  top:45%;left:75%; animation-duration:3.8s;animation-delay:-2.5s; border-radius:50%; }
.hna-c8 { width:8px; height:8px; background:#1E90FF;  top:15%;left:25%; animation-duration:5.5s;animation-delay:-0.8s; }
@keyframes hnaConfettiBob {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-20px) rotate(180deg); }
}

/* Header */
.hna-header { text-align: center; margin-bottom: 56px; }
.hna-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem; letter-spacing: 2px;
  padding: 6px 20px; border-radius: 50px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.hna-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hna-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CARD GRID */
.hna-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.hna-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.hna-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 28px 70px rgba(255,69,0,0.4),
              0 10px 30px rgba(0,0,0,0.2);
}

/* Card image */
.hna-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.hna-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.hna-card:hover .hna-card-img-wrap img { transform: scale(1.1); }
.hna-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,45,95,0.55) 0%, transparent 55%);
}

/* Badge pill */
.hna-pill {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Fredoka One', cursive;
  font-size: 0.82rem; padding: 5px 14px;
  border-radius: 50px;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 2;
}
.hna-pill-new     { background: #2ECC40; }
.hna-pill-hot     { background: #FF4500; }
.hna-pill-fav     { background: #1E90FF; }
.hna-pill-limited { background: #FF8C00; }

/* Card body */
.hna-card-body {
  padding: 24px 26px 28px;
  display: flex; flex-direction: column; flex: 1;
}
.hna-card-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  color: #142D5F;
  margin-bottom: 10px;
  line-height: 1.15;
}
.hna-card-body p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}
.hna-card-footer { margin-top: auto; }
.hna-cta {
  display: inline-block;
  background: linear-gradient(135deg, #FF4500, #FF8C00);
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(255,140,0,0.4);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.hna-cta:hover {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  box-shadow: 0 8px 30px rgba(255,140,0,0.65);
  transform: translateY(-2px);
}

/* View All */
.hna-view-all { text-align: center; }
.hna-view-btn {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 14px 40px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hna-view-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

@media(max-width:900px) { .hna-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px) { .hna-grid { grid-template-columns: 1fr; } }

/* ===== TOP-RATED RENTALS V2 ===== */
.featured-v2 {
  background: linear-gradient(160deg, #EBF5FF 0%, #F0F8FF 50%, #E8F4FF 100%);
  padding: 110px 0 100px;
  position: relative;
}
.fv2-tag {
  background: linear-gradient(135deg, #1E90FF, #2ECC40) !important;
  color: #fff !important;
  border: none !important;
}
.fv2-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin-top: 16px;
}
.fv2-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(30,144,255,0.1);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.fv2-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 24px 60px rgba(30,144,255,0.22), 0 8px 24px rgba(0,0,0,0.1);
}
.fv2-img-wrap {
  position: relative; height: 260px; overflow: hidden;
}
.fv2-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.fv2-card:hover .fv2-img-wrap img { transform: scale(1.1); }
.fv2-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,45,95,0.5) 0%, transparent 55%);
}
.fv2-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Fredoka One', cursive;
  font-size: 0.8rem; padding: 5px 14px;
  border-radius: 50px; color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2); z-index: 2;
}
.fv2-badge-fav     { background: #FF8C00; }
.fv2-badge-hot     { background: #FF4500; }
.fv2-badge-new     { background: #2ECC40; }
.fv2-badge-blue    { background: #1E90FF; }
.fv2-badge-green   { background: #2ECC40; }
.fv2-num {
  position: absolute; top: 14px; right: 14px;
  background: #FFD700; color: #111;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2); z-index: 2;
}
.fv2-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.fv2-cat {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: #1E90FF; margin-bottom: 8px; display: block;
}
.fv2-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.35rem; color: #142D5F;
  margin-bottom: 10px; line-height: 1.2;
}
.fv2-body p { font-size: 0.92rem; color: #444; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.fv2-footer { margin-top: auto; }
.fv2-btn {
  display: inline-block;
  background: #1E90FF; color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem; padding: 11px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(30,144,255,0.35);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.fv2-btn:hover {
  background: #FF8C00;
  box-shadow: 0 8px 28px rgba(255,140,0,0.5);
  transform: translateY(-2px) translateX(3px);
}
.fv2-cta { text-align: center; margin-top: 56px; }
.fv2-view-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1E90FF, #2ECC40);
  color: #fff; font-family: 'Fredoka One', cursive;
  font-size: 1.1rem; padding: 16px 48px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(30,144,255,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fv2-view-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,144,255,0.45);
}
@media(max-width:900px){ .fv2-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .fv2-grid{ grid-template-columns: 1fr; } }


/* ===== WHY US V2 ===== */
.why-v2 {
  background: #ffffff;
  padding: 110px 0 100px;
  position: relative; overflow: hidden;
}
.why-v2-bg-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.wv2-dot {
  position: absolute; border-radius: 50%; opacity: 0.4;
  animation: wv2DotBob 5s ease-in-out infinite;
}
@keyframes wv2DotBob {
  0%,100%{ transform: translateY(0) scale(1); }
  50%    { transform: translateY(-16px) scale(1.15); }
}
.wv2-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

/* Image */
.wv2-img-col { position: relative; }
.wv2-img-frame {
  position: relative; border-radius: 32px; overflow: visible;
}
.wv2-img-main {
  width: 100%; border-radius: 28px;
  box-shadow: 0 24px 64px rgba(30,144,255,0.18), 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.6s ease;
  display: block;
}
.wv2-img-col:hover .wv2-img-main { transform: scale(1.02) translateY(-4px); }
.wv2-img-accent {
  position: absolute; inset: -10px;
  border: 3px solid #1E90FF; border-radius: 36px;
  opacity: 0.2; pointer-events: none;
}
.wv2-satisfaction {
  position: absolute; bottom: -20px; right: -20px;
  background: #FF8C00; border-radius: 20px;
  padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 28px rgba(255,140,0,0.4);
  border: 3px solid #fff;
}
.wv2-sat-num { display: block; font-family: 'Fredoka One',cursive; font-size: 2rem; color: #fff; line-height: 1; }
.wv2-sat-txt { display: block; font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.wv2-img-badge-tl {
  position: absolute; top: -16px; left: 20px;
  background: #FFD700; color: #111;
  font-family: 'Fredoka One',cursive; font-size: 0.82rem;
  padding: 6px 16px; border-radius: 50px;
  box-shadow: 0 4px 14px rgba(255,215,0,0.4);
  border: 2px solid #fff;
}

/* Text */
.wv2-trust-cluster {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px;
}
.wv2-tick {
  background: #EBF5FF; color: #1E90FF;
  font-size: 0.78rem; font-weight: 800;
  padding: 5px 14px; border-radius: 50px;
  border: 1px solid rgba(30,144,255,0.25);
}
.wv2-headline {
  font-family: 'Fredoka One',cursive;
  font-size: clamp(2.2rem,4vw,3.2rem);
  color: #142D5F; margin: 12px 0 16px; line-height: 1.1;
}
.wv2-intro { font-size: 1.05rem; color: #444; line-height: 1.8; margin-bottom: 28px; }

/* Feature cards */
.wv2-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.wv2-feat {
  display: flex; align-items: flex-start; gap: 16px;
  background: #ffffff; border: 1.5px solid rgba(30,144,255,0.12);
  border-radius: 16px; padding: 16px 18px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.wv2-feat:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(30,144,255,0.14);
  border-color: rgba(30,144,255,0.3);
}
.wv2-feat-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.wv2-feat strong { display: block; font-size: 0.97rem; color: #142D5F; font-weight: 800; margin-bottom: 3px; }
.wv2-feat p { font-size: 0.87rem; color: #555; line-height: 1.6; margin: 0; }

.wv2-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1E90FF, #2ECC40);
  color: #fff; font-family: 'Fredoka One',cursive;
  font-size: 1.05rem; padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(30,144,255,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wv2-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(30,144,255,0.4);
}
@media(max-width:860px){
  .wv2-wrap { grid-template-columns: 1fr; gap: 48px; }
  .wv2-img-col { max-width: 520px; margin: 0 auto; }
}

/* ===== EVENT PACKAGE BUNDLES V2 ===== */
.pkg-v2 {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #E8F4FF 0%, #EDF6FF 40%, #F0F8FF 100%);
}

/* Background deco */
.pkg-bg-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pkg-bal {
  position: absolute; bottom: 5%;
  font-size: 3rem; opacity: 0.12;
  animation: pkgBalFloat 9s ease-in-out infinite;
}
@keyframes pkgBalFloat {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%     { transform: translateY(-55px) rotate(5deg); }
}
.pkg-dot {
  position: absolute; border-radius: 50%; opacity: 0.4;
  animation: pkgDotBob 5s ease-in-out infinite;
}
@keyframes pkgDotBob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}

/* Header */
.pkg-header-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #FF8C00, #FF4500);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem; letter-spacing: 2px;
  padding: 7px 22px; border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(255,140,0,0.35);
}
.pkg-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #142D5F; margin-bottom: 14px; line-height: 1.1;
}
.pkg-sub {
  font-size: 1.1rem; color: #444;
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* Grid */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}

/* Card base */
.pkg-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,144,255,0.1);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 24px 60px rgba(30,144,255,0.2), 0 8px 24px rgba(0,0,0,0.08);
}

/* Featured card */
.pkg-card-featured {
  background: linear-gradient(160deg, #142D5F 0%, #1a3a6e 100%);
  box-shadow: 0 16px 56px rgba(20,45,95,0.35);
  position: relative;
}
.pkg-card-featured:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 32px 80px rgba(20,45,95,0.4), 0 0 0 3px #FFD700;
}

/* Featured badges */
.pkg-featured-badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 16px 18px 0;
  position: relative; z-index: 2;
}
.pkg-feat-badge {
  font-family: 'Fredoka One', cursive;
  font-size: 0.72rem; padding: 4px 12px;
  border-radius: 50px; color: #fff;
  letter-spacing: 0.5px;
}
.pfb-popular { background: #FF4500; }
.pfb-fav     { background: #FF8C00; }
.pfb-value   { background: #2ECC40; }

/* Card image */
.pkg-img-wrap {
  position: relative; height: 220px; overflow: hidden;
}
.pkg-card-featured .pkg-img-wrap { height: 200px; }
.pkg-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.1); }
.pkg-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,45,95,0.55) 0%, transparent 55%);
}
.pkg-event-type {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: #142D5F;
  font-family: 'Fredoka One', cursive;
  font-size: 0.82rem; padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  z-index: 2;
}

/* Card body */
.pkg-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem; color: #142D5F;
  margin-bottom: 10px; line-height: 1.15;
}
.pkg-card-featured .pkg-body h3 { color: #ffffff; }
.pkg-desc {
  font-size: 0.93rem; color: #555;
  line-height: 1.7; margin-bottom: 18px;
}
.pkg-card-featured .pkg-desc { color: rgba(255,255,255,0.8); }

/* Checklist */
.pkg-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 9px;
}
.pkg-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: #333; font-weight: 600;
}
.pkg-card-featured .pkg-list li { color: rgba(255,255,255,0.9); }
.pkg-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: #2ECC40; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; flex-shrink: 0;
}
.pkg-check-gold {
  background: #FFD700; color: #111;
}

/* Best for */
.pkg-best-for {
  font-size: 0.82rem; font-weight: 700;
  color: #1E90FF; background: #EBF5FF;
  padding: 8px 14px; border-radius: 10px;
  margin-bottom: 20px;
}
.pkg-best-for-light {
  color: #FFD700; background: rgba(255,215,0,0.15);
}

/* Buttons */
.pkg-btn {
  display: block; text-align: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem; padding: 13px 24px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  margin-top: auto;
}
.pkg-btn-default {
  background: #1E90FF; color: #fff;
  box-shadow: 0 4px 18px rgba(30,144,255,0.3);
}
.pkg-btn-default:hover {
  background: #FF8C00;
  box-shadow: 0 8px 28px rgba(255,140,0,0.45);
  transform: translateY(-2px);
}
.pkg-btn-featured {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,215,0,0.45);
}
.pkg-btn-featured:hover {
  background: linear-gradient(135deg, #FF8C00, #FF4500);
  box-shadow: 0 12px 36px rgba(255,140,0,0.6);
  transform: translateY(-3px);
}

@media(max-width:900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ===== TESTIMONIALS — DARK TEXT FIX ===== */
.testi-card .testi-quote,
.testi-card:not(.featured) .testi-quote { color: #1F2937 !important; }
.testi-card:not(.featured) .testi-name  { color: #1F2937 !important; font-weight: 800; }
.testi-card:not(.featured) .testi-role  { color: #4B5563 !important; }
.testi-card:not(.featured) .testi-stars { color: #FFD700; }
.testi-card.featured .testi-quote { color: rgba(255,255,255,0.97) !important; }
.testi-card.featured .testi-name  { color: #ffffff !important; }
.testi-card.featured .testi-role  { color: rgba(255,255,255,0.8) !important; }

/* ===== BLOG V2 ===== */
.blog-v2 { background: #ffffff; padding: 100px 0 0; }
.blog-v2-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.bv2-card {
  display: flex; flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(0,0,0,0.06);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.bv2-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 24px 56px rgba(30,144,255,0.18), 0 6px 20px rgba(0,0,0,0.08);
}
.bv2-img-wrap {
  position: relative; height: 220px; overflow: hidden;
}
.bv2-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.bv2-card:hover .bv2-img { transform: scale(1.1); }
.bv2-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,45,95,0.5) 0%, transparent 55%);
}
.bv2-read-time {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.92);
  color: #142D5F;
  font-size: 0.75rem; font-weight: 800;
  padding: 4px 12px; border-radius: 50px;
  backdrop-filter: blur(4px);
}
.bv2-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.bv2-cat {
  display: inline-block;
  background: #FFD700; color: #111;
  font-weight: 900; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 14px; border-radius: 50px;
  margin-bottom: 12px;
}
.bv2-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem; color: #142D5F;
  margin-bottom: 10px; line-height: 1.3;
}
.bv2-excerpt {
  font-size: 0.88rem; color: #555;
  line-height: 1.7; flex: 1; margin-bottom: 16px;
}
.bv2-cta {
  color: #FF8C00; font-weight: 800;
  font-size: 0.9rem;
  transition: color 0.2s, letter-spacing 0.2s;
}
.bv2-card:hover .bv2-cta {
  color: #FF4500; letter-spacing: 0.5px;
}
@media(max-width:860px){ .blog-v2-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .blog-v2-grid{ grid-template-columns: 1fr; } }

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  display: block; line-height: 0;
  background: #ffffff;
  margin-bottom: -2px;
}
.wave-divider svg { display: block; width: 100%; height: 90px; }

/* ===== SISTER V2 ===== */
.sister-v2 {
  background: #1E90FF;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.sister-v2::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 85% 40%, rgba(255,215,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 60%, rgba(255,69,0,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.sister-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sister-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #FFD700; font-weight: 900; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 20px;
}
.sister-headline {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: #ffffff; margin-bottom: 16px; line-height: 1.15;
}
.sister-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem; line-height: 1.8; margin-bottom: 28px;
}
.sister-highlight { color: #FFD700; }
.sister-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.sister-feat {
  display: flex; align-items: center; gap: 14px;
  color: #ffffff; font-size: 0.95rem; font-weight: 600;
}
.sister-feat-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.sister-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.sister-btn-primary {
  display: inline-block;
  background: #FF8C00; color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem; padding: 13px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(255,140,0,0.4);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.sister-btn-primary:hover {
  background: #FF4500;
  box-shadow: 0 8px 28px rgba(255,69,0,0.45);
  transform: translateY(-2px);
}
.sister-btn-outline {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem; padding: 13px 28px;
  border-radius: 50px;
  transition: background 0.25s, transform 0.25s;
}
.sister-btn-outline:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* ===== BUNDLE & SAVE GLASSMORPHISM CARD ===== */
.bundle-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 44px 36px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,215,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
}
.bundle-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.3),
    0 0 0 2px #FFD700,
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.bundle-popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #111;
  font-family: 'Fredoka One', cursive;
  font-size: 0.82rem; font-weight: 900;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(255,215,0,0.4);
}
.bundle-icon { font-size: 4rem; margin-bottom: 16px; line-height: 1; }
.bundle-title {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem; color: #FFD700;
  margin-bottom: 14px;
}
.bundle-desc {
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem; line-height: 1.8; margin-bottom: 24px;
}
.bundle-includes {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 18px 20px;
  margin-bottom: 24px;
}
.bundle-includes-label {
  color: #FFD700; font-weight: 800;
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px;
}
.bundle-includes-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem; line-height: 1.7;
}
.bundle-cta {
  display: block;
  background: #FF8C00; color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem; padding: 14px 24px;
  border-radius: 50px; text-align: center;
  box-shadow: 0 6px 22px rgba(255,140,0,0.45);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.bundle-cta:hover {
  background: #FF4500;
  box-shadow: 0 10px 32px rgba(255,69,0,0.5);
  transform: translateY(-2px);
}

@media(max-width:860px){
  .sister-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== MEGA FINAL CTA ===== */
.mega-cta {
  position: relative;
  padding: 120px 0 110px;
  overflow: hidden;
  background: linear-gradient(135deg, #FF4500 0%, #FF8C00 45%, #FFD700 100%);
}
.mega-cta-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.mcta-bal {
  position: absolute; bottom: 0;
  font-size: 3.5rem; opacity: 0.18;
  animation: mctaBalloon 8s ease-in-out infinite;
}
@keyframes mctaBalloon {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%     { transform: translateY(-60px) rotate(6deg); }
}
.mcta-dot {
  position: absolute; border-radius: 50%;
  animation: mctaDot 5s ease-in-out infinite;
}
@keyframes mctaDot {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-20px) rotate(180deg); }
}
.mcta-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.mcta-glow-l {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.12);
  top: -100px; left: -100px;
}
.mcta-glow-r {
  width: 500px; height: 500px;
  background: rgba(255,215,0,0.15);
  bottom: -150px; right: -100px;
}

/* Inner container */
.mega-cta-inner {
  max-width: 860px; margin: 0 auto; text-align: center;
}

/* Badge */
.mcta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(255,255,255,0.55);
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem; letter-spacing: 2px;
  padding: 8px 24px; border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

/* Headline */
.mcta-headline {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: #ffffff; line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.mcta-highlight {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
  text-underline-offset: 6px;
}

/* Sub */
.mcta-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.92);
  line-height: 1.8; max-width: 700px;
  margin: 0 auto 36px; 
}

/* Trust badges */
.mcta-trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 40px;
}
.mcta-trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 0.88rem; font-weight: 700;
  padding: 8px 18px; border-radius: 50px;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
.mcta-trust-badge:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* Buttons */
.mcta-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 32px;
}
.mcta-btn-primary {
  display: inline-block;
  background: #ffffff; color: #FF4500;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem; padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s;
}
.mcta-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  background: #FFD700; color: #111;
}
.mcta-btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem; padding: 16px 40px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease, box-shadow 0.3s;
}
.mcta-btn-secondary:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(255,255,255,0.28);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

/* Trust strip */
.mcta-trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: center; margin-bottom: 48px;
}
.mcta-trust-strip span {
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
  font-weight: 700;
}

/* Stats bar */
.mcta-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px; padding: 28px 40px;
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  gap: 8px;
}
.mcta-stat {
  display: flex; flex-direction: column;
  align-items: center; padding: 0 40px;
}
.mcta-stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2.6rem; color: #ffffff;
  line-height: 1; text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.mcta-stat-label {
  font-size: 0.82rem; font-weight: 800;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px;
}
.mcta-stat-div {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.3);
}

/* Closing line */
.mcta-closing {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  font-style: italic; font-weight: 600;
}

@media(max-width:640px){
  .mcta-stat { padding: 0 20px; }
  .mcta-stat-div { display: none; }
  .mcta-stats { gap: 16px; }
}

/* ===== INVENTORY PAGE — FULL REDESIGN ===== */

/* TRUST STRIP */
.inv-trust-strip {
  background: #ffffff;
  padding: 32px 0;
  box-shadow: 0 4px 24px rgba(30,144,255,0.08);
  border-bottom: 1px solid rgba(30,144,255,0.1);
}
.inv-trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.inv-trust-card {
  display: flex; align-items: center; gap: 14px;
  background: #ffffff;
  border: 1.5px solid rgba(30,144,255,0.12);
  border-radius: 16px; padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.inv-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(30,144,255,0.15);
}
.inv-trust-icon { font-size: 2rem; flex-shrink: 0; }
.inv-trust-card strong { display: block; font-size: 0.9rem; color: #142D5F; font-weight: 800; margin-bottom: 3px; }
.inv-trust-card p { font-size: 0.78rem; color: #666; margin: 0; line-height: 1.4; }

/* STICKY CATEGORY NAV */
.cat-nav {
  position: sticky; top: 70px; z-index: 90;
  background: #ffffff;
  border-bottom: 2px solid rgba(30,144,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.cat-nav-inner {
  display: flex; gap: 4px; padding: 0 8px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 20px; white-space: nowrap;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem; color: #555;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.cat-nav-link:hover { color: #FF8C00; border-bottom-color: #FF8C00; }
.cat-nav-link.active { color: #1E90FF; border-bottom-color: #1E90FF; }

/* CATALOG SECTION */
.inv-catalog {
  background: linear-gradient(180deg, #F4F9FF 0%, #ffffff 100%);
  padding: 80px 0 100px;
}

/* CATEGORY HEADER */
.inv-cat-header {
  margin: 80px 0 32px;
  padding-bottom: 20px;
  border-bottom: 3px solid #EBF5FF;
}
.inv-cat-header:first-child { margin-top: 0; }
.inv-cat-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #142D5F; margin-bottom: 8px;
}
.inv-cat-header p {
  font-size: 1rem; color: #555; line-height: 1.7; max-width: 640px;
}

/* INVENTORY GRIDS */
.inv-grid { display: grid; gap: 24px; }
.inv-grid-3 { grid-template-columns: repeat(3,1fr); }
.inv-grid-4 { grid-template-columns: repeat(4,1fr); }

/* INVENTORY CARDS */
.inv-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(30,144,255,0.09);
  border: 1.5px solid rgba(30,144,255,0.08);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.inv-card:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 20px 56px rgba(255,140,0,0.25), 0 6px 20px rgba(0,0,0,0.08);
  border-color: #FF8C00;
}

/* Wide card for orphans */
.inv-card-wide { grid-column: span 1; }

/* Card image */
.inv-img-wrap {
  position: relative; height: 220px; overflow: hidden;
}
.inv-grid-4 .inv-img-wrap { height: 190px; }
.inv-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.inv-card:hover .inv-img-wrap img { transform: scale(1.1); }
.inv-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,45,95,0.45) 0%, transparent 55%);
}

/* Badges */
.inv-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Fredoka One', cursive;
  font-size: 0.75rem; padding: 4px 12px;
  border-radius: 50px; color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2); z-index: 2;
}
.inv-badge-orange { background: #FF8C00; }
.inv-badge-red    { background: #FF4500; }
.inv-badge-yellow { background: #FF8C00; }
.inv-badge-green  { background: #2ECC40; }
.inv-badge-blue   { background: #1E90FF; }

/* Card body */
.inv-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.inv-cat-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: #FF8C00; margin-bottom: 8px;
}
.inv-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem; color: #142D5F;
  margin-bottom: 8px; line-height: 1.2;
}
.inv-grid-4 .inv-body h3 { font-size: 1.05rem; }
.inv-body p { font-size: 0.87rem; color: #555; line-height: 1.65; flex: 1; margin-bottom: 16px; }
.inv-btn {
  display: inline-block;
  background: #1E90FF; color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.88rem; padding: 10px 20px;
  border-radius: 50px; margin-top: auto;
  box-shadow: 0 3px 12px rgba(30,144,255,0.3);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  align-self: flex-start;
}
.inv-btn:hover {
  background: #FF8C00;
  box-shadow: 0 6px 22px rgba(255,140,0,0.45);
  transform: translateX(4px);
}

@media(max-width:1100px){
  .inv-trust-grid { grid-template-columns: repeat(2,1fr); }
  .inv-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:760px){
  .inv-trust-grid { grid-template-columns: 1fr; }
  .inv-grid-3, .inv-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:480px){
  .inv-grid-3, .inv-grid-4 { grid-template-columns: 1fr; }
}

/* ===== FAQ V2 — TWO-COLUMN PREMIUM ===== */
.faq-v2 {
  margin-top: 48px;
}
.faq-v2-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT column */
.faq-left { position: sticky; top: 120px; }
.faq-left-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #EBF5FF; color: #1E90FF;
  font-weight: 800; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.faq-left-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #142D5F; line-height: 1.1;
  margin-bottom: 14px;
}
.faq-left-sub {
  font-size: 0.95rem; color: #555;
  line-height: 1.75; margin-bottom: 24px;
}
.faq-trust-badges {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.faq-trust-badge {
  display: flex; align-items: center; gap: 10px;
  background: #F8FBFF;
  border: 1.5px solid rgba(30,144,255,0.12);
  border-radius: 12px; padding: 10px 14px;
  font-size: 0.87rem; font-weight: 700; color: #142D5F;
  transition: transform 0.2s, box-shadow 0.2s;
}
.faq-trust-badge:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(30,144,255,0.12);
}
.faq-trust-badge span { font-size: 1.2rem; }
.faq-contact-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF8C00, #FF4500);
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem; padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(255,140,0,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.faq-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,140,0,0.45);
}

/* RIGHT column — accordion */
.faq-right { display: flex; flex-direction: column; gap: 10px; }
.faq-v2-item {
  background: #ffffff;
  border: 1.5px solid rgba(30,144,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-v2-item:hover {
  box-shadow: 0 6px 24px rgba(30,144,255,0.12);
  border-color: rgba(30,144,255,0.25);
}
.faq-v2-item.open {
  border-color: #1E90FF;
  box-shadow: 0 8px 28px rgba(30,144,255,0.15);
}
.faq-v2-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem; font-weight: 800;
  color: #142D5F; text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.faq-v2-q:hover { color: #1E90FF; }
.faq-v2-item.open .faq-v2-q { color: #1E90FF; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: #EBF5FF; color: #1E90FF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  transition: background 0.25s, transform 0.3s, color 0.25s;
}
.faq-v2-item.open .faq-icon {
  background: #1E90FF; color: #fff;
  transform: rotate(45deg);
}
.faq-v2-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.93rem; color: #555; line-height: 1.8;
  padding: 0 22px;
}
.faq-v2-item.open .faq-v2-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

@media(max-width:860px) {
  .faq-v2-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }
}

/* ===== REMEDY REX LOGO ===== */
.nav-logo-img {
  width: 73px;
  height: 73px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.08) rotate(-3deg); }

.footer-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 14px;
  display: block;
}

/* ===== NAV LOGO TEXT ===== */
.nav-logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.55rem;
  background: linear-gradient(135deg, #FF4500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ===== CONTACT FORM — CHECKBOXES & EXTRAS ===== */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.check-opt {
  display: flex; align-items: center; gap: 10px;
  background: #F8FBFF;
  border: 1.5px solid rgba(30,144,255,0.12);
  border-radius: 12px;
  padding: 11px 14px;
  cursor: pointer;
  font-size: 0.9rem; font-weight: 600; color: #142D5F;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  user-select: none;
}
.check-opt:hover {
  background: #EBF5FF;
  border-color: #1E90FF;
  transform: translateY(-1px);
}
.check-opt input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border: 2px solid rgba(30,144,255,0.35);
  border-radius: 6px;
  background: #fff;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.check-opt input[type="checkbox"]:checked {
  background: #1E90FF;
  border-color: #1E90FF;
}
.check-opt input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  width: 5px; height: 9px;
  border: 2.5px solid #ffffff;
  border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  position: absolute;
}
.check-opt:has(input:checked) {
  background: #EBF5FF;
  border-color: #1E90FF;
  box-shadow: 0 2px 10px rgba(30,144,255,0.15);
  color: #1E90FF;
}

.sales-tax-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: #FFF8E8;
  border: 1.5px solid rgba(255,140,0,0.25);
  border-radius: 12px; padding: 12px 14px;
  width: 100%;
}
.sales-tax-note span { font-size: 1.3rem; flex-shrink: 0; }
.sales-tax-note p { font-size: 0.82rem; color: #555; line-height: 1.6; margin: 0; }
.sales-tax-note strong { color: #FF8C00; }

@media(max-width:580px) {
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* ===== NAV LOGO SUBTEXT ===== */
.nav-logo {
  display: flex !important;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

/* ===== FORM ERROR STATE ===== */
.form-error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
  color: #cc0000;
  font-weight: 700;
  display: none;
}
[data-fs-success]:not([style*="display:none"]) ~ form { display: none; }

/* ===== COMPREHENSIVE MOBILE FIXES ===== */
@media (max-width: 768px) {
  /* Hero */
  .hero-title { font-size: clamp(2rem, 8vw, 3rem) !important; white-space: normal !important; }
  .hero-title .line-1 { display: block; }
  .hero-eyebrow { font-size: 0.7rem !important; padding: 6px 14px !important; max-width: 90vw; }
  .hero-sub { font-size: 0.95rem !important; }
  .hero-inner { padding: 80px 20px 60px !important; }
  .hero-visual { display: none !important; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; text-align: center; }
  
  /* Balloons & confetti — smaller/hidden on mobile */
  .balloon { display: none; }
  .star-burst { font-size: 1rem !important; }
  .confetti-container { opacity: 0.4; }
  
  /* Stats bar */
  .stat-logo-col { grid-column: 1 / -1; display: flex !important; justify-content: center; padding: 0 0 16px; border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.08); margin-bottom: 8px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-logo { width: 180px !important; height: 180px !important; }
  .stat-num { font-size: 2rem !important; }
  
  /* Nav */
  .nav-logo-sub { font-size: 0.5rem !important; }
  .nav-logo-text { font-size: 1.2rem !important; }
  
  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .checkbox-grid { grid-template-columns: 1fr !important; }
  .form-row { flex-direction: column; }
  
  /* Services / Packages / Blog */
  .svc-grid { grid-template-columns: 1fr !important; }
  .pkg-grid { grid-template-columns: 1fr !important; }
  .hna-grid { grid-template-columns: 1fr !important; }
  .fv2-grid { grid-template-columns: 1fr !important; }
  .blog-v2-grid { grid-template-columns: 1fr !important; }
  
  /* Sister / Why Us */
  .sister-grid { grid-template-columns: 1fr !important; }
  .wv2-wrap { grid-template-columns: 1fr !important; }
  
  /* Trust badges */
  .mcta-trust-badges { flex-direction: column; align-items: center; }
  .mcta-btns { flex-direction: column; align-items: center; }
  .mcta-btns a { width: 100%; max-width: 320px; text-align: center; }
  .mcta-stats { flex-direction: column; }
  .mcta-stat-div { display: none; }
  .mcta-trust-strip { flex-direction: column; align-items: center; text-align: center; }
  
  /* Inventory trust strip */
  .inv-trust-grid { grid-template-columns: 1fr !important; }
  .cat-nav { top: 56px; }
  .cat-nav-link { font-size: 0.82rem; padding: 10px 14px; }
  
  /* Packages */
  .pkg-featured-badges { flex-wrap: wrap; gap: 4px; }
  .pkg-feat-badge { font-size: 0.65rem; padding: 3px 10px; }
  
  /* General */
  .container { padding: 0 16px !important; }
  .section-pad { padding: 60px 0 !important; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem !important; }
  .hero-eyebrow { font-size: 0.65rem !important; }
  .stat-num { font-size: 1.6rem !important; }
  .stat-label { font-size: 0.72rem !important; }
  .inv-grid-4 { grid-template-columns: 1fr !important; }
  .inv-grid-3 { grid-template-columns: 1fr !important; }
  .mcta-headline { font-size: 2rem !important; }
  .hna-title { font-size: 2rem !important; }
}
