/* ==========================================================================
   INFINITY BY EUREKA — TRANSACTION CHARGES PAGE
   ========================================================================== */

:root {
  /* Color tokens sampled from source design */
  --navy-950: #0a3d6b;
  --navy-900: #0e5490;
  --navy-800: #12588f;
  --navy-700: #1b6ea4;
  --navy-600: #2c8abd;
   --navy-actual: #083259;
   --navy-eyebrow:#31BDE3;

  --sky-50: #eaf6fb;
  --sky-100: #d8edf2;
  --sky-200: #c5ecf6;
  --sky-300: #F0F6FF;

  --cream-50: #fffcf5;
  --cream-100: #fdf6e6;
  --gold-500: #d99a3d;
  --gold-600: #b97e28;

  --gray-25: #f8f9fd;
  --gray-50: #f5f6f8;
  --gray-100: #eef1f4;
  --gray-200: #e5e7eb;
  --gray-400: #9aa3af;
  --gray-500: #6b7280;
  --gray-600:#7B7B7B;
  --gray-700: #3f4756;
  --gray-900: #1f2937;

  --green-600: #17a559;

  --white: #ffffff;

  /* --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif; */
  --font-serif: 'PP Editorial New', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

   /* --font-heading: 'PP Editorial New', Georgia, serif;*/
  --font-body: 'Roboto', sans-serif; 

  --container-w: 1140px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-pill: 5px;
  --shadow-card: 0 4px 24px rgba(14, 84, 144, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
 
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-image: url('https://www.eurekasec.com/wp-content/uploads/infinity/HTML/v4/assets/images/Gradient bg.png');
  background-size: cover;
  overflow: hidden;
  z-index: -1;
}

.hero {
  /* no overflow: hidden needed */
  position: relative;
}
.hero-fade{
  height: 100px;
}

    
.section { padding: 72px 0; }

.section-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-actual);
  font-size: 24px;
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.section-heading--center {
  justify-content: center;
  text-align: center;
}
.section-heading--center::after { display: none; }

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-heading-row .section-heading { margin: 0; flex: 1; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-eyebrow);
  margin: 0 0 12px;
}
.eyebrow-center {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:var(--gray-600);
  margin: 0 0 20px;
}

.eyebrow-Question {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
   color: var(--navy-eyebrow);
  margin: 0 0 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.pill-muted {
  background: var(--gray-100);
  color: var(--gray-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-950); }
.btn-white {
  background: var(--white);
  color: var(--navy-900);
}
.btn-white:hover { background: var(--sky-50); }


td strong {
  display: block;
  margin-bottom: 1px;
  font-size: 14px; /* Main text */
}

.asterisk {
  font-family: var(--font-serif);
  font-size: 14px;
  margin-left: 2px;
}

.sub-text {
  margin: 0;
  font-size: 12px; /* Smaller text */
  color: #666;     /* Optional */
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
/* .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
} */

/* .navbar {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.logo-mark { display: block; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--sky-100);
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--sky-100);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--white);
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-cta { padding: 10px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
} */

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(180deg,
    var(--navy-900) 0%,
    var(--navy-700) 22%,
    #5cb3d1 42%,
    var(--sky-200) 62%,
    var(--sky-50) 78%,
    var(--white) 100%);
  padding: 56px 0 0;
  text-align: center;
}

.hero-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.rupee-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  filter: drop-shadow(0 12px 20px rgba(10, 40, 70, 0.35));
  margin: 40px 0 12px;
}



.hero-title {
  color:var(--navy-actual);
text-align: center;
font-family: var(--font-serif);;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 84px; /* 210% */
}


.hero-subtitle {
  font-family: var(--navy-actual);
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 160% */
  color: var(--navy-950);
  margin: 30 0 48px;
}


