:root {
  --primary: #F5793A;
  --primary-dark: #E05C1A;
  --primary-light: #FF8F5A;
  --secondary: #2B3E50;
  --secondary-dark: #1A252F;
  --accent: #FFC107;
  --bg-main: #F9FBFC;
  --bg-white: #FFFFFF;
  --bg-soft: #F1F4F6;
  --text-main: #334155;
  --text-muted: #64748B;
  --text-dark: #0F172A;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 8px;
  --font-family: 'Outfit', sans-serif;
}

/* BASE STYLES */
body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-main);
  overflow-x: hidden;
  background-image: radial-gradient(#E2E8F0 0.5px, transparent 0.5px);
  background-size: 20px 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
}

.bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%232B3E50' fill-opacity='0.05' d='M1 3h1v1H1V3zm2-2h1v1H2V1z'%3E%3C/path%3E%3C/svg%3E");
}

/* BUTTONS */
.btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 121, 58, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(43, 62, 80, 0.3);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

/* NAVBAR */
.navbar {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

/* Navbar Logo */
.navbar-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
  height: 44px;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.04);
}

/* Global Coupon Section */
.coupon-section-global {
  background: linear-gradient(135deg, #fff8f4 0%, #fff3ec 100%);
  border-top: 1px solid rgba(245, 121, 58, 0.15);
  border-bottom: 1px solid rgba(245, 121, 58, 0.15);
}

.coupon-img-global {
  display: block;
  cursor: pointer;
  border: 2px solid rgba(245, 121, 58, 0.2);
  transition: all 0.35s ease;
  object-fit: contain;
}

.coupon-img-global:hover {
  transform: scale(1.025);
  box-shadow: 0 20px 60px rgba(245, 121, 58, 0.2);
  border-color: rgba(245, 121, 58, 0.5);
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 10px 15px !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px;
}

.dropdown-item {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--bg-soft);
  color: var(--primary);
  transform: translateX(5px);
}

/* HERO SECTION — REDESIGNED */
.hero-section {
  padding: 140px 0 60px;
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E2E42 50%, #162030 100%);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container {
  position: relative;
  z-index: 4;
}

/* Animated Background Shapes */
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  animation: hero-float 8s ease-in-out infinite;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F5793A, transparent 70%);
  top: -10%;
  right: -12%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #2B3E50, transparent 70%);
  bottom: 5%;
  left: -8%;
  opacity: 0.35;
  animation-delay: -3s;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #FFC107, transparent 70%);
  top: 30%;
  left: 38%;
  opacity: 0.10;
  animation-delay: -6s;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Emergency Pill */
.hero-emergency-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #FCA5A5;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: #EF4444;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(239, 68, 68, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0   rgba(239, 68, 68, 0); }
}

/* Hero Title */
.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 22px;
  color: #F1F5F9;
  letter-spacing: -1px;
}

.hero-highlight {
  background: linear-gradient(90deg, #F5793A, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94A3B8;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 520px;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #F5793A, #E05C1A);
  color: white;
  border: none;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(245, 121, 58, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245, 121, 58, 0.55);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.07);
  color: #F1F5F9;
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  transform: translateY(-3px);
}

/* Trust Chips Row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.trust-chip i {
  color: #F5793A;
  font-size: 0.85rem;
}

.trust-chip:hover {
  background: rgba(245, 121, 58, 0.15);
  border-color: rgba(245, 121, 58, 0.4);
  color: #FFF;
  transform: translateY(-2px);
}

/* Hero Image Wrapper */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

/* Main Image Frame */
.hero-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 520px;
  transition: transform 0.6s ease;
}

.hero-img-frame:hover .hero-img {
  transform: scale(1.03);
}

.hero-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F5793A, #FFC107);
}

/* Floating Stat Cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  z-index: 10;
  font-size: 0.85rem;
  min-width: 160px;
  animation: hero-card-bob 4s ease-in-out infinite;
}

.hero-float-card i {
  font-size: 1.5rem;
}

.hero-float-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero-float-card strong {
  font-size: 1rem;
  color: #0F172A;
}

.hero-float-card span {
  font-size: 0.75rem;
  color: #64748B;
}

.hero-float-top-left {
  top: -22px;
  left: -20px;
  animation-delay: 0s;
}

.hero-float-bottom-right {
  bottom: -20px;
  right: -16px;
  animation-delay: -2s;
}

@keyframes hero-card-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Review Badge */
.hero-review-badge {
  position: absolute;
  bottom: 50px;
  left: -30px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(245, 121, 58, 0.35);
  border-radius: 14px;
  padding: 14px 18px;
  max-width: 220px;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: hero-card-bob 5s ease-in-out infinite;
  animation-delay: -1s;
}

