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

/* CSS Variables for Premium Saffron Theme */
:root {
  --primary-color: #F15A24;
  --primary-hover: #D04515;
  --primary-light: #FFF2ED;
  --primary-gradient: linear-gradient(135deg, #FF8A00 0%, #F15A24 100%);
  --primary-gradient-hover: linear-gradient(135deg, #F15A24 0%, #D04515 100%);
  --secondary-color: #FFB300;
  --secondary-light: #FFFDF0;
  --success-color: #00A859;
  --success-light: #EBF8F0;
  --dark-color: #1A1A1D;
  --light-color: #FFFFFF;
  --bg-body: #FFFDFB;
  --bg-card: #FFFFFF;
  --bg-light: #FDF9F6;
  --bg-dark-light: #FAFAFA;
  --text-main: #2D3142;
  --text-muted: #6C7A89;
  --border-color: #F0E6DF;
  --shadow-sm: 0 4px 12px rgba(241, 90, 36, 0.05);
  --shadow-md: 0 12px 30px rgba(241, 90, 36, 0.08);
  --shadow-lg: 0 20px 40px rgba(241, 90, 36, 0.12);
  --shadow-hover: 0 24px 48px rgba(241, 90, 36, 0.18);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

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

ul {
  list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: #F2DCD0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Reusable Components & Helpers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.badge-saffron {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.badge-green {
  background-color: var(--success-light);
  color: var(--success-color);
}

.badge-gold {
  background-color: var(--secondary-light);
  color: #B27D00;
  border: 1px solid #FFE082;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.section-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--light-color);
}

.btn-primary:hover {
  background: var(--primary-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--light-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* Animations & Transitions (Intersection Observer) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Micro-animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-soft {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(241, 90, 36, 0.4); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(241, 90, 36, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(241, 90, 36, 0); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(241, 90, 36, 0.04);
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
}

.logo span {
  color: var(--primary-color);
}

.logo-icon {
  background: var(--primary-gradient);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(241, 90, 36, 0.3);
}

nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

nav a:hover, nav a.active {
  color: var(--primary-color);
}

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

.menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-color);
}

/* Mobile Sidebar Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--light-color);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.4);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-color);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-links a {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 248, 244, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-color);
  margin-bottom: 24px;
}

.hero-content h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge-floating {
  position: absolute;
  background-color: var(--light-color);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1px solid var(--border-color);
}

.hero-badge-floating.badge-1 {
  top: 10%;
  left: -20px;
}

.hero-badge-floating.badge-2 {
  bottom: 10%;
  right: -20px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-saffron {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.badge-icon-green {
  background-color: var(--success-light);
  color: var(--success-color);
}

.badge-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
}

.badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Trust Bar / Logos */
.trust-bar {
  padding: 30px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
}

/* Interactive Eligibility Engine & Calculator */
.calc-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
}

.calc-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}

.calc-steps::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.calc-step-line-fill {
  position: absolute;
  top: 15px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-gradient);
  z-index: 2;
  transition: var(--transition-smooth);
}

.calc-step-node {
  position: relative;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.calc-step-node.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.calc-step-node.done {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
}

.calc-view {
  display: none;
}

.calc-view.active {
  display: block;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-grid-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.calc-option-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  background-color: var(--light-color);
}

.calc-option-card:hover {
  border-color: var(--primary-color);
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.calc-option-card.selected {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.calc-option-card svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.calc-option-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.calc-option-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.calc-form-group {
  margin-bottom: 24px;
}

.calc-form-label {
  display: block;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.calc-select {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  background-color: var(--light-color);
  color: var(--text-main);
  font-weight: 600;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F15A24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calc-select:focus {
  border-color: var(--primary-color);
}

.calc-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.calc-input:focus {
  border-color: var(--primary-color);
}

.calc-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

/* Result Screen Styles */
.result-card {
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(241, 90, 36, 0.2);
  margin-bottom: 24px;
}

.result-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 20px;
  margin-bottom: 12px;
}

.result-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.result-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(241, 90, 36, 0.1);
  padding-top: 20px;
}

.price-box h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.price-box p {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-color);
}

.price-box .green-text {
  color: var(--success-color);
}

.result-list {
  margin: 20px 0;
}

.result-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.result-list-item svg {
  color: var(--success-color);
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.calc-restart-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Service Tiers & Pricing Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(241, 90, 36, 0.3);
}

.service-card.recommended {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.service-card.recommended::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 24px;
  right: -36px;
  background: var(--primary-gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 48px;
}

.service-card-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark-color);
  display: flex;
  align-items: baseline;
}

.price-val span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
}

.price-subinfo {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 4px;
}

.service-card-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.service-card-features li svg {
  color: var(--success-color);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.service-card-btn {
  width: 100%;
}

/* Who Needs An FSSAI License */
.who-needs-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.who-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.who-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent, var(--primary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent, var(--primary-color)) 40%, transparent);
}

.who-card:hover::after {
  transform: scaleX(1);
}

.who-card-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, var(--primary-color));
  background: color-mix(in srgb, var(--accent, var(--primary-color)) 12%, white);
  transition: var(--transition-smooth);
}

.who-card:hover .who-card-icon {
  transform: scale(1.06);
  background: color-mix(in srgb, var(--accent, var(--primary-color)) 18%, white);
}

.who-card-icon svg {
  width: 40px;
  height: 40px;
}

.who-card-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark-color);
}

/* Customer Reviews */
.reviews-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(241, 90, 36, 0.25);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--secondary-color);
}

.review-stars svg {
  width: 20px;
  height: 20px;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.7;
  font-weight: 500;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: var(--accent, var(--primary-color));
  flex-shrink: 0;
}

.review-author-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 2px;
}

