/* ==========================================================================
   New India Abroad - Marketplace Free & Premium Listing Landing Page Style
   Brand Theme: New India Abroad Signature Crimson Red & Charcoal Theme (#DA0000)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Official New India Abroad Color Palette */
  --primary: #DA0000;
  --primary-light: #EF233C;
  --primary-dark: #A80000;
  --primary-gradient: linear-gradient(135deg, #EF233C 0%, #DA0000 100%);
  
  --secondary: #111827;
  --secondary-light: #1F2937;
  --secondary-gradient: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  
  --accent-gold: #F59E0B;
  --accent-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --accent-green: #10B981;
  --accent-blue: #0284C7;
  
  --neutral-50: #F9FAFB;
  --neutral-100: #F3F4F6;
  --neutral-200: #E5E7EB;
  --neutral-300: #D1D5DB;
  --neutral-400: #9CA3AF;
  --neutral-600: #4B5563;
  --neutral-700: #374151;
  --neutral-800: #1F2937;
  --neutral-900: #111827;
  
  --white: #FFFFFF;
  
  /* Layout & Spacing */
  --container-max: 1240px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Shadows & Glassmorphic */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(218, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(17, 24, 39, 0.15);
  --shadow-glow: 0 0 25px rgba(218, 0, 0, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  
  /* Typography */
  --font-heading: 'Roboto Slab', 'Outfit', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Global Elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.text-highlight {
  background: linear-gradient(135deg, #EF233C 0%, #DA0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--accent-gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-saffron {
  background: rgba(218, 0, 0, 0.1);
  color: var(--primary);
  border: 1px solid rgba(218, 0, 0, 0.25);
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(218, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 0, 0, 0.45);
}

.btn-gold {
  background: var(--accent-gold-gradient);
  color: var(--secondary);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--neutral-300);
  color: var(--secondary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(218, 0, 0, 0.05);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

/* Navigation Header */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 28px;
  max-height: 30px;
}

.brand-tag {
  border-left: 2px solid var(--neutral-300);
  padding-left: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-700);
  font-family: var(--font-heading);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
}

.nav-phone i {
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(218, 0, 0, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(17, 24, 39, 0.05) 0%, transparent 50%),
              var(--neutral-50);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: 3.2rem;
  letter-spacing: -0.5px;
  margin: 1.25rem 0;
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
}

.stat-item h4 {
  font-size: 1.85rem;
  color: var(--primary);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
}

/* Hero Lead Form Box */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(229, 231, 235, 0.8);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary-gradient);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.form-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 0.35rem;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  background-color: var(--neutral-50);
  color: var(--neutral-800);
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(218, 0, 0, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234B5563'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
}

.plan-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.plan-radio-card {
  position: relative;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  background: var(--neutral-50);
}

.plan-radio-card input {
  position: absolute;
  opacity: 0;
}

.plan-radio-card.active {
  border-color: var(--primary);
  background: rgba(218, 0, 0, 0.04);
}

.plan-radio-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.plan-radio-desc {
  font-size: 0.75rem;
  color: var(--neutral-600);
}

/* Feature Highlights Grid */
.features-section {
  padding: 5rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 2.35rem;
  margin: 0.75rem 0 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--neutral-600);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(218, 0, 0, 0.3);
  background: var(--white);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 15px rgba(218, 0, 0, 0.25);
}

.feature-icon.gold {
  background: var(--accent-gold-gradient);
  color: var(--secondary);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.25);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--neutral-600);
  font-size: 0.95rem;
}

/* Category Vertical Switcher */
.categories-section {
  padding: 5rem 0;
  background: var(--neutral-50);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cat-tab {
  padding: 0.85rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--neutral-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.25s ease;
}

.cat-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(218, 0, 0, 0.3);
}

.cat-tab.active i {
  color: var(--white);
}

.category-display-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cat-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cat-info p {
  font-size: 1.05rem;
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
}

.cat-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cat-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.cat-benefits-list li i {
  color: var(--accent-green);
}

.cat-preview-box {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white);
  position: relative;
}

.badge-live {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* Full Feature Comparison Tables Styling */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  background: var(--white);
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table th, .comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
  vertical-align: middle;
}

