.elementor-1015 .elementor-element.elementor-element-d0828d2{--display:flex;}.elementor-1015 .elementor-element.elementor-element-d0828d2.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1015 .elementor-element.elementor-element-97f1933{width:100%;max-width:100%;}.elementor-1015 .elementor-element.elementor-element-97f1933 > .elementor-widget-container{margin:0px 0px 0px -16px;}.elementor-1015 .elementor-element.elementor-element-08e4ac0 > .elementor-widget-container{margin:89px 0px 0px 0px;}.elementor-1015 .elementor-element.elementor-element-4669f1b > .elementor-widget-container{margin:-62px 0px 0px 0px;}@media(max-width:767px){.elementor-1015 .elementor-element.elementor-element-97f1933 > .elementor-widget-container{margin:18px 0px 0px -14px;}}@media(max-width:1200px) and (min-width:768px){.elementor-1015 .elementor-element.elementor-element-d0828d2{--width:947px;}}/* Start custom CSS for html, class: .elementor-element-97f1933 */body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fdf4ff, #ffeafd);
  padding-top: 130px;
}

/* HEADER */
.iptv-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #fef6ff, #f7e8ff);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  z-index: 9999;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  gap: 20px;
}

.logo img {
  height: 60px;
}

/* MENU */
.menu-box {
  background: white;
  padding: 14px 28px;
  border-radius: 20px;
  border: 2px solid #f3deff;
  box-shadow: 0 6px 20px rgba(150, 0, 255, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a,
.dropbtn {
  background: transparent;
  padding: 10px 16px;
  border-radius: 12px;
  color: #300050;
  font-weight: 500;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.nav-links a:hover,
.dropbtn:hover {
  background: #f5e6ff;
  color: #8000d2;
}

.contact-btn {
  background: linear-gradient(to right, #a100ff, #6a00ff);
  color: #fff;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(150, 0, 255, 0.4);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(to right, #7c00db, #5000b3);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #dfc2ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  min-width: 180px;
  z-index: 1000;
}

.dropdown-content.open {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: #4a007f;
  text-decoration: none !important;
  transition: background 0.3s;
  cursor: pointer;
}

.dropdown-content a:hover {
  background: #f5e6ff;
  color: #8000d2;
}

/* MOBILE TOGGLE */
.vip-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 26px;
  width: 38px;
  background: linear-gradient(to right, #fff, #f7e9ff);
  border: 2px solid #d69cff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 0 14px rgba(160, 0, 255, 0.3);
  cursor: pointer;
}

.vip-toggle span {
  height: 3px;
  background: #8000d2;
  border-radius: 4px;
  transition: all 0.3s;
}

/* MOBILE */
@media screen and (max-width: 768px) {
  .header-row {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .vip-toggle {
    display: flex;
    order: 2;
  }

  .logo {
    order: 1;
  }

  .menu-box {
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
    display: none;
  }

  .menu-box.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }

  .nav-links a,
  .dropbtn,
  .contact-btn {
    width: 100%;
    justify-content: flex-start;
  }
}

/* VIP GLOW */
.glow {
  box-shadow: 0 0 25px 8px rgba(175, 0, 255, 0.6),
              0 0 45px 16px rgba(210, 0, 255, 0.4);
  border: 2px solid #d000ff;
  border-radius: 20px;
  position: relative;
  z-index: 5;
  transition: all 0.4s ease-in-out;
}

/* VIP CONTACT POPUP */
.vip-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.vip-popup {
  background: linear-gradient(to bottom right, #fff5ff, #f9ecff);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(150, 0, 255, 0.3);
  width: 100%;
  max-width: 480px;
  position: relative;
}

.vip-popup h2 {
  margin-top: 0;
  text-align: center;
  color: #7000a8;
  font-weight: 600;
}

.vip-popup input,
.vip-popup textarea {
  width: 100%;
  padding: 12px 16px;
  margin: 12px 0;
  border-radius: 10px;
  border: 1px solid #d6b3ff;
  background: #faf8ff;
  font-family: 'Poppins', sans-serif;
}

.vip-popup button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #ff6bce, #a000ff);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(150, 0, 255, 0.4);
  cursor: pointer;
  transition: 0.3s ease;
}

.vip-popup button:hover {
  background: linear-gradient(to right, #a000ff, #7000ff);
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  color: #8000d2;
  cursor: pointer;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-08e4ac0 *//* ===== VIP Loyal Customer Section ===== */
.vip-loyal-box {
  text-align: center;
  background: linear-gradient(135deg, #0b0b0f, #101828, #0b0b0f);
  color: #fff;
  padding: 50px 25px;
  margin: 30px auto 50px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 123, 255, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
  max-width: 850px;
  animation: fadeIn 1.2s ease;
}

.vip-loyal-box h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #00aaff;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(0, 170, 255, 0.9);
}

.vip-loyal-box p {
  font-size: 1.15rem;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 650px;
  margin: auto;
}

.vip-discount-box {
  margin-top: 25px;
  padding: 25px;
  background: linear-gradient(145deg, #141414, #1f1f2e);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.25);
}

.vip-discount-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.vip-code {
  font-size: 1.4rem;
  color: #00ffaa;
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.8);
}

.highlight {
  color: #00ffaa;
  font-weight: 700;
}

.vip-expire {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #ff6b6b;
}

/* Smooth fade in */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.vip-benefits {
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(145deg, #0f0f0f, #1a1a2a);
  border-radius: 12px;
  border: 1px solid rgba(0, 170, 255, 0.3);
  max-width: 700px;
  text-align: left;
  color: #eaeaea;
  font-size: 1.05rem;
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.25);
}

.vip-benefits p {
  margin: 10px 0;
  font-weight: 500;
}

.vip-benefits strong {
  color: #00ffaa;
  text-shadow: 0 0 6px rgba(0, 255, 170, 0.6);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4669f1b */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700&display=swap');

body {
  background: #111;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Pricing Grid */
.iptv-pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 40px 20px;
  max-width: 1300px;
  margin: auto;
}

/* Plan Card */
.iptv-plan {
  background: #1c1c1c;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(166, 103, 247, 0.12);
  min-height: 520px;
  transition: all 0.3s ease;
}

.iptv-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(166, 103, 247, 0.25);
}

.plan-header {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Price */
.plan-price {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.plan-price s {
  font-size: 16px;
  color: #bbb;
  margin-right: 8px;
  opacity: 0.6;
}

.plan-price span {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(90deg, #f7b733, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features */
.plan-features li {
  text-align: left;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.plan-features li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(1.2);
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  margin-top: 10px;
  background: #000;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none !important;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

/* VIP Buy Button for Special Plan */
.buy-btn.vip-glow {
  background: linear-gradient(to right, #ff4a00, #f7b733);
  color: #000;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.buy-btn.vip-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 94, 0, 0.5);
}

.badge-best {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ff4a00, #fc4a1a);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  line-height: 1.4;
  white-space: nowrap;
}

/* ✨ Highlighted Box Animation */
.best-selling {
  border: 2px solid #fc4a1a;
  animation: pulseGlow 2.5s infinite ease-in-out;
  z-index: 3;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 18px rgba(252, 74, 26, 0.3); }
  50% { box-shadow: 0 0 30px rgba(252, 74, 26, 0.5); }
  100% { box-shadow: 0 0 18px rgba(252, 74, 26, 0.3); }
}

/* Responsive */
@media (max-width: 1200px) {
  .iptv-pricing-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .iptv-pricing-container { grid-template-columns: 1fr; }
  .iptv-plan { min-height: auto; }
}

/* ✅ PAYMENT POPUP DESIGN */
#checkoutPopupOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
}

#checkoutPopupOverlay .checkout-wrapper {
  background: #fff;
  border-radius: 16px;
  width: 480px;
  max-width: 95%;
  margin: 0 auto;
  padding: 30px;
  color: #000;
  position: relative;
  font-family: 'Outfit', sans-serif;
}

#checkoutPopupOverlay h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

#checkoutPopupOverlay input[type="text"],
#checkoutPopupOverlay input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
  font-size: 15px;
}

#checkoutPopupOverlay button {
  border: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
}

#continueBtn {
  background: linear-gradient(to right, #ff8008, #ffc837);
  color: #000;
  width: 100%;
  padding: 14px;
}

#closeCheckoutPopup {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

#price {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 20px;
}

.payment-select-btn {
  margin: 10px;
  background: #fff;
  border: 2px solid #ccc;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}
.payment-select-btn.active {
  border-color: #0070ba;
  box-shadow: 0 0 6px #0070ba66;
}
/* ✅ ORGANIZED Payment Buttons Container */
#paymentButtons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px auto;
  max-width: 600px;
  padding: 0 20px;
  justify-content: center;
}


/* ✅ Individual Payment Button Style */
.payment-select-btn {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 16px;
  padding: 12px 20px;
  min-width: 110px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-select-btn img {
  height: 34px;
  width: auto;
  display: inline-block;
}

.payment-select-btn:hover {
  box-shadow: 0 0 12px rgba(255, 128, 0, 0.3);
  border-color: #ff8000;
}

/* ✅ Active (Selected) Payment Method */
.payment-select-btn.selected {
  border-color: #a879ff !important;
  background: linear-gradient(to bottom right, #f7f3ff, #fefaff);
  box-shadow: 0 6px 20px rgba(168, 121, 255, 0.3);
  transform: scale(1.05);
}

.payment-option {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 140px;
}

.payment-label {
  font-size: 15px;
  font-weight: 600;
  color: #2c1154;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  margin-top: 10px;
}

.payment-select-btn {
  background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(150, 120, 255, 0.08);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-select-btn img {
  height: 36px;
  max-width: 90px;
  object-fit: contain;
}

.payment-select-btn:hover {
  transform: scale(1.05);
  border-color: #c7a0ff;
  box-shadow: 0 6px 20px rgba(180, 120, 255, 0.3);
}

.payment-select-btn.selected {
  border-color: #a879ff;
  background: linear-gradient(to bottom right, #f6f2ff, #fbf6ff);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
  transform: scale(1.05);
}
@media (max-width: 480px) {
  #checkoutPopupOverlay .checkout-wrapper {
    width: 90%;
    padding: 20px 16px;
  }

  #paymentButtons {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    margin-top: 20px;
  }

  .payment-option {
    width: 100%;
  }

  .payment-select-btn {
    min-width: 100%;
    min-height: 60px;
    font-size: 14px;
    padding: 12px;
  }

  .payment-select-btn img {
    height: 30px;
    max-width: 80px;
  }

  .payment-label {
    font-size: 13px;
    margin-top: 6px;
  }
}
#decline-notice {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

#decline-notice.show {
  opacity: 1;
  pointer-events: auto;
}
/* ---------- VIP Coupon Box ---------- */
:root{
  --vip-bg: #fff;
  --vip-text: #111;
  --vip-sub: #666;
  --vip-ring: rgba(255, 193, 111, .35);
  --vip-border1: #ffd9a8;
  --vip-border2: #ffb24d;
  --vip-accent: #ff7b00;
}

.vip-coupon-box{
  background: linear-gradient(180deg, #fffdf8, #ffffff);
  border-radius: 18px;
  padding: 16px;
  position: relative;
  color: var(--vip-text);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  border: 1.5px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image:
    linear-gradient(180deg, #fffdf8, #ffffff),
    linear-gradient(120deg, var(--vip-border1), var(--vip-border2));
}

.vip-coupon-head{
  display:flex; align-items:center; gap:10px; margin-bottom:10px;
}
.vip-coupon-head h4{
  margin:0; font-size:15px; font-weight:800; letter-spacing:.2px;
}
.vip-tag{
  width:18px; height:18px; fill:var(--vip-accent);
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.05));
}
.vip-chip{
  margin-left:auto;
  font-size:11px; padding:4px 8px; border-radius:999px;
  background:linear-gradient(180deg,#fff2e0,#ffe8c4);
  border:1px solid #ffd9a8; color:#9a5b00; font-weight:700;
}

.vip-coupon-row{
  margin-top:6px; display:flex; align-items:center; gap:10px;
  border:2px solid #ffe1b8; border-radius:14px; padding:10px 12px;
  background:#fffaf5; transition: box-shadow .2s, border-color .2s, transform .08s;
}
.vip-coupon-row:focus-within{
  border-color:#ffc56e;
  box-shadow: 0 8px 24px rgba(255,163,57,.18), 0 0 0 5px var(--vip-ring);
  transform: translateY(-1px);
}

.vip-icon{
  width:28px; height:28px; display:grid; place-items:center;
  background: linear-gradient(180deg,#ffa52e,#ff7b00);
  color:#fff; border-radius:10px; font-weight:900; font-size:14px;
  letter-spacing:.5px;
}

#coupon{
  flex:1; border:none; outline:none; background:transparent;
  font-size:15px; color:var(--vip-text); padding:8px 2px;
}
#coupon::placeholder{ color:#a1a1aa; }

.vip-apply{
  border:none; cursor:pointer; font-weight:800; font-size:13px;
  padding:10px 14px; border-radius:12px;
  background: linear-gradient(90deg,#ffb24d,#ffd089);
  box-shadow: 0 4px 14px rgba(255,170,60,.25);
  color:#3a2500; transition: transform .08s ease, box-shadow .2s;
}
.vip-apply:hover{ box-shadow: 0 6px 18px rgba(255,170,60,.3) }
.vip-apply:active{ transform: translateY(1px) }

.vip-coupon-note{
  margin-top:8px; font-size:13px; min-height:18px;
}
.vip-coupon-note.ok{ color:#0a7f2e; font-weight:700 }
.vip-coupon-note.err{ color:#c21a1a; font-weight:700 }
.vip-coupon-hint{
  margin-top:2px; font-size:12px; color:var(--vip-sub);
}

/* Subtle animated border glow on hover */
.vip-coupon-box:hover{
  animation: vipGlow 4s ease-in-out infinite;
}
@keyframes vipGlow{
  0%{ box-shadow:0 8px 28px rgba(0,0,0,.06) }
  50%{ box-shadow:0 14px 36px rgba(255,170,60,.16) }
  100%{ box-shadow:0 8px 28px rgba(0,0,0,.06) }
}

/* Dark mode (if body gets a .dark class) */
.dark{
  --vip-bg:#111318; --vip-text:#f5f6f8; --vip-sub:#9aa0a6;
}
.dark .vip-coupon-box{
  background-image:
    linear-gradient(180deg, #151821, #10131a),
    linear-gradient(120deg, #6b4b1f, #a06d1c);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.dark .vip-chip{
  background:linear-gradient(180deg,#36260f,#2a1e0c);
  border-color:#b1833e; color:#ffdba3;
}
.dark .vip-coupon-row{ background:#161922; border-color:#b1833e }
.dark #coupon::placeholder{ color:#7b8190 }
.dark .vip-apply{ color:#1b1100 }
.vip-coupon-section {
  max-width: 340px;
  margin: 20px auto 30px;
  text-align: center;
}

.vip-coupon-section label {
  font-weight: 700;
  color: #4d007a;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.vip-coupon-wrapper {
  display: flex;
  background: #fdf5ff;
  border: 2px dashed #d8b6ff;
  border-radius: 50px;
  overflow: hidden;
  align-items: center;
}

.vip-coupon-wrapper input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  background: transparent;
  color: #440066;
}

.vip-coupon-wrapper input:focus {
  outline: none;
}

.vip-coupon-wrapper button {
  background: linear-gradient(90deg, #ff6600, #ff3c94);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: background 0.3s ease;
}

.vip-coupon-wrapper button:hover {
  background: linear-gradient(90deg, #ff3c94, #ff6600);
}

#vipDiscountMessage {
  margin-top: 8px;
  font-size: 13px;
  font-weight: bold;
  color: #28a745;
}
 *//* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ead0428 *//* ======================================
   GoodIPTV Elegant Footer CSS
====================================== */

/* === Footer Base === */
.custom-footer {
  background: #fdfdfd;
  color: #1e1e1e;
  font-family: 'Poppins', sans-serif;
  padding: 60px 30px 30px;
  position: relative;
  overflow: hidden;
}

/* === Layout Grid === */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* === About Column with Rocket === */
.footer-about {
  flex: 1.2;
  min-width: 260px;
}
.footer-about img {
  width: 160px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.footer-about p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* === Footer Columns === */
.footer-column {
  flex: 1;
  min-width: 160px;
}
.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin: 8px 0;
}
.footer-column ul li a {
  font-size: 14px;
  color: #88304E;
  text-decoration: none !important; /* ✅ Completely removes underline */
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #a667f7;
  text-decoration: none !important; /* ✅ Prevents underline on hover */
}

/* === Footer Bottom === */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

/* === Triangle Dark Mode Toggle === */
.footer-dark-toggle {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.footer-dark-toggle button {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 28px solid #D4AF37;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-dark-toggle button:hover {
  border-top-color: #B89549;
  transform: scale(1.1);
}

/* === Rocket Flame Animation === */
.rocket-wrapper {
  position: relative;
  display: inline-block;
}
.rocket-wrapper .flame,
.rocket-wrapper .flame.small {
  position: absolute;
  left: -25px;
  top: 40%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, orange 20%, red 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  animation: fire-flicker 0.2s infinite alternate;
  z-index: 0;
  filter: blur(1px);
}
.rocket-wrapper .flame.small {
  top: 48%;
  left: -20px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, yellow 30%, red 60%, transparent 80%);
  animation: fire-flicker-small 0.18s infinite alternate;
}

@keyframes fire-flicker {
  0% { transform: scale(1) translateY(0); opacity: 0.9; }
  100% { transform: scale(1.4) translateY(3px); opacity: 0.6; }
}
@keyframes fire-flicker-small {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  100% { transform: scale(1.3) translateY(2px); opacity: 0.5; }
}

/* === Dark Mode === */
body.dark-mode .custom-footer {
  background: #1c1c1c;
  color: #e0e0e0;
}
body.dark-mode .footer-about p,
body.dark-mode .footer-column ul li a,
body.dark-mode .footer-bottom {
  color: #ccc;
}
body.dark-mode .footer-column ul li a:hover {
  color: #FFCE7B;
}
body.dark-mode .footer-dark-toggle button {
  border-top-color: #FFCE7B;
}
body.dark-mode .footer-dark-toggle button:hover {
  border-top-color: #FFC04D;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column,
  .footer-about {
    width: 100%;
    margin-bottom: 30px;
  }
}/* End custom CSS */