.review-author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Documents Checklist Tab Explorer */
.doc-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.doc-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.doc-tab {
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.doc-tab:hover, .doc-tab.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
  box-shadow: var(--shadow-md);
}

.doc-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
}

.doc-pane {
  display: none;
}

.doc-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.doc-item-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.doc-item-card:hover {
  background-color: var(--primary-light);
  border-color: rgba(241, 90, 36, 0.2);
}

.doc-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  margin-top: 2px;
}

.doc-item-card.checked .doc-checkbox {
  background-color: var(--success-color);
  border-color: var(--success-color);
}

.doc-item-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.doc-item-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.doc-progress-bar-wrapper {
  margin-top: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.doc-progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.doc-progress-bar {
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.doc-progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  width: 0%;
  transition: var(--transition-smooth);
}

/* Filing Process Timeline */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  width: 50%;
  padding: 0 40px;
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: 4px solid var(--primary-color);
  position: absolute;
  top: 8px;
  z-index: 5;
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -12px;
}

.timeline-item.active .timeline-dot {
  background-color: var(--primary-color);
  box-shadow: 0 0 0 6px var(--primary-light);
}

.timeline-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.timeline-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Trust Comparison Grid */
.compare-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.compare-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background-color: var(--dark-color);
  color: white;
  padding: 24px;
  text-align: center;
  font-weight: 700;
}

.compare-header div:first-child {
  text-align: left;
}

.compare-header-us {
  color: var(--primary-color);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--light-color);
  align-items: center;
  text-align: center;
}

.compare-row:nth-child(even) {
  background-color: var(--bg-light);
}

.compare-feature {
  text-align: left;
  font-weight: 700;
  color: var(--dark-color);
  font-size: 0.95rem;
}

.compare-us {
  font-weight: 600;
  color: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.compare-us svg {
  width: 20px;
  height: 20px;
}

.compare-them {
  color: #D32F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.compare-them svg {
  width: 20px;
  height: 20px;
}

/* FAQ Accordions */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(241, 90, 36, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  padding-right: 20px;
}

.faq-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-body-content {
  border-color: var(--border-color);
}

/* Lead Application Form Area */
.contact-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 248, 244, 0.4) 100%);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.contact-card-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-card-details a {
  font-weight: 700;
  color: var(--primary-color);
}

.contact-form-wrapper {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-color);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--light-color);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-color);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Quick Enquiry Lead Form */
.enquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.enquiry-highlights {
  background: linear-gradient(160deg, #2D3142 0%, #1A1A1D 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.enquiry-highlights::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--primary-gradient);
  opacity: 0.18;
  border-radius: 50%;
}

.enquiry-highlights h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 28px;
  position: relative;
}

.enquiry-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  position: relative;
}

.enquiry-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.enquiry-benefits li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  margin-top: 1px;
}

.enquiry-trust {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.enquiry-trust-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.enquiry-trust-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.enquiry-form-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.enquiry-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.enquiry-form-sub {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.enquiry-form-card .form-group {
  margin-bottom: 18px;
}

.enquiry-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 6px 0 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.enquiry-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-color);
  flex-shrink: 0;
  cursor: pointer;
}

.enquiry-submit-btn {
  width: 100%;
  font-size: 1.05rem;
  padding: 16px 28px;
}

.enquiry-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--success-color);
}

.enquiry-secure-note svg {
  width: 16px;
  height: 16px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

/* Modal Popup Form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background-color: var(--bg-card);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-color);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  z-index: 10;
}

.modal-header {
  background: var(--primary-gradient);
  padding: 30px;
  color: white;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.modal-body {
  padding: 30px;
}

/* Footer Section */
footer {
  background-color: var(--dark-color);
  color: #B2B5C0;
  padding-top: 80px;
  padding-bottom: 40px;
  font-size: 0.95rem;
  border-top: 4px solid var(--primary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand h3 span {
  color: var(--primary-color);
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

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

.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  margin-bottom: 30px;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: justify;
}

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

/* Floating Widgets */
.floating-widgets {
  position: fixed;
  bottom: 75px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.widget-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.widget-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.widget-whatsapp {
  background-color: #25D366;
}

.widget-phone {
  background-color: var(--primary-color);
  animation: pulse-soft 2s infinite;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .section-padding {
    padding: 70px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-badge-floating.badge-1 {
    left: 0;
  }
  .hero-badge-floating.badge-2 {
    right: 0;
  }
  .calc-container, .doc-content-wrapper, .contact-form-wrapper {
    padding: 30px 20px;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .enquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .enquiry-highlights {
    padding: 36px 28px;
    order: 2;
  }
  .enquiry-form-card {
    padding: 30px 22px;
    order: 1;
  }
  .doc-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 45px;
    padding-right: 0;
  }
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 8px;
  }
  .compare-container {
    font-size: 0.85rem;
  }
  .compare-header, .compare-row {
    padding: 12px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  nav ul, .nav-actions .btn {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .who-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .calc-grid-options {
    grid-template-columns: 1fr;
  }
  .calc-steps {
    margin-bottom: 30px;
  }
  .calc-option-card {
    padding: 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .who-card {
    padding: 22px 10px 18px;
    gap: 12px;
    border-radius: var(--radius-md);
  }
  .who-card::after {
    transform: scaleX(1);
    height: 3px;
  }
  .who-card-icon {
    width: 68px;
    height: 68px;
  }
  .who-card-icon svg {
    width: 32px;
    height: 32px;
  }
  .who-card-label {
    font-size: 0.78rem;
  }
  .who-card:active {
    transform: scale(0.96);
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 380px) {
  .who-card-icon {
    width: 60px;
    height: 60px;
  }
  .who-card-icon svg {
    width: 28px;
    height: 28px;
  }
}