.comparison-table th {
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.comparison-table th.price-col {
  background: var(--secondary-light);
  text-align: center;
}

.comparison-table th.price-col.popular-col {
  background: var(--primary);
}

.comparison-table tr:nth-child(even) {
  background: var(--neutral-50);
}

.comparison-table tr:hover {
  background: rgba(218, 0, 0, 0.03);
}

.comparison-table td.center {
  text-align: center;
  font-weight: 600;
}

.check-icon {
  color: var(--accent-green);
  font-size: 1.15rem;
}

.cross-icon {
  color: var(--neutral-400);
  font-size: 1rem;
}

/* Pricing & Packages Section */
.pricing-section {
  padding: 5rem 0;
  background: var(--secondary);
  color: var(--white);
  position: relative;
}

.pricing-section .section-title {
  color: var(--white);
}

.pricing-section .section-desc {
  color: var(--neutral-300);
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.pricing-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem;
  border-radius: 50px;
  display: flex;
  gap: 0.25rem;
}

.toggle-option {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--neutral-300);
}

.toggle-option.active {
  background: var(--primary-gradient);
  color: var(--white);
}

/* Flagship Membership Banner (NIA Business Plus) */
.flagship-banner {
  background: linear-gradient(135deg, #1E293B 0%, #111827 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  margin-bottom: 3.5rem;
  position: relative;
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.2);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.flagship-tag {
  position: absolute;
  top: -15px;
  left: 3rem;
  background: var(--accent-gold-gradient);
  color: var(--secondary);
  font-size: 0.825rem;
  font-weight: 800;
  padding: 0.35rem 1.25rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.flagship-content h3 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.flagship-content p {
  color: var(--neutral-300);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.flagship-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.flagship-features-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--white);
}

.flagship-features-grid li i {
  color: var(--accent-gold);
}

.flagship-pricing {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 2rem;
}

.price-val {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--neutral-400);
  margin-bottom: 1.5rem;
}

/* Vertical Category Pricing Cards Grid */
.pricing-tabs-vertical {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.v-tab {
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: var(--neutral-300);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.v-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.price-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(218, 0, 0, 0.5);
}

.price-card.popular {
  background: rgba(255, 255, 255, 0.09);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.price-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card-header h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.card-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
}

.card-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--neutral-400);
}