.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  padding-bottom: 56px;
  margin: 120px 0 0px ;
}
.stat {
  /* flex: 1; */
  max-width: 290px;
  padding: 0 40px;
  position: relative;
}
/* .stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(15, 60, 100, 0.15);
} */
.stat-label-p {
  font-family: var( --font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  /* color: var(--navy-900); */
  margin: 0 0 6px;
}


.stat-value {
  background: linear-gradient(180deg, #31BDE3 0%, #083259 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: "PP Editorial New";
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: 50px;
}



.stat-caption {
 font-family: var( --font-body);
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 30px;
}

/* ==========================================================================
   PACKAGE SELECTOR
   ========================================================================== */
.package-section {
  text-align: center;
  padding: 40px 24px 24px;
}
.package-toggle {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 20px;
}
.package-btn {
  padding: 12px 26px;
  border-radius: 27px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.package-btn.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(14, 84, 144, 0.25);
}
.package-btn:not(.is-active):hover { border-color: var(--navy-700); }
.package-caption {
   text-align: center;
  /* max-width: 640px; */
  margin: 0 auto;
  font-size: 14px;
  color: var(--gray-600);
}

/* ==========================================================================
   TABLES — shared
   ========================================================================== */
.table-wrap {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.price-table thead th {
  text-align: left;
  vertical-align: top;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.price-table .col-service {

color: var(--navy-actual);
font-family:var(--font-serif);
font-size: 18px;
font-style: italic;
font-weight: 400;
line-height: 28px; /* 155.556% */

  background: var(--sky-300);
  width: 34%;
}
.price-table .col-silver { background: var(--gray-50); }
.price-table .col-gold { background: var(--cream-50); }

.col-title {
 color: #555;
font-family: Roboto;
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 16px; /* 133.333% */
}
.price-table .col-service .col-title { font-size: 16px; }
.col-title-gold { color: var(--gold-600); }

.col-sub {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  color: var(--gray-400);
}
.col-sub em { color: #000;
font-family: "PP Editorial New";
font-size: 14px;
font-style: italic;
font-weight: 400;
line-height: 20px; /* 142.857% */ 
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
}
.chip-gray { background: var(--gray-200); color: var(--gray-700); }
.chip-gold { background: var(--gold-600); color: var(--white); }
.chip-note {
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-600);
}

.price-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.price-table tbody td:first-child {
  font-weight: 600;
  color: var(--gray-900);
  background: var(--white);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody td:nth-child(2) { background: var(--gray-25); }
.price-table tbody td:nth-child(3) { background: var(--cream-50); }

.price-table--simple .col-title { font-size: 14px; }

.footnote-row td {
  padding: 12px 24px;
  font-size: 12px;
  color: var(--gray-400);
  border-bottom: none;
  background: var(--gray-50) !important;
}
.footnote-row td:first-child { background: var(--gray-50) !important; font-weight: 400; }
.footnote-row td:nth-child(3) { background: var(--cream-100) !important; }

.table-footnote {
  font-size: 12px;
  color: var(--gray-400);
  margin: 16px 4px 0;
}

/* ==========================================================================
   EXCHANGE & STATUTORY CHARGES
   ========================================================================== */
.exchange-charges { background: var(--gray-25); }

.tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 28px;
}
.tab {
  background: none;
  border: none;
  padding: 12px 2px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab.is-active {
  color: var(--navy-actual);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  border-bottom-color: var(--navy-actual);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.panel-placeholder {
  padding: 48px 0;
  text-align: center;
  color: var(--gray-400);
  font-size: 14px;
}

.subtable-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
}
.subtable-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--navy-actual);
  padding: 18px 24px;
  margin: 0;
  border-bottom: 1px solid var(--gray-100);
}
.subtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.subtable td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-200);
  color: var(--gray-700);
  vertical-align: middle;
  text-align: left;
}
.subtable td:last-child { border-right: none; }
.subtable tbody tr:last-child td { border-bottom: none; }
.subtable td:first-child { 
  color: var(--gray-900); 
  font-weight: 500;
}
.subtable thead td { 
  font-size: 13px; 
  padding-top: 14px; 
  padding-bottom: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* ==========================================================================
   ACCOUNT OPENING
   ========================================================================== */
  .account-opening{
    padding: 100px;
  }
.account-cards {
  display: flex;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.account-card {
  flex: 1;
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid var(--gray-200);
}
.account-card:last-child { border-right: none; }
.account-type {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0 0 14px;
}
.chip-free {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: #31BDE3;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works { background: var(--gray-25); padding: 88px 0; }

.hiw-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}

.hiw-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}

.hiw-intro { padding-top: 8px; }
.hiw-left { 
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.hiw-header { max-width: 320px; padding-top: 80px; }
.hiw-right { }
.steps-scroll-region { position: relative; }
.steps-sticky {
  position: sticky;
  top: 50px;
  overflow: visible;
}
.steps-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.hiw-card-item {
  flex: 1 1 auto;
  max-width: 100%;
}
.hiw-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 40px;
  color: var(--navy-actual);
  line-height: 60px;
  margin: 0 0 18px;
}
/* .hiw-title em { font-style: italic; color: var(--navy-700); } */
.hiw-copy {
  font-size: 14px;
  
  max-width: 320px;
  line-height: 1.6;
  margin: 0;
}

.hiw-steps { 
  display: flex; 
  flex-direction: column; 
  gap: 28px;
  position: relative;
}

.hiw-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.step-badge {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--sky-200);
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  width: fit-content;
}
.hiw-card-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 10px;
  transition: opacity 0.2s ease;
  will-change: opacity;
}
.hiw-card-title em { font-style: italic; }
.hiw-card-copy {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 440px;
}

