/* ═══════════════════════════════════════════
   Atlan Spectrum – Main Stylesheet
════════════════════════════════════════════ */

:root {
  --primary:   #0B3C5D;
  --secondary: #2ECC71;
  --accent:    #F5B041;
  --bg:        #F8F9FA;
  --text:      #2C3E50;
  --white:     #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(11,60,93,.10);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.navbar-brand .logo-text span { color: var(--secondary); }
.navbar-brand .logo-badge {
  font-size: .65rem;
  background: var(--accent);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 4px;
}
.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: .93rem;
  padding: 6px 14px !important;
  transition: color .2s;
}
.nav-link:hover { color: var(--primary) !important; }
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 8px;
}
.dropdown-item {
  border-radius: 8px;
  font-size: .9rem;
  padding: 8px 14px;
  color: var(--text);
  transition: background .2s;
}
.dropdown-item:hover { background: #eaf6ff; color: var(--primary); }
.btn-cta {
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 24px;
  border: none;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,204,113,.35);
  color: var(--white);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5276 60%, #0d6efd22 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,204,113,.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,176,65,.10) 0%, transparent 70%);
  bottom: -80px; left: 10%;
  border-radius: 50%;
}
.hero-badge {
  display: inline-block;
  background: rgba(46,204,113,.2);
  color: var(--secondary);
  border: 1px solid rgba(46,204,113,.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--accent); }
.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.btn-hero-primary {
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 32px;
  border: none;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46,204,113,.4);
  color: var(--white);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.5);
  font-size: 1rem;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat-item { text-align: left; }
.hero-stat-item .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-item .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 32px;
}
.hero-card .card-icon {
  width: 52px; height: 52px;
  background: rgba(46,204,113,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 14px;
}
.hero-card h5 { color: var(--white); font-weight: 700; font-size: 1rem; }
.hero-card p  { color: rgba(255,255,255,.65); font-size: .85rem; margin: 0; }

/* SECTION COMMON */
section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  background: rgba(11,60,93,.08);
  color: var(--primary);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}
.section-sub {
  color: #6c757d;
  font-size: 1rem;
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* SERVICES */
.services { background: var(--white); }
.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid #e9ecef;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,60,93,.12); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h5 { font-weight: 700; font-size: 1.05rem; color: var(--primary); margin-bottom: 10px; }
.service-card p  { color: #6c757d; font-size: .88rem; line-height: 1.65; margin: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--secondary);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  margin-top: 16px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; color: var(--secondary); }

/* WHY CHOOSE US */
.why { background: var(--bg); }
.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(11,60,93,.10); }
.why-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.why-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.why-card p  { color: #6c757d; font-size: .88rem; line-height: 1.65; margin: 0; }

/* INDUSTRIES */
.industries { background: var(--white); }
.industry-item {
  background: var(--bg);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all .25s;
  cursor: default;
}
.industry-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(11,60,93,.2);
}
.industry-item:hover .ind-icon,
.industry-item:hover .ind-name { color: var(--white); }
.ind-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 10px; display: block; transition: color .25s; }
.ind-name { font-size: .88rem; font-weight: 600; color: var(--text); transition: color .25s; }

/* PROCESS */
.process { background: var(--bg); }
.process-step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), #1a5276);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  z-index: 0;
}
.process-step h5 { font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.process-step p  { color: #6c757d; font-size: .88rem; line-height: 1.65; }

/* TRUST / STATS */
.trust { background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%); }
.stat-card { text-align: center; padding: 20px; }
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; margin-top: 6px; }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #0d6b3e 0%, var(--secondary) 100%); padding: 80px 0; }
.cta-banner h2 { color: var(--white); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-banner p  { color: rgba(255,255,255,.82); font-size: 1.05rem; }
.btn-cta-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 34px;
  border: none;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.2); color: var(--primary); }
.btn-cta-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.6);
  font-size: 1rem;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }

/* FOOTER */
footer { background: #0a2d45; color: rgba(255,255,255,.75); padding: 70px 0 30px; }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.footer-brand span { color: var(--secondary); }
footer p { font-size: .88rem; line-height: 1.7; }
.footer-heading { color: var(--white); font-weight: 700; font-size: .95rem; margin-bottom: 18px; letter-spacing: .3px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--secondary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .88rem; }
.footer-contact-item i { color: var(--secondary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 40px 0 24px; }
.footer-bottom { font-size: .82rem; color: rgba(255,255,255,.45); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--secondary); color: var(--white); }

/* RESPONSIVE */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { gap: 20px; }
  .step-connector { display: none; }
  .stat-divider { display: none; }
}