.review-stars {
  color: #FFC107;
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.hero-review-badge p {
  color: #E2E8F0;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 4px;
  font-style: italic;
}

.hero-review-badge small {
  color: #64748B;
  font-size: 0.7rem;
}

/* Bottom Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* Legacy badge-power (for other sections) */
.badge-power {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(245, 121, 58, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* hero-content z-index fix */
.hero-content {
  position: relative;
  z-index: 4;
}

/* BADGES */
.badge-urgent {
  background-color: #EF4444;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* CARDS */
.feature-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: white;
}

/* BEFORE & AFTER */
.comparison-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.comparison-img {
  width: 100%;
  display: block;
}

.comparison-label {
  position: absolute;
  bottom: 20px;
  padding: 5px 15px;
  background: rgba(0,0,0,0.6);
  color: white;
  font-weight: 700;
  border-radius: 4px;
}

.label-before { left: 20px; }
.label-after { right: 20px; }

/* STATISTICS */
.stats-section {
  background-color: var(--secondary);
  color: white;
  padding: 80px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.8;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 121, 58, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(2) { grid-row: span 2; }

/* TESTIMONIALS */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 15px;
}

.stars {
  color: var(--accent);
  margin-bottom: 15px;
}

/* COUPON */
.coupon-box {
  border: 3px dashed var(--primary);
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  cursor: pointer;
}

.coupon-box:hover {
  transform: rotate(1deg) scale(1.02);
}

/* FOOTER */
.footer {
  background-color: var(--secondary-dark);
  color: #CBD5E1;
  padding: 80px 0 20px;
}

.footer h5 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* ANIMATIONS */
[data-anime] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-anime="fade-up"] {
  transform: translateY(30px);
}

[data-anime="fade-in"].active {
  opacity: 1;
}

[data-anime="fade-up"].active {
  opacity: 1;
  transform: translateY(0);
}

[data-anime="fade-right"] {
  transform: translateX(-30px);
}
[data-anime="fade-right"].active {
  opacity: 1;
  transform: translateX(0);
}

[data-anime="fade-left"] {
  transform: translateX(30px);
}
[data-anime="fade-left"].active {
  opacity: 1;
  transform: translateX(0);
}

/* IFRAME FORM */
.form-iframe-container {
  background: white;
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-iframe {
  width: 100%;
  border: none;
  height: 650px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-float-top-left { left: -10px; }
  .hero-review-badge   { left: -10px; }
}

@media (max-width: 991px) {
  .hero-title { font-size: 2.6rem; }
  .hero-section { padding-top: 120px; min-height: auto; }
  .hero-float-top-left,
  .hero-float-bottom-right { display: none; }
  .hero-review-badge { position: static; margin-top: 16px; max-width: 100%; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 250px);
  }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .btn-hero-primary,
  .btn-hero-secondary { padding: 13px 22px; font-size: 0.9rem; }
  .hero-cta-group { gap: 10px; }
  .hero-trust-row { gap: 8px; }
  .trust-chip { font-size: 0.75rem; padding: 6px 10px; }
  .gallery-grid {
    display: block;
  }
  .gallery-item {
    margin-bottom: 15px;
    height: 300px;
  }
}

/* ─────────────────────────────────────────────────
   🎟️ PREMIUM IN-CONTENT COUPON SECTION
───────────────────────────────────────────────── */
.premium-coupon-section {
  background-color: #0F172A;
  overflow: hidden;
  margin-top: 2rem;
}

.premium-coupon-glass {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.coupon-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.coupon-img-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(245, 121, 58, 0.3);
}

.coupon-3d-img {
  width: 100%;
  transition: transform 0.5s ease;
}

.coupon-img-wrapper:hover .coupon-3d-img {
  transform: scale(1.03);
}

.coupon-overlay-icon {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
}

.coupon-overlay-icon i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #F5793A;
}

.coupon-img-wrapper:hover .coupon-overlay-icon {
  opacity: 1;
}

.coupon-bg-shape-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 121, 58, 0.15), transparent 70%);
  pointer-events: none;
}

.coupon-bg-shape-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(28, 153, 237, 0.1), transparent 70%);
  pointer-events: none;
}

@media (max-width: 991px) {
  .coupon-img-wrapper {
    transform: none;
    margin-top: 20px;
  }
}

