/* ===================================================
   INTELEGAL CONSULTANTS - Main Stylesheet
   Indian Art-Inspired Flowing Design
   =================================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  --navy:      #003366;
  --teal:      #006688;
  --sky:       #A0C1D6;
  --ice:       #E6F2FA;
  --charcoal:  #4D4D4D;
  --white:     #ffffff;
  --gold:      #C9A84C;
  --gold-lt:   #F0D080;
  --ink:       #1a1a2e;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-hand:  'Kalam', cursive;

  --radius:    16px;
  --radius-lg: 32px;
  --shadow:    0 8px 40px rgba(0,51,102,0.13);
  --shadow-lg: 0 20px 60px rgba(0,51,102,0.18);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Indian Art SVG Background Pattern ---------- */
.indian-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23A0C1D6' stroke-width='0.6' opacity='0.25'%3E%3Ccircle cx='60' cy='60' r='30'/%3E%3Ccircle cx='60' cy='60' r='20'/%3E%3Ccircle cx='60' cy='60' r='10'/%3E%3Cpath d='M60 30 Q75 45 60 60 Q45 45 60 30Z'/%3E%3Cpath d='M60 90 Q75 75 60 60 Q45 75 60 90Z'/%3E%3Cpath d='M30 60 Q45 75 60 60 Q45 45 30 60Z'/%3E%3Cpath d='M90 60 Q75 75 60 60 Q75 45 90 60Z'/%3E%3Ccircle cx='0' cy='0' r='4'/%3E%3Ccircle cx='120' cy='0' r='4'/%3E%3Ccircle cx='0' cy='120' r='4'/%3E%3Ccircle cx='120' cy='120' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Floating Hand-Drawn Illustrations (page-wide) ---------- */
.page-illustrations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-illustrations svg {
  position: absolute;
  opacity: 0.055;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--charcoal); }