.price-features-list {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.price-features-list li {
  font-size: 0.875rem;
  color: var(--neutral-300);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features-list li.disabled {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.price-features-list li i.fa-check {
  color: var(--accent-green);
}

.price-features-list li i.fa-xmark {
  color: rgba(255, 255, 255, 0.3);
}

/* Revenue Addons Showcase */
.addons-section {
  padding: 5rem 0;
  background: var(--white);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.addon-item {
  border: 1px dashed var(--neutral-300);
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.addon-item:hover {
  border-style: solid;
  border-color: var(--primary);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.addon-info h5 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.addon-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

/* Interactive Lead Simulator / ROI Preview */
.roi-section {
  padding: 5rem 0;
  background: var(--neutral-100);
}

.roi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.roi-calculator {
  background: var(--neutral-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
}

.range-slider-wrapper {
  margin: 1.5rem 0 2rem;
}

.range-slider {
  width: 100%;
  accent-color: var(--primary);
}

.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
}

.calc-res-item {
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--neutral-200);
}

.calc-res-item h5 {
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 800;
}

.calc-res-item p {
  font-size: 0.8rem;
  color: var(--neutral-600);
}

/* Testimonials / Social Proof */
.testimonials-section {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  position: relative;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--neutral-700);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-details h5 {
  font-size: 0.95rem;
  line-height: 1.2;
}

.author-details span {
  font-size: 0.8rem;
  color: var(--neutral-600);
}

/* Steps - How it works */
.steps-section {
  padding: 5rem 0;
  background: var(--neutral-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 10px rgba(218, 0, 0, 0.3);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* FAQ Accordion */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--neutral-50);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
}

.faq-header:hover {
  background: var(--neutral-100);
}

.faq-header i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--neutral-600);
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* Floating Bottom Bar for Mobile */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 25px rgba(0,0,0,0.15);
  padding: 0.85rem 1.25rem;
  z-index: 999;
  border-top: 1px solid var(--neutral-200);
}

.mobile-sticky-inner {
  display: flex;
  gap: 0.75rem;
}

/* Lead Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--neutral-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--neutral-600);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--neutral-200);
  color: var(--secondary);
}

/* Notification Toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--secondary);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-green);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(0);
}

/* Footer */
footer {
  background: var(--secondary);
  color: var(--neutral-300);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--neutral-400);
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--neutral-400);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--neutral-400);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid, .testimonials-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flagship-banner {
    grid-template-columns: 1fr;
  }
  .flagship-pricing {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .category-display-card, .roi-card {
    grid-template-columns: 1fr;
  }
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone {
    display: none;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .pricing-grid, .features-grid, .testimonials-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .addons-grid {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-bar {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cat-benefits-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Matrimonial Specific Theme & Components Extensions
   Brand: New India Abroad Matrimonial (Crimson #DA0000 & Rose #E11D48)
   ========================================================================== */

:root {
  --matrimonial-rose: #E11D48;
  --matrimonial-rose-light: #FFF1F2;
  --matrimonial-rose-border: #FECDD3;
  --matrimonial-gradient: linear-gradient(135deg, #E11D48 0%, #DA0000 100%);
  --gold-glow: 0 0 15px rgba(245, 158, 11, 0.25);
}

/* Matrimonial Badges & Highlights */
.badge-rose {
  background: rgba(225, 29, 72, 0.1);
  color: var(--matrimonial-rose);
  border: 1px solid rgba(225, 29, 72, 0.25);
}

.text-rose {
  color: var(--matrimonial-rose);
}

.btn-rose {
  background: var(--matrimonial-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.45);
  color: var(--white);
}

/* Matrimonial Search Box */
.matrimonial-search-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.matrimonial-search-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .matrimonial-search-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .matrimonial-search-grid {
    grid-template-columns: 1fr;
  }
}

/* Profile Card Styling */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

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

.profile-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-5px);
  border-color: var(--matrimonial-rose);
  box-shadow: 0 15px 30px rgba(225, 29, 72, 0.12);
}

.profile-card-header {
  position: relative;
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  padding: 1.5rem 1.25rem 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.profile-avatar-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid var(--matrimonial-rose);
  background: var(--neutral-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--matrimonial-rose-light);
  flex-shrink: 0;
  overflow: hidden;
}

.profile-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-verified-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--accent-green);
  color: var(--white);
  font-size: 0.65rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--neutral-900);
}

.profile-id-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.profile-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.15rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-details-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 0.8rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.profile-detail-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--neutral-700);
}

.profile-detail-item i {
  color: var(--matrimonial-rose);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.profile-footer-actions {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-100);
}

.profile-footer-actions .btn {
  flex: 1;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
}

/* Success Story Cards */
.story-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--matrimonial-rose-border);
}

.story-icon {
  font-size: 2rem;
  color: var(--matrimonial-rose);
  margin-bottom: 1rem;
}

.story-quote {
  font-size: 0.95rem;
  color: var(--neutral-700);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--matrimonial-rose-light);
  color: var(--matrimonial-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ==========================================================================
   Events & Cultural Portal Extensions
   Brand: New India Abroad Events (Crimson #DA0000, Orange #F97316 & Purple #8B5CF6)
   ========================================================================== */

:root {
  --event-purple: #8B5CF6;
  --event-purple-light: #F3E8FF;
  --event-orange: #F97316;
  --event-orange-light: #FFF7ED;
  --event-gradient: linear-gradient(135deg, #F97316 0%, #DA0000 100%);
  --event-gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #DA0000 100%);
}

.badge-purple {
  background: rgba(139, 92, 246, 0.12);
  color: var(--event-purple);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-orange {
  background: rgba(249, 115, 22, 0.12);
  color: var(--event-orange);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.btn-event {
  background: var(--event-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}

.btn-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
  color: var(--white);
}

/* Event Grid & Card */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

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

.event-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--event-orange);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.12);
}

.event-card-banner {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.event-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.4);
  z-index: 1;
}

.event-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
}