/* HERO LEAD & POINTS */
.hero-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 14px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.hero-points li {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-points li i {
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* STAT NUM – allow text values like PAN India / CA */
.stat-num { word-break: break-word; }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0a2d45 0%, var(--primary) 50%, #1a5276 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--secondary);
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,204,113,.12) 0%, transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,176,65,.08) 0%, transparent 70%);
  bottom: -60px; left: 5%;
  border-radius: 50%;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero h1 .highlight { color: var(--accent); }
.page-hero p {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.page-hero .hero-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 14px;
}
.page-hero .hero-badge {
  background: rgba(46,204,113,.2);
  color: var(--secondary);
  border: 1px solid rgba(46,204,113,.4);
}
.page-hero .hero-points li { color: rgba(255,255,255,.85); }
.page-hero .hero-points li i { color: var(--secondary); }
.page-hero .hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
}
.page-hero .hero-card h5 { color: var(--white); }
.page-hero .hero-card p  { color: rgba(255,255,255,.65); }
.page-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid #e9ecef;
  padding: 10px 0;
  font-size: .82rem;
  color: #6c757d;
}
.page-breadcrumb a { color: var(--primary); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--secondary); }
.page-breadcrumb .sep { margin: 0 8px; color: #ced4da; }
.page-breadcrumb .current { color: var(--text); font-weight: 600; }

/* SERVICE LIST inside cards */
.service-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.service-list li {
  font-size: .87rem;
  color: #6c757d;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  color: var(--secondary);
  font-size: .8rem;
  flex-shrink: 0;
}
.service-list li:last-child { border-bottom: none; }

/* COMPLIANCE ALERT SECTION */
.compliance-alert {
  background: var(--white);
  padding: 90px 0;
}
.penalty-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.penalty-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .95rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}
.penalty-list li:last-child { border-bottom: none; }
.penalty-list li i { color: #e53935; font-size: 1rem; flex-shrink: 0; }

.compliance-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
  border-radius: 24px;
  padding: 40px 36px;
  color: var(--white);
}
.compliance-box-icon {
  width: 60px; height: 60px;
  background: rgba(46,204,113,.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.compliance-box h4 { font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }
.compliance-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compliance-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.compliance-benefits li:last-child { border-bottom: none; }
.compliance-benefits li i { color: var(--secondary); flex-shrink: 0; }

/* WHO NEEDS SECTION */
.who-needs { background: var(--bg); padding: 90px 0; }

/* FAQ SECTION */
.faq-section { background: var(--white); padding: 90px 0; }
.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-btn {
  font-weight: 600;
  font-size: .97rem;
  color: var(--primary);
  background: var(--white);
  padding: 18px 22px;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
  background: #eaf6ff;
  color: var(--primary);
}
.faq-btn::after { filter: none; }
.faq-body {
  font-size: .92rem;
  color: #6c757d;
  line-height: 1.75;
  padding: 4px 22px 20px;
  background: var(--white);
}

@media (max-width: 768px) {
  .page-hero { padding: 70px 0 50px; }
  .compliance-alert { padding: 60px 0; }
  .compliance-box { padding: 28px 22px; }
  .who-needs { padding: 60px 0; }
  .faq-section { padding: 60px 0; }
}

/* ═══════════════════════════════════════════
   ROC PAGE – CHALLENGES & APPROACH SECTIONS
════════════════════════════════════════════ */
.challenges-section {
  background: var(--bg);
  padding: 90px 0;
}
.challenge-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11,60,93,.10);
}
.challenge-icon {
  width: 48px; height: 48px;
  background: #fff3e0;
  color: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.challenge-card p {
  margin: 0;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.6;
  padding-top: 10px;
}
.challenge-cta-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.approach-section {
  background: var(--white);
  padding: 90px 0;
}
.approach-card {
  background: var(--bg);
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11,60,93,.10);
  background: var(--white);
}
.approach-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(11,60,93,.12);
  line-height: 1;
  margin-bottom: 10px;
}
.approach-card h5 {
  font-weight: 700;
  color: var(--primary);
  font-size: .97rem;
  margin-bottom: 8px;
}
.approach-card p {
  font-size: .87rem;
  color: #6c757d;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .challenges-section { padding: 60px 0; }
  .approach-section { padding: 60px 0; }
}

/* ═══════════════════════════════════════════
   INCOME TAX PAGE – UNIQUE SECTIONS
════════════════════════════════════════════ */
.tax-thinking-section {
  background: var(--white);
  padding: 90px 0;
}