.hand-label {
  font-family: var(--font-hand);
  color: var(--teal);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ---------- Container ---------- */
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn:hover::after { transform: scaleX(1); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,51,102,0.35);
}
.btn-primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,102,136,0.4); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(0,30,60,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 max(24px, 4vw);
}
.nav-logo img { height: 52px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  opacity: 0.9;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(160,193,214,0.2);
  opacity: 1;
  color: var(--gold-lt);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,30,55,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(160,193,214,0.2);
  border-radius: var(--radius);
  min-width: 240px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: dropIn 0.25s ease forwards;
}
@keyframes dropIn { from { opacity:0; transform: translateX(-50%) translateY(-8px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(160,193,214,0.15); color: var(--white); padding-left: 26px; }
.dropdown-menu a .d-icon { font-size: 1rem; }

.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,20,50,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-serif);
  padding: 14px 40px;
  text-align: center;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(160,193,214,0.15); color: var(--gold-lt); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, #012650 40%, var(--teal) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(160,193,214,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge span { color: rgba(255,255,255,0.85); font-size: 0.85rem; letter-spacing: 0.05em; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow:0 0 0 0 rgba(201,168,76,0.5); } 50%{ box-shadow:0 0 0 8px rgba(201,168,76,0); } }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold-lt); font-style: normal; }
.hero .hero-desc { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-item { text-align: left; }
.stat-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--gold-lt); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* Hero Right - Floating Cards */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 440px;
}
.h-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(160,193,214,0.25);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: pointer;
  animation: float 4s ease-in-out infinite;
}
.h-card:nth-child(2) { animation-delay: 0.5s; }
.h-card:nth-child(3) { animation-delay: 1s; }
.h-card:nth-child(4) { animation-delay: 1.5s; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }
.h-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(160,193,214,0.5); transform: translateY(-4px) scale(1.02); }
.h-card .icon { font-size: 2rem; margin-bottom: 10px; }
.h-card h4 { color: var(--white); font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.h-card p { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(145deg, var(--navy) 0%, #012650 50%, var(--teal) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .subtitle { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto 28px; }
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.page-hero .breadcrumb a { color: var(--gold-lt); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.35); }

/* ---------- SECTION STYLES ---------- */
section { padding: 80px 0; position: relative; }

.section-tag {
  font-family: var(--font-hand);
  color: var(--teal);
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before, .section-tag::after {
  content: '';
  height: 1px;
  background: var(--sky);
  flex: 0 0 30px;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--charcoal); max-width: 600px; margin: 0 auto 50px; font-size: 1.02rem; }

/* Mandala divider */
.mandala-divider {
  text-align: center;
  margin: 0 0 50px;
  position: relative;
}
.mandala-divider::before, .mandala-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 60px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sky));
}
.mandala-divider::before { left: 0; }
.mandala-divider::after { right: 0; background: linear-gradient(to left, transparent, var(--sky)); }
.mandala-divider svg { width: 48px; height: 48px; color: var(--teal); opacity: 0.6; }

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(160,193,214,0.3);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}
.service-card .card-icon {
  width: 64px; height: 64px;
  background: var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .card-icon { background: var(--navy); }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-card .card-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card:hover .card-link { gap: 12px; color: var(--navy); }

/* ---------- WHY CHOOSE US ---------- */
.why-section { background: var(--ice); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,51,102,0.07);
  transition: var(--transition);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-item .w-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-item p { font-size: 0.85rem; }

/* ---------- PROCESS STEPS ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--teal), var(--sky));
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px 40px;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 0 0 6px var(--ice);
  transition: var(--transition);
}
.step:hover .step-num { background: var(--navy); color: var(--white); border-color: var(--navy); }
.step h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step p  { font-size: 0.82rem; }

/* ---------- FAQ SECTION ---------- */
.faq-section { background: var(--ice); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(160,193,214,0.35);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--sky); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  gap: 12px;
}
.faq-question .faq-icon {
  width: 28px; height: 28px;
  background: var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--teal);
}
.faq-item.open .faq-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-top: 1px solid var(--ice);
  padding-top: 16px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; font-size: 0.95rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--ice);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  transition: var(--transition);
}
.contact-item:hover { transform: translateX(4px); }
.contact-item .c-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 4px; }
.contact-item a, .contact-item p { color: var(--charcoal); font-size: 0.9rem; font-weight: 500; }
.contact-item a:hover { color: var(--teal); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(160,193,214,0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(160,193,214,0.5);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--ice);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,102,136,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ---------- INTRO / INFO SECTION ---------- */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.intro-text .tag { font-family: var(--font-hand); color: var(--teal); margin-bottom: 10px; }
.intro-text h2 { margin-bottom: 16px; }
.intro-text p { margin-bottom: 20px; font-size: 0.95rem; }
.intro-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.intro-art-box {
  height: 380px;
  background: linear-gradient(145deg, var(--ice), var(--sky));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(160,193,214,0.4);
}

/* ---------- INFO CARDS (content sections) ---------- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.info-card {
  background: var(--ice);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--teal);
  transition: var(--transition);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: var(--white); }
.info-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.info-card p, .info-card li { font-size: 0.88rem; }
.info-card ul { padding-left: 16px; }
.info-card li { margin-bottom: 6px; position: relative; padding-left: 4px; }
.info-card li::marker { color: var(--teal); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 48px; filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(255,255,255,0.15)); }
.footer-about { font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }

.footer-col h4 { color: var(--white); font-family: var(--font-serif); font-size: 1rem; margin-bottom: 18px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 28px; height: 2px; background: var(--teal); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--sky); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.85rem; }
.footer-contact-item .fc-icon { flex-shrink:0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--sky); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .intro-section { grid-template-columns: 1fr; }
  .hero .container > div { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-card-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-card-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; }
.text-center .section-desc { margin: 0 auto 50px; }

.bg-ice { background: var(--ice); }
.bg-navy { background: var(--navy); }

.mt-0 { margin-top: 0 !important; }

/* ---------- Indian decorative border ---------- */
.india-border-top {
  border-top: 6px solid transparent;
  border-image: repeating-linear-gradient(90deg,
    var(--gold) 0, var(--gold) 8px,
    var(--navy) 8px, var(--navy) 16px,
    var(--teal) 16px, var(--teal) 24px,
    var(--navy) 24px, var(--navy) 32px
  ) 1;
}

/* ---------- SCROLL TO TOP BUTTON ---------- */
#scrollTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 500;
}
#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--teal); transform: translateY(-3px); }

/* ---------- TAGS / BADGES ---------- */
.tag-chip {
  display: inline-block;
  background: var(--ice);
  color: var(--teal);
  border: 1px solid var(--sky);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 4px;
}

/* =====================================================
   VAKILSEARCH-STYLE SERVICE PAGE LAYOUT
   (Trademark, LMPC, WPC, FSSAI)
===================================================== */

/* ---------- Two-column layout: content + sticky form ---------- */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}
.service-content { min-width: 0; }
.service-sticky-col {
  position: sticky;
  top: 96px;
}

/* ---------- Inline anchor menu ---------- */
.service-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding: 14px 0;
  border-bottom: 2px solid var(--ice);
}
.service-menu a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(160,193,214,0.4);
  transition: var(--transition);
}
.service-menu a:hover, .service-menu a.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---------- Sticky lead form card ---------- */
.lead-form-card {
  background: var(--white);
  border: 1px solid rgba(160,193,214,0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lead-form-header {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 22px 24px 18px;
}
.lead-form-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.lead-form-header p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}
.lead-form-perks {
  padding: 14px 20px;
  background: var(--ice);
  border-bottom: 1px solid rgba(160,193,214,0.3);
}
.lead-form-perks .perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.lead-form-perks .perk:last-child { margin-bottom: 0; }
.lead-form-perks .perk-icon { color: #28a745; font-size: 0.9rem; flex-shrink: 0; }
.lead-form-body { padding: 20px; }
.lead-form-body .form-group { margin-bottom: 14px; }
.lead-form-body label { font-size: 0.75rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }
.lead-form-body input,
.lead-form-body select,
.lead-form-body textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(160,193,214,0.5);
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ice);
  outline: none;
  transition: var(--transition);
}
.lead-form-body input:focus,
.lead-form-body select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,102,136,0.1);
}
.lead-form-body .btn { width: 100%; justify-content: center; padding: 13px; font-size: 0.95rem; }
.form-disclaimer {
  font-size: 0.7rem;
  color: #999;
  text-align: center;
  margin-top: 10px;
}

