.deal-main-wrapper *{
    margin: 0;
}
/* ===========================
   Google Fonts — InterTight
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  /* Brand */
  --red: #D90429;
  --red-dark: #A80320;
  --blue: #0A1F44;
  --blue-mid: #00509D;
  --navy: #071024;
  --gold: #FFB800;
  --gold-light: #FFD666;
  --emerald: #10B981;
  --teal: #0EA5E9;

  /* Surfaces */
  --white: #FFFFFF;
  --bg: #F5F7FB;
  --card: #FFFFFF;
  --border: #E4E9F2;
  --border-light: rgba(228, 233, 242, 0.5);

  /* Text */
  --text: #0A1628;
  --text-2: #3D4B63;
  --text-3: #7A869A;
  --text-inv: #FFFFFF;

  /* Effects */
  --shadow-xs: 0 1px 3px rgba(10, 22, 40, 0.04);
  --shadow-sm: 0 4px 12px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 32px 80px rgba(10, 22, 40, 0.18);
  --glow-red: 0 8px 32px rgba(217, 4, 41, 0.25);
  --glow-blue: 0 8px 32px rgba(0, 80, 157, 0.2);
  --glow-gold: 0 8px 32px rgba(255, 184, 0, 0.2);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 9999px;

  /* Transition */
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   Reset & Base
   =========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
html body.page-template-deal-template{
	 font-family: 'Inter Tight', system-ui, -apple-system, sans-serif !important;
  overflow-x: hidden;
}
body.page-template-deal-template  {
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,p,h2{
	font-family: 'Inter Tight', system-ui, -apple-system, sans-serif !important;
}
p{
	font-weight:400 !important;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===========================
   Layout
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.search-widget-engine{
	padding: 40px 0px 0px;
}
.search-widget-wrapper{
	padding: 15px 10px 20px 10px !important
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}

.eyebrow-red {
  background: rgba(217, 4, 41, 0.08);
  color: var(--red);
}

.eyebrow-blue {
  background: rgba(0, 80, 157, 0.08);
  color: var(--blue-mid);
}

.eyebrow-gold {
  background: rgba(255, 184, 0, 0.1);
  color: #B88600;
}

.section-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  margin-top: 10px;
  line-height: 1.7;
}

/* ===========================
   HERO — Banner Background
   =========================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  background-color: #0A1628;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
	background:#000a2a;
/*   background: linear-gradient(to bottom,
      rgba(7, 16, 36, 0.3) 0%,
      rgba(7, 16, 36, 0.15) 30%,
      rgba(7, 16, 36, 0.5) 70%,
      rgba(7, 16, 36, 0.92) 100%); */
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: end;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.25);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
  animation: pulse-soft 2.5s ease-in-out infinite;
}

@keyframes pulse-soft {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-title .gold {
  background: linear-gradient(135deg, var(--gold), #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 484px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-savings-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.save-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.save-amount {
  font-size: clamp(44px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--gold), #FFA726);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.save-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-right: 4px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 184, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--ease);
}

.promo-box:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
}

.promo-box-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
}

.promo-box-code {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 4px;
  line-height: 1;
}

.promo-box-copy {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--ease);
}

.promo-box:hover .promo-box-copy {
  color: var(--gold);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: var(--r-full);
  transition: var(--ease);
  box-shadow: var(--glow-red);
  letter-spacing: 0.3px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(217, 4, 41, 0.4);
  background: var(--red-dark);
}

/* Hero sidebar card */
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-lg);
  padding: 28px;
  color: var(--white);
}

.hero-card-promo {
  text-align: center;
  margin-bottom: 20px;
}

.hero-card-promo-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.hero-card-promo-code {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 5px;
  color: var(--gold);
}

.hero-card-promo-save {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.hero-card-promo-save strong {
  color: var(--gold-light);
  font-size: 20px;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 18px 0;
}

.hero-card-payment-title {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  text-align: center;
}

.hero-card-payments {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  transition: var(--ease);
}

.payment-chip:hover {
  background: rgba(255, 255, 255, 0.18);
}

.payment-chip img {
  height: 18px;
  width: auto;
}

.payment-chip .chip-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.chip-tabby {
  background: #3FFFBE;
  color: #000;
}

.chip-tamara {
  background: #F5A623;
  color: #FFF;
}

.chip-card {
  background: #667eea;
  color: #FFF;
}

/* Logo images in chips */
.chip-logo {
  height: 20px;
  width: auto;
  border-radius: 3px;
}

/* Logo images in payment options */
.po-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

/* Logo images in payment cards */
.pay-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.btn-hero-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--r-md);
  transition: var(--ease);
  box-shadow: var(--glow-red);
}