.event-banner-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.event-date-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: var(--white);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.1;
}

.event-date-day {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);

}

.event-date-month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--neutral-600);
}

.event-price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(4px);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.825rem;
  font-weight: 700;
}

.event-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--event-orange);
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.event-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.event-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-bottom: 1.25rem;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta-item i {
  color: var(--event-orange);
  font-size: 0.85rem;
  width: 16px;
}

.event-card-footer {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-100);
}

.event-card-footer .btn {
  flex: 1;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Jobs & Careers Portal Extensions
   Brand: New India Abroad Jobs (Crimson #DA0000, Blue #0284C7 & Emerald #059669)
   ========================================================================== */

:root {
  --job-blue: #0284C7;
  --job-blue-light: #E0F2FE;
  --job-emerald: #059669;
  --job-emerald-light: #D1FAE5;
  --job-gradient: linear-gradient(135deg, #0284C7 0%, #DA0000 100%);
  --job-gradient-emerald: linear-gradient(135deg, #059669 0%, #0284C7 100%);
}

.badge-blue {
  background: rgba(2, 132, 199, 0.12);
  color: var(--job-blue);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.badge-emerald {
  background: rgba(5, 150, 105, 0.12);
  color: var(--job-emerald);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.btn-job {
  background: var(--job-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
}

.btn-job:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.45);
  color: var(--white);
}

/* Jobs Grid & Card Styling */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

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

.job-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: var(--job-blue);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.12);
}

.job-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.company-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--job-blue);
  flex-shrink: 0;
}

.job-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.35;
  margin-bottom: 0.2rem;
}

.company-name {
  font-size: 0.85rem;
  color: var(--neutral-600);
  font-weight: 600;
}

.job-salary-badge {
  display: inline-block;
  background: var(--job-emerald-light);
  color: var(--job-emerald);
  font-weight: 700;
  font-size: 0.825rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.job-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--neutral-700);
  margin-bottom: 1.25rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.job-meta-item i {
  color: var(--job-blue);
  font-size: 0.85rem;
  width: 14px;
}

.job-card-actions {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-100);
}

.job-card-actions .btn {
  flex: 1;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Business Directory Portal Extensions
   Brand: New India Abroad Directory (Crimson #DA0000 & Indigo #4F46E5)
   ========================================================================== */

:root {
  --dir-indigo: #4F46E5;
  --dir-indigo-light: #EEF2FF;
  --dir-gradient: linear-gradient(135deg, #4F46E5 0%, #DA0000 100%);
}

.badge-indigo {
  background: rgba(79, 70, 229, 0.12);
  color: var(--dir-indigo);
  border: 1px solid rgba(79, 70, 229, 0.25);
}

.btn-dir {
  background: var(--dir-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}

.btn-dir:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
  color: var(--white);
}

/* Business Grid & Card Styling */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

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

.business-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.business-card:hover {
  transform: translateY(-5px);
  border-color: var(--dir-indigo);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.12);
}

.business-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.business-logo-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--dir-indigo-light);
  border: 1px solid rgba(79, 70, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--dir-indigo);
  flex-shrink: 0;
}

.business-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.business-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  color: var(--neutral-600);
  margin-bottom: 0.85rem;
}

.business-rating i {
  color: var(--accent-gold);
}

.business-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--neutral-700);
  margin-bottom: 1.25rem;
}

.business-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.business-meta-item i {
  color: var(--dir-indigo);
  font-size: 0.85rem;
  width: 16px;
}

.business-card-actions {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-100);
}

.business-card-actions .btn {
  flex: 1;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Pricing Cards Light-Mode & Highlight Styling Fix
   ========================================================================== */

section[style*="neutral-50"] .price-card,
section[style*="white"] .price-card,
#packages .price-card,
#subscriptions .price-card {
  background: var(--white) !important;
  border: 1.5px solid var(--neutral-200);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  color: var(--neutral-800);
}

