:root {
  --primary: #0a2540;
  --primary-light: #1e3a8a;
  --accent: #b9964f;
  --accent-light: #d4b475;
  --bg-main: #FAF9F6; /* Luxury Off-white/Alabaster */
  --bg-soft: #F5F5F2; /* Soft Ivory/Plaster */
  --bg-deep: #0a2540;
  --bg-card: rgba(255, 255, 255, 0.9);
  --text-main: #0a2540;
  --text-muted: #334155;
  --glass: rgba(250, 249, 246, 0.7);
  --glass-border: rgba(185, 150, 79, 0.15);
  --shadow-sm: 0 2px 5px rgba(0,0,0,0.02);
  --shadow-md: 0 15px 35px -5px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 40px 80px -15px rgba(10, 37, 64, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  /* Smoother, less noisy texture */
  background-image: 
    linear-gradient(rgba(250, 249, 246, 0.9), rgba(250, 249, 246, 0.9)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--primary);
}

a {
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.container {
  width: min(1600px, 92%);
  margin: auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav {
  height: 75px;
}

.navbar.scrolled .logo {
  font-size: 1.3rem;
}

.navbar.scrolled .logo img {
  width: 100px;
  height: 60px;
}

.nav {
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  justify-self: start;
  white-space: nowrap;
}

.logo img {
  width: 140px;
  height: 90px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-dropbtn {
  background: rgba(10, 37, 64, 0.05);
  border: 1px solid transparent;
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 99px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.lang-dropbtn:hover {
  background: rgba(10, 37, 64, 0.1);
  transform: translateY(-1px);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;
  background-color: white;
  min-width: 160px;
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  z-index: 1001;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transform-origin: top right;
  animation: dropdownIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover bridge to prevent dropdown from disappearing */
.lang-dropdown-content::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: scale(0.95) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.lang-dropdown-content a {
  color: var(--text-muted);
  padding: 0.9rem 1.5rem;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.lang-dropdown-content a:hover {
  background-color: var(--bg-soft);
  color: var(--primary);
  padding-left: 1.8rem;
}

.lang-dropdown:hover .lang-dropdown-content {
  display: block;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  justify-self: center;
}

.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5e6d7a;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

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

.header-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-self: end;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle .line {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 35px rgba(0, 0, 0, 0.05);
}

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

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--primary);
  cursor: pointer;
  line-height: 1;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: auto;
}

.mobile-links a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-links a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.drawer-footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.2);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

@media (max-width: 992px) {
  .desktop-nav, .desktop-cta {
    display: none !important;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    height: 70px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
  background: #0a2540 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px 0 rgba(10,37,64,0.3);
}

.btn-primary:hover {
  background: #1d4f91 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 200px;
  background: 
    radial-gradient(at 100% 0%, rgba(185, 150, 79, 0.12) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(10, 37, 64, 0.08) 0px, transparent 50%),
    #FAF9F6;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--bg-soft), transparent);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 5;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  background: rgba(185, 150, 79, 0.1);
  border: 1px solid rgba(185, 150, 79, 0.3);
  color: var(--accent);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  margin-bottom: 2rem;
  color: var(--primary);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 800px;
  line-height: 1.8;
  font-weight: 500;
}

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

.hero-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-wrap:hover img {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Floating Stats */
.hero-stats {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 2.5rem;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.05);
}

.stat-item h4 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

/* Section Common */
.section {
  padding: 10rem 0;
  position: relative;
}

.section:nth-child(even) {
  background-color: var(--bg-soft);
  background-image: 
    radial-gradient(at 0% 0%, rgba(185, 150, 79, 0.03) 0px, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: cover, 150px 150px;
}

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

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.6;
}

/* Cards */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 3rem;
  border: 1px solid var(--glass-border);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.card:hover {
  transform: translateY(-10px) scale(1.01);
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

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

.card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.card-icon i {
  line-height: 1;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

/* Step Cards Specific */
.step-card {
  position: relative;
  padding-top: 5.5rem !important;
  border-top: 3px solid transparent;
}

.step-card:hover {
  border-top-color: var(--accent);
}

.step-badge {
  position: absolute;
  left: 2rem;
  top: 2rem;
  background: var(--accent);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 10px rgba(185, 150, 79, 0.3);
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Footer */
/* Footer Enhancement */
.footer {
  background: #081a2d;
  color: #e2e8f0;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.4rem;
  color: white !important;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: var(--primary);
}

.footer-grid h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
}

.footer-grid h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #94a3b8;
}

.contact-info i {
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pipe-sep {
  color: rgba(255, 255, 255, 0.1);
  font-weight: 300;
}

.dev-credit {
  color: #94a3b8;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.dev-credit a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.dev-credit a:hover {
  color: var(--accent);
}

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

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

/* FAQ Enhancements */
.faq-container details {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-container details[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.faq-container summary {
  padding: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-container summary::after {
  content: "+";
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-container details[open] summary::after {
  transform: rotate(45deg);
}

.faq-container .faq-content {
  padding: 0 2rem 2rem;
}

/* Responsive Global Utilities & Section Optimizations */
/* Contact Section Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .hero {
    padding-top: 130px;
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-content {
    order: 2;
    padding: 0;
  }

  .hero-image-wrap {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image {
    transform: none !important;
    border-radius: 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .hero-stats {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
    margin: -50px auto 0; /* Overlap the image */
    z-index: 20;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    padding: 1.5rem 1rem;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
  }

  .stat-item h3 {
    font-size: 1.4rem;
  }

  .stat-item p {
    font-size: 0.75rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .grid-2, .grid-3, .grid-4, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .logo span {
    display: none;
  }

  .logo img {
    width: 140px;
    height: 80px;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Timeline Mobile Fix */
  .process-steps::before {
    left: 20px;
  }

  .step {
    padding-left: 55px;
    margin-bottom: 3.5rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-content {
    padding: 2rem;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #25d366;
  color: white !important;
  padding: 1rem 2.5rem;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  font-size: 1.4rem;
}

/* Specific Multilingual Text Balance */
[lang="gu"] .hero-title, [lang="hi"] .hero-title {
  line-height: 1.4;
  letter-spacing: 0;
}

/* Ensure no horizontal scroll ever */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
/* Process Timeline */
.process-steps {
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
  padding: 2rem 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(185, 150, 79, 0.1) 100%);
  border-radius: 99px;
}

.step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 5rem;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: white;
  border: 3px solid var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.step-content {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid rgba(0,0,0,0.02);
  position: relative;
}

.step-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
  border-left: 1px solid rgba(0,0,0,0.02);
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

.step-content:hover {
  transform: translateX(15px);
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
  border-color: var(--accent-light);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-main);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.5px;
}

.step-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .process-steps::before { left: 15px; }
  .step { padding-left: 50px; }
  .step-number { width: 35px; height: 35px; font-size: 0.9rem; }
  .step-content { padding: 2rem; }
  .step-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* Advanced FAQ Styling */
.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.faq-search-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.faq-search-wrap i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
}

.faq-search {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  border-radius: 99px;
  border: 1px solid rgba(0,0,0,0.1);
  background: white;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(185, 150, 79, 0.15);
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.cat-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  border: 1px solid rgba(0,0,0,0.05);
  background: white;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cat-btn.active, .cat-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.faq-category-section {
  margin-bottom: 4rem;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.4rem;
}

.faq-category-title i {
  color: var(--accent);
  font-size: 1.6rem;
}

/* About Section Refinement */
.about-section .grid-2 {
  align-items: center;
  gap: 5rem;
}

.about-card {
  background: white;
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.about-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.about-list li i {
  color: var(--accent);
  font-size: 1.4rem;
  background: var(--bg-main);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.15);
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: translateY(-10px);
}

@media (max-width: 992px) {
  .about-section .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* FAQ Footer & Download Button */
.faq-footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-footer p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: var(--primary);
  color: white;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(10, 37, 64, 0.15);
}

.btn-download:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(185, 150, 79, 0.25);
}

.btn-download i {
  font-size: 1.3rem;
}