.btn-hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217, 4, 41, 0.4);
}

.hero-card-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--r-sm);
  margin-top: 10px;
  transition: var(--ease);
}

.hero-card-copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-card-copy-btn.copied {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  color: #6EE7B7;
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}

.trust-item i {
  font-size: 18px;
  color: var(--blue-mid);
}

.trust-item .check {
  color: var(--emerald);
}

/* ===========================
   DEAL DETAILS
   =========================== */
.deal-section {
  padding: 40px 0 80px;
}

.deal-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}

/* Main Card */
.deal-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.deal-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 80, 157, 0.03), rgba(217, 4, 41, 0.02));
}

.deal-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red), #FF4D6A);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--white);
  box-shadow: var(--glow-red);
  flex-shrink: 0;
}

.deal-card-header-text h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.deal-card-header-text p {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 2px;
}

.deal-card-body {
  padding: 32px;
}
.deal-desc{
	 margin-bottom: 28px;
}
.deal-desc p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
	font-weight: 400;
}

.deal-desc strong {
  color: var(--text);
  font-weight: 700;
}

/* Discount Table */
.table-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.table-label i {
  color: var(--red);
}

.table-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.dtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.dtable thead {
  background: var(--blue);
  color: var(--white);
}

.dtable thead th {
  padding: 15px 20px;
  font-weight: 700;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.dtable tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}

.dtable tbody tr:last-child {
  border-bottom: none;
}

.dtable tbody tr:hover {
  background: rgba(0, 80, 157, 0.03);
}

.dtable tbody td {
  padding: 15px 20px;
  color: var(--text);
}

.dtable tbody td.discount-val {
  font-weight: 800;
  color: var(--red);
  font-size: 15px;
}

.dtable tbody tr:nth-child(even) {
  background: var(--bg);
}

.dtable tbody tr:nth-child(even):hover {
  background: rgba(0, 80, 157, 0.05);
}

.deal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 80, 157, 0.04);
  padding: 16px 20px;
  border-radius: var(--r-sm);
  border-left: 4px solid var(--blue-mid);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.deal-note i {
  color: var(--blue-mid);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===========================
   SIDEBAR
   =========================== */
.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Promo Sidebar */
.sidebar-promo {
  background: linear-gradient(160deg, var(--navy), #162A50, var(--blue-mid));
  border: none;
  color: var(--white);
  padding: 28px;
  text-align: center;
}

.sidebar-promo-badge {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.sidebar-promo-code {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 4px;
}

.sidebar-promo-save {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.sidebar-promo-save strong {
  color: var(--gold-light);
  font-size: 22px;
}

.sidebar-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: var(--r-sm);
  transition: var(--ease);
}

.sidebar-copy-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar-copy-btn.copied {
  background: rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.5);
  color: #6EE7B7;
}

.sidebar-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--r-md);
  margin-top: 14px;
  transition: var(--ease);
  box-shadow: var(--glow-red);
}

.sidebar-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217, 4, 41, 0.4);
}

/* Payment Sidebar */
.sidebar-payment {
  padding: 24px;
}

.sidebar-payment-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-payment-title i {
  color: var(--blue-mid);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: var(--ease);
  cursor: default;
}

.payment-option:last-child {
  margin-bottom: 0;
}

.payment-option:hover {
  border-color: var(--blue-mid);
  background: rgba(0, 80, 157, 0.02);
  transform: translateX(4px);
}

.payment-option-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.po-tabby {
  background: #E8FFF5;
  color: #00D67E;
}

.po-tamara {
  background: #FFF3E0;
  color: #F5A623;
}

.po-emi {
  background: #EDE7F6;
  color: #7C4DFF;
}

.payment-option-text {
  flex: 1;
}

.payment-option-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.payment-option-text span {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

.payment-option-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-green {
  background: #D1FAE5;
  color: #059669;
}

.badge-amber {
  background: #FEF3C7;
  color: #B45309;
}

.badge-purple {
  background: #EDE9FE;
  color: #7C3AED;
}

/* App Sidebar */
.sidebar-app {
  padding: 22px;
  text-align: center;
}

.sidebar-app p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 14px;
  font-weight: 500;
}

.app-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.app-btn-img {
  display: block;
  transition: var(--ease);
  border-radius: 8px; /* Match standard badge radius */
  overflow: hidden;
}

.app-btn-img:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.app-btn-img img {
  height: 44px; /* Adjust based on common badge heights */
  width: auto;
  display: block;
}