section[style*="neutral-50"] .price-card-header,
section[style*="white"] .price-card-header,
#packages .price-card-header,
#subscriptions .price-card-header {
  border-bottom: 1px solid var(--neutral-200);
}

section[style*="neutral-50"] .price-card-header h4,
section[style*="white"] .price-card-header h4,
#packages .price-card-header h4,
#subscriptions .price-card-header h4 {
  color: var(--secondary);
}

section[style*="neutral-50"] .card-price,
section[style*="white"] .card-price,
#packages .card-price,
#subscriptions .card-price {
  color: var(--secondary);
}

section[style*="neutral-50"] .card-price span,
section[style*="white"] .card-price span,
#packages .card-price span,
#subscriptions .card-price span {
  color: var(--neutral-600);
}

section[style*="neutral-50"] .price-features-list li,
section[style*="white"] .price-features-list li,
#packages .price-features-list li,
#subscriptions .price-features-list li {
  color: var(--neutral-700);
}

/* Featured / Popular Highlight Card Styling */
.price-card.popular {
  background: var(--white) !important;
  border-width: 2.5px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-6px);
}

.price-card.popular .popular-badge {
  position: absolute;
  top: -14px;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Highlighted Column in Comparison Table */
.comparison-table th.popular-col {
  position: relative;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.3);
}

.comparison-table td.popular-col,
.comparison-table td:nth-child(4) {
  background: rgba(218, 0, 0, 0.02);
}

/* ==========================================================================
   Fully Responsive Navigation & Layout Extensions
   ========================================================================== */

/* Portals Navigation Dropdown (Desktop) */
.nav-portals-wrapper {
  position: relative;
}

.portals-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-700);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  transition: all 0.2s ease;
}

.portals-btn:hover {
  color: var(--primary);
  background: rgba(218, 0, 0, 0.05);
}

.portals-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1001;
}

.nav-portals-wrapper:hover .portals-dropdown,
.nav-portals-wrapper:focus-within .portals-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.portal-drop-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
  transition: all 0.2s ease;
}

.portal-drop-link:hover {
  background: var(--neutral-100);
  color: var(--primary);
}

.portal-drop-link i {
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

.portal-drop-link.active {
  color: var(--primary);
  background: rgba(218, 0, 0, 0.05);
}

/* Mobile Navigation Toggle (Hamburger) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.nav-toggle:hover {
  color: var(--primary);
}

/* Base changes for navigation header layout */
.navbar-container {
  position: relative;
}

.mobile-portals-section {
  display: none;
}

.mobile-nav-action-btn {
  display: none;
}

/* Responsive styles for headers, search grids, and footers */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .navbar-container {
    justify-content: space-between;
  }
  
  .nav-actions {
    display: none !important; /* Hide primary header actions on mobile to make room */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--neutral-200);
    padding: 1.5rem;
    gap: 1rem;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-100);
    font-size: 1rem;
  }

  /* Portals section inside Mobile Navigation Links */
  .mobile-portals-section {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--neutral-200);
  }

  .mobile-portals-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--neutral-400);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .mobile-portal-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--neutral-700);
  }

  .mobile-portal-link i {
    width: 20px;
    text-align: center;
    color: var(--primary);
  }
  
  .mobile-portal-link.active {
    color: var(--primary);
  }

  .mobile-nav-action-btn {
    display: inline-flex;
    margin-top: 1rem;
    width: 100%;
  }
}

/* Responsive Search & Filter Grids */
.search-grid-5, .search-grid-6 {
  display: grid;
  gap: 1rem;
}

.search-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.search-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1024px) {
  .search-grid-5, .search-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .search-grid-5, .search-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .search-grid-5, .search-grid-6 {
    grid-template-columns: 1fr;
  }
}

/* Footer Responsive Layout styling */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Fluid Typography and Spacing scale changes */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  section {
    padding: 3rem 0 !important;
  }
  .hero-section {
    padding: 3rem 0 3.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .modal-card {
    padding: 1.5rem !important;
  }
}

/* Scrollable tabs styling on mobile */
@media (max-width: 768px) {
  .category-tabs, .pricing-tabs-vertical {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .cat-tab, .v-tab {
    flex-shrink: 0;
  }
}