/* Product mockups (real design-team screenshots) */
.hiw-mock-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  line-height: 0;
}
.hiw-mock-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section { padding: 88px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-last {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 16px;
}


.form-field { display: flex; flex-direction: column; }
.form-field input,
.form-field textarea {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 14px;
  color: var(--gray-900);
  background: var(--white);
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
}
.form-field input.has-error,
.form-field textarea.has-error { border-color: #dc2626; }
.form-error {
  font-size: 11px;
  color: #dc2626;
  margin-top: 4px;
  min-height: 14px;
}
.submit-btn { align-self: flex-start; padding: 19px 70px; margin-top: 35px; }
.form-success {
  font-size: 23px;
  color: var(--green-600);
  font-weight: 600;
  margin: 4px 0 0;
}

/* .form-object{
  column-gap: normal;
  row-gap:10px ;
} */

.contact-info {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  height:250px;
}
.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy-actual);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.contact-info-label {
  
  font-size: 12px;
  font-weight: 400;
  color: var(--navy-eyebrow);
  margin: 0 0 4px;
}
.contact-info-value {
  font-size: 13px;
  color: var(--navy-actual);
  margin: 0 0 20px;
  line-height: 1.5;
}
.contact-info-split {
  display: flex;
  gap: 32px;
}



/* ==========================================================================
   ANIMATIONS — ARITAR REVEAL
   ========================================================================== */
.aritar-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.aritar-reveal.show {
  opacity: 1;
  transform: translateY(0);
}



.pricing-section {
    display: none;
}

.pricing-section.is-active {
    display: block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .hiw-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; } */
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: 64px;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero-title { font-size: 32px; }
  .hero-title { line-height:1; }
  .hero-subtitle { font-size: 15px; }
  .hero-subtitle { margin:0; }
  .stats-row {margin:50px 0px 0px};
  .stat-label-p.text{}
  .stats-row { flex-direction: column; gap: 24px; align-items: center; }
  .stat + .stat::before { display: none; }
  .stat { max-width: 100%; }

  .section { padding: 48px 0; }
  .section-heading { font-size: 18px; }
  .section-heading-row { flex-direction: column; align-items: flex-start; }

  .price-table thead th,
  .price-table tbody td { padding: 12px 14px; font-size: 13px; }

  .account-cards { flex-direction: column; }
  .account-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .account-card:last-child { border-bottom: none; }

  .form-field{padding: 1px;}
  .form-row { grid-template-columns: 1fr; padding:1px;}
  .form-row{gap: 3px;}
  .form-row-last { grid-template-columns: 1fr; }
  .submit-btn { width: 100%; }



  .contact-info-split { flex-direction: column; gap: 1px; }
   .contact-info-title { margin:0; }
   .contact-info-value { margin:0; }

  /* .footer-top { grid-template-columns: 1fr; }
  .footer-compliance { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-watermark { font-size: 72px; } */

  .account-opening{
    padding: 70px;
  }

  .tabs{
    border-bottom: none;
    padding-bottom: 1px;
    gap:5px;
    
  }
  .tab{
    border-radius: 4px;
    border: 1px solid #E3E3E3;
    padding: 6px 12px;
  }
  .tab.is-active{
    border-bottom: 1px solid #E3E3E3;
    background-color: var(--navy-actual);
    color: #ffff;
  }
  .package-btn{
    font-size:11px;
  }
  .package-section {
    text-align: center;
    padding: 40px 18px 18px;
}
}