/* ===========================
   PAYMENT OPTIONS SECTION
   =========================== */
.payment-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.payment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3FFFBE, #F5A623, #667eea, var(--red));
}

.payment-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.payment-section .section-sub {
  margin: 10px auto 0;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pay-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.pay-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: var(--ease);
}

.pay-card:nth-child(1)::before {
  background: #00D67E;
}

.pay-card:nth-child(2)::before {
  background: #F5A623;
}

.pay-card:nth-child(3)::before {
  background: #667eea;
}

.pay-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pay-card-icon {
  width: 100px;
  height: 72px;
  border-radius: var(--r-md);
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 30px;
}

.pci-tabby {
  /* background: linear-gradient(135deg, #E8FFF5, #C6F7E2); */
  /* color: #00D67E; */
}

.pci-tamara {
  /* background: linear-gradient(135deg, #FFF3E0, #FFE0B2); */
  /* color: #F5A623; */
}

.pci-emi {
  background: linear-gradient(135deg, #EDE7F6, #D1C4E9);
  color: #667eea;
}

.pay-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.pay-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}

.tag-tabby {
  background: #D1FAE5;
  color: #059669;
}

.tag-tamara {
  background: #FEF3C7;
  color: #B45309;
}

.tag-emi {
  background: #EDE9FE;
  color: #7C3AED;
}

.pay-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pay-card-features {
  list-style: none;
  text-align: left;
}

.pay-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.pay-card-features li:last-child {
  border-bottom: none;
}

.pay-card-features li i {
  color: var(--emerald);
  font-size: 14px;
  flex-shrink: 0;
}

/* ===========================
   HOW TO REDEEM
   =========================== */
.redeem-section {
  padding: 80px 0;
  background: var(--bg);
}

.redeem-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.redeem-section .section-sub {
  margin: 10px auto 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 13%;
  right: 13%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue-mid), var(--gold), var(--emerald));
  border-radius: 2px;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 16px;
}

.step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-xs);
}

.step:nth-child(1) .step-num {
  background: var(--red);
}

.step:nth-child(2) .step-num {
  background: var(--blue-mid);
}

.step:nth-child(3) .step-num {
  background: var(--gold);
  color: var(--navy);
}

.step:nth-child(4) .step-num {
  background: var(--emerald);
}

.step-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--blue-mid);
}

.step h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}

.step p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ===========================
   TERMS & CONDITIONS
   =========================== */
.terms-section {
  padding: 60px 0 80px;
}

.terms-box {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.terms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  user-select: none;
  transition: var(--ease);
}

.terms-header:hover {
  background: rgba(0, 80, 157, 0.02);
}

.terms-header h2 {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-header h2 i {
  color: var(--red);
}

.terms-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-3);
  font-size: 13px;
  transition: var(--ease);
}

.terms-toggle.open {
  transform: rotate(180deg);
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.terms-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.terms-body.open {
  max-height: 2000px;
}

.terms-body-inner {
  padding: 0 32px 28px;
}

.terms-list {
  list-style: none;
}

.terms-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  border-bottom: 1px solid var(--border-light);
}

.terms-list li:last-child {
  border-bottom: none;
}

.terms-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.terms-list li strong {
  color: var(--text);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
	background: linear-gradient(135deg, rgba(7, 16, 36, 0.88) 0%, rgba(10, 31, 68, 0.85) 50%, rgba(0, 80, 157, 0.8) 100%);
/* 	background:#000a2a; */
/*   background: linear-gradient(135deg,
      rgba(7, 16, 36, 0.88) 0%,
      rgba(10, 31, 68, 0.85) 50%,
      rgba(0, 80, 157, 0.8) 100%); */
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
	color:var(--white);
	    line-height: 1.65;
}

.cta-content h2 .gold {
  background: linear-gradient(135deg, var(--gold), #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
	color:var(--white);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: var(--r-full);
  transition: var(--ease);
  box-shadow: var(--glow-red);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(217, 4, 41, 0.5);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--r-full);
  transition: var(--ease);
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}