/* ---------- Trust badges row ---------- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ice);
  border: 1px solid rgba(160,193,214,0.4);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-badge .tb-icon { font-size: 1rem; }

/* ---------- Content section headings ---------- */
.content-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--ice);
}
.content-section:last-child { border-bottom: none; }
.content-section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--sky);
  display: inline-block;
}
.content-section h3 {
  font-size: 1.1rem;
  color: var(--teal);
  margin: 20px 0 10px;
}
.content-section p { margin-bottom: 14px; font-size: 0.95rem; }
.content-section ul {
  padding-left: 0;
  margin-bottom: 16px;
}
.content-section ul li {
  padding: 6px 0 6px 22px;
  font-size: 0.92rem;
  color: var(--charcoal);
  position: relative;
}
.content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- Highlight box ---------- */
.highlight-box {
  background: linear-gradient(135deg, var(--ice), rgba(160,193,214,0.2));
  border: 1px solid var(--sky);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.highlight-box h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.highlight-box p { font-size: 0.88rem; margin: 0; }
.highlight-box.gold-box { border-left-color: var(--gold); background: linear-gradient(135deg, #fdf9ed, #fff8e1); border-color: rgba(201,168,76,0.3); }

/* ---------- Two-column info grid ---------- */
.twoCol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 20px 0;
}
.info-block {
  background: var(--ice);
  border-radius: var(--radius);
  padding: 22px;
  border-top: 4px solid var(--teal);
}
.info-block h4 { color: var(--navy); margin-bottom: 10px; font-size: 1rem; }
.info-block ul { padding-left: 0; }
.info-block ul li {
  padding: 5px 0 5px 18px;
  position: relative;
  font-size: 0.88rem;
}
.info-block ul li::before { content: '→'; position: absolute; left: 0; color: var(--teal); }

/* ---------- Timeline steps ---------- */
.timeline { margin: 20px 0; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  width: 2px;
  height: calc(100% - 4px);
  background: var(--sky);
}
.timeline-item:last-child::before { display: none; }
.tl-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.tl-body h4 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.tl-body p  { font-size: 0.88rem; }

/* ---------- Documents table ---------- */
.docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.docs-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.docs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ice);
  vertical-align: top;
}
.docs-table tr:nth-child(even) td { background: var(--ice); }
.docs-table tr:hover td { background: rgba(160,193,214,0.2); }

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th {
  background: var(--teal);
  color: var(--white);
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
}
.compare-table th:first-child { background: var(--navy); text-align: left; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--ice); text-align: center; }
.compare-table td:first-child { font-weight: 600; color: var(--navy); text-align: left; }
.compare-table tr:nth-child(even) td { background: var(--ice); }

/* ---------- Benefits grid ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.benefit-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--ice);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--teal);
  transition: var(--transition);
}
.benefit-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-item .b-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.benefit-item p { font-size: 0.78rem; }

/* ---------- FAQ (in content area, not separate section) ---------- */
.content-faq .faq-item { margin-bottom: 10px; }
.content-faq .faq-item.open .faq-answer { max-height: 400px; }

/* ---------- Alert/notice box ---------- */
.notice-box {
  background: #fff8e1;
  border: 1px solid rgba(201,168,76,0.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.88rem;
}
.notice-box strong { color: var(--navy); }

/* ---------- Image + text side section ---------- */
.img-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 20px 0;
}
.img-text-section.reverse { direction: rtl; }
.img-text-section.reverse > * { direction: ltr; }
.service-img-box {
  background: linear-gradient(135deg, var(--ice), rgba(160,193,214,0.3));
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(160,193,214,0.4);
}

/* ---------- Responsive for service layout ---------- */
@media (max-width: 1024px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-sticky-col { position: static; }
  .lead-form-card { max-width: 600px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .twoCol-grid { grid-template-columns: 1fr; }
  .img-text-section { grid-template-columns: 1fr; }
  .img-text-section.reverse { direction: ltr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .docs-table, .compare-table { display: block; overflow-x: auto; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .service-menu { gap: 6px; }
  .service-menu a { font-size: 0.72rem; padding: 5px 10px; }
}