/* Tax benefit cards (2x2 grid in hero area) */
.tax-benefit-card {
  background: var(--bg);
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 22px 20px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.tax-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11,60,93,.10);
  background: var(--white);
}
.tax-benefit-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.tax-benefit-card h6 {
  font-weight: 700;
  color: var(--primary);
  font-size: .95rem;
  margin-bottom: 6px;
}
.tax-benefit-card p {
  font-size: .85rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Segment cards (who we work with) */
.segment-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11,60,93,.10);
}
.segment-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.segment-card h5 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 10px;
}
.segment-card p {
  font-size: .87rem;
  color: #6c757d;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .tax-thinking-section { padding: 60px 0; }
}

/* ═══════════════════════════════════════════
   STARTUP PAGE – STRUCTURE CARDS & TIMELINE
════════════════════════════════════════════ */
.structure-card { position: relative; }
.structure-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--secondary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .4px;
}

.timeline-box { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e9ecef;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-dot {
  width: 14px; height: 14px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline-item strong {
  display: block;
  font-size: .95rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2px;
}
.timeline-item p {
  font-size: .85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   INTERNAL LINKING SECTION
════════════════════════════════════════════ */
.internal-links-section {
  background: var(--bg);
  padding: 80px 0;
}
.internal-link-card {
  display: block;
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 18px;
  padding: 28px 24px;
  text-decoration: none;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.internal-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11,60,93,.10);
  border-color: var(--secondary);
}
.internal-link-card i {
  font-size: 1.8rem;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.internal-link-card h6 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}
.internal-link-card p {
  font-size: .86rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 14px;
}
.internal-link-card span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.internal-link-card:hover span { gap: 10px; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5276 60%, #0d6efd22 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,204,113,.15) 0%, transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
}
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
}
.about-hero-text {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 24px;
}
.about-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 8px;
}
.about-points span {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-points span i { color: var(--secondary); }

/* About section bg alternation */
.about-section { background: var(--white); padding: 90px 0; }
.about-section + .approach-section { background: var(--bg); }

/* Who we work with cards */
.about-who-card {
  background: var(--bg);
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.about-who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11,60,93,.10);
  background: var(--white);
}
.about-who-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.about-who-card h6 {
  font-weight: 700;
  color: var(--primary);
  font-size: .95rem;
  margin-bottom: 6px;
}
.about-who-card p {
  font-size: .85rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Team card */
.team-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11,60,93,.12);
}
.team-avatar {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--primary), #1a5276);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: rgba(255,255,255,.8);
  margin: 0 auto 20px;
}
.team-card h5 {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-role {
  display: inline-block;
  background: rgba(46,204,113,.12);
  color: #1a7a45;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: .3px;
}
.team-card p {
  font-size: .88rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 18px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.team-tags span {
  background: var(--bg);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
  .about-hero { padding: 70px 0 50px; }
  .about-section { padding: 60px 0; }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5276 60%, #0d6efd22 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,204,113,.15) 0%, transparent 70%);
  top: -60px; right: -60px;
  border-radius: 50%;
}
.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
}
.contact-hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-body { background: var(--bg); padding: 80px 0 90px; }

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 30px rgba(11,60,93,.07);
  border: 1px solid #e9ecef;
}
.contact-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: .88rem;
  color: #6c757d;
  margin-bottom: 28px;
}

/* Form elements */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.required { color: #e53935; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: .92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,60,93,.08);
}
.form-input::placeholder { color: #adb5bd; }
.form-select-input { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%236c757d' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: .97rem;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
}
.btn-submit:hover {
  background: #0a3352;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,60,93,.25);
}
.form-note {
  font-size: .78rem;
  color: #adb5bd;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Alerts */
.alert-success-box,
.alert-error-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: .9rem;
}
.alert-success-box {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.alert-error-box {
  background: #fce4ec;
  border: 1px solid #f48fb1;
  color: #c62828;
}
.alert-success-box i,
.alert-error-box i { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.alert-success-box strong,
.alert-error-box strong { display: block; font-weight: 700; margin-bottom: 2px; }
.alert-success-box p,
.alert-error-box p { margin: 0; font-size: .85rem; opacity: .85; }

/* Info card */
.contact-info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 4px 30px rgba(11,60,93,.07);
  border: 1px solid #e9ecef;
  position: sticky;
  top: 90px;
}
.contact-info-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-info-sub {
  font-size: .87rem;
  color: #6c757d;
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-info-item p {
  font-size: .88rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}
.contact-info-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.contact-info-item a:hover { color: var(--secondary); }

/* Quick service tags */
.contact-services-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.contact-services-label {
  font-size: .8rem;
  font-weight: 700;
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
}
.contact-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-service-tags a {
  background: var(--bg);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid #e9ecef;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.contact-service-tags a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .contact-hero { padding: 70px 0 50px; }
  .contact-body { padding: 50px 0 60px; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; position: static; }
}