/* ===========================
   ANIMATIONS
   =========================== */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim.show {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Hide on mobile utility */
.hide-mobile {
  display: block;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-card {
    max-width: 440px;
    margin: 0 auto;
  }

  .hero-savings-row {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .deal-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Hide hero card on mobile */
  .hide-mobile {
    display: none !important;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 7px 14px;
    letter-spacing: 1.5px;
  }

  .save-amount {
    font-size: 38px;
  }

  .save-currency {
    font-size: 18px;
  }

  .hero-savings-row {
    margin-bottom: 24px;
  }

  .trust-bar {
    padding: 14px 0;
  }

  .trust-bar-inner {
    gap: 16px;
    font-size: 12px;
  }

  .trust-item {
    font-size: 12px;
    gap: 6px;
  }

  .trust-item i {
    font-size: 14px;
  }

  /* Deal Section */
  .deal-section {
    padding: 48px 0;
  }

  .deal-card-body {
    padding: 20px;
  }

  .deal-card-header {
    padding: 18px 20px;
    gap: 12px;
  }

  .deal-card-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .deal-card-header-text h2 {
    font-size: 18px;
  }

  .deal-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .table-label {
    font-size: 15px;
  }

  /* Table overflow */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dtable {
    font-size: 13px;
    min-width: 520px;
  }

  /* Payment Section */
  .payment-section {
    padding: 48px 0;
  }

  .pay-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pay-card {
    padding: 24px 20px;
  }

  .pay-card-icon {
    width: 60px;
    height: 60px;
  }

  .pay-card h3 {
    font-size: 18px;
  }

  /* Steps */
  .redeem-section {
    padding: 48px 0;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .steps::before {
    display: none;
  }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .step-icon {
    font-size: 24px;
  }

  .step h3 {
    font-size: 14px;
  }

  .step p {
    font-size: 12px;
  }

  /* Terms */
  .terms-section {
    padding: 40px 0 48px;
  }

  .terms-header {
    padding: 18px 20px;
  }

  .terms-header h2 {
    font-size: 17px;
  }

  .terms-body-inner {
    padding: 0 20px 20px;
  }

  .terms-list li {
    font-size: 13px;
    padding: 8px 0 8px 20px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }

  /* Section headings */
  .section-heading {
    font-size: 24px;
  }

  .section-sub {
    font-size: 14px;
  }

  .section-eyebrow {
    font-size: 10px;
    padding: 6px 12px;
  }

  /* Sidebar cards */
  .sidebar-card {
    border-radius: var(--r-md);
  }

  .sidebar-promo {
    padding: 22px;
  }

  .sidebar-promo-code {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .sidebar-payment {
    padding: 18px;
  }

  .payment-option {
    padding: 12px 14px;
  }

  .payment-option-icon {
    width: 38px;
    height: 38px;
  }

  .payment-option-text strong {
    font-size: 13px;
  }

  .payment-option-text span {
    font-size: 11px;
  }

  .payment-option-badge {
    font-size: 9px;
    padding: 3px 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero .container {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: -0.3px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 9px;
    padding: 6px 12px;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }

  .save-amount {
    font-size: 32px;
  }

  .save-currency {
    font-size: 16px;
  }

  .save-label {
    font-size: 11px;
  }

  .hero-savings-row {
    margin-bottom: 20px;
  }

  .promo-box {
    padding: 12px 16px;
    width: 100%;
    justify-content: center;
  }

  .promo-box-code {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .promo-box-label {
    font-size: 10px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .btn-hero {
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  /* Trust bar vertical stack */
  .trust-bar-inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0 4px;
  }

  /* Steps single column */
  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step {
    padding: 12px;
  }

  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta-primary,
  .btn-cta-ghost {
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 14px;
  }

  /* App store buttons stack */
  .app-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .app-btn-img {
    align-self: center;
  }

  /* Table font smaller */
  .dtable {
    font-size: 12px;
    min-width: 460px;
  }

  .dtable thead th,
  .dtable tbody td {
    padding: 10px 8px;
  }

  /* Deal note */
  .deal-note {
    font-size: 12px;
    padding: 14px 16px;
  }

  /* Section adjustments */
  .section-heading {
    font-size: 22px;
  }

  .deal-section {
    padding: 36px 0;
  }

  .payment-section {
    padding: 36px 0;
  }

  .redeem-section {
    padding: 36px 0;
  }

  .terms-section {
    padding: 32px 0 36px;
  }

  .cta-section {
    padding: 48px 0;
  }

  /* Sidebar promo */
  .sidebar-promo {
    padding: 18px;
  }

  .sidebar-promo-code {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .sidebar-book-btn {
    font-size: 14px;
    padding: 14px;
  }

  .sidebar-copy-btn {
    font-size: 13px;
    padding: 11px;
  }

  .pay-card {
    padding: 22px 18px;
  }

  .pay-card h3 {
    font-size: 17px;
  }

  .pay-card p {
    font-size: 13px;
  }

  .pay-card-features li {
    font-size: 12px;
    padding: 6px 0;
  }
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-3);
}