/* Base Reset & Variables */
:root {
  --primary-dark: #1B3A6B;
  --primary-mid: #1F5FAD;
  --saffron: #E87722;
  --green: #3A7D2C;
  --gold: #C9A84C;
  --off-white: #F4F7FC;
  --text-dark: #0D1B35;
  --text-muted: #5A6A80;
  --border: #D0DDF0;
  --white: #FFFFFF;
}

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

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

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus ring — WCAG AA */
*:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reusable Components */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 5rem 0;
}

.label {
  font-size: 0.75rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 620px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--primary-mid);
}

.btn-outline {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 58, 107, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.modal-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-logo h3 {
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.modal-card h2 {
  color: var(--saffron);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.modal-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.modal-card ul {
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--text-dark);
  list-style: disc;
}

.modal-card ul li {
  margin-bottom: 0.5rem;
}

/* Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle {
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.logo-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.nav-item {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

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

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width 0.3s ease;
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.nav-close {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-dark);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, #E6EDF5 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 40vw;
  font-weight: 700;
  color: var(--primary-dark);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: 58%;
}

.hero-eyebrow {
  background: var(--saffron);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero p.subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
  flex-wrap: wrap;
}

.trust-strip span.divider {
  color: var(--border);
}

.hero-visual {
  width: 42%;
  display: flex;
  justify-content: center;
}

.hero-svg-group {
  animation: float 4s ease-in-out infinite;
  width: 100%;
  max-width: 450px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Stats Section */
.stats {
  background: var(--primary-dark);
  padding: 4rem 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -1rem;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
}

/* Marquee Section */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  text-align: center;
}

.marquee-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.marquee-container {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  animation: scroll 30s linear infinite;
}

.industry-pill {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--primary-mid);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About Us Section */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-left h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.about-left p {
  margin-bottom: 2rem;
}

.value-chips {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.chip {
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chip::before {
  content: '●';
  color: var(--saffron);
}

.icai-reg {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  width: fit-content;
}

.icai-reg svg {
  width: 16px;
  height: 16px;
  fill: var(--green);
  flex-shrink: 0;
}

.about-right-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  padding: 3rem;
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(27, 58, 107, 0.15);
}

.about-right-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-right-card .quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

/* How We Work Section */
.process {
  background: var(--white);
  text-align: center;
}

.process .label {
  display: block;
  text-align: center;
}

.process h2 {
  color: var(--primary-dark);
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  text-align: left;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: transparent;
  border-top: 2px dashed var(--primary-mid);
  z-index: 0;
}

.timeline-step {
  width: 22%;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 8px var(--white);
}

.timeline-step h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

/* Services Section */
.services {
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-top-color: var(--saffron);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  stroke: var(--primary-mid);
}

.service-card h3 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link {
  color: var(--primary-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--primary-dark);
}

/* Industries Section */
.industries {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.industry-tag {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.industry-tag:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

/* Why Choose Us Section */
.why-us {
  background: var(--off-white);
  text-align: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

/* Team Section */
.team {
  background: var(--white);
  text-align: center;
}

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

.team-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  transition: box-shadow 0.3s ease;
}

.team-card:hover .avatar {
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--gold);
}

.avatar-1 { background: linear-gradient(135deg, var(--primary-dark), #2a5298); }
.avatar-2 { background: linear-gradient(135deg, var(--primary-mid), #3a7bd5); }
.avatar-3 { background: linear-gradient(135deg, var(--green), #56ab2f); }
.avatar-4 { background: linear-gradient(135deg, var(--saffron), #f12711); }

.team-card h3 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-title {
  color: var(--saffron);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.team-expertise {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Compliance Calendar Section */
.compliance {
  background: var(--off-white);
  text-align: center;
}

.table-container {
  overflow-x: auto;
  margin-top: 3rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.compliance-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compliance-table th {
  background: var(--primary-dark);
  color: var(--white);
  padding: 1.5rem;
  font-weight: 600;
}

.compliance-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.compliance-table tr:last-child td {
  border-bottom: none;
}

.compliance-table tr:nth-child(even) {
  background: var(--off-white);
}

.td-date {
  color: var(--saffron);
  font-weight: 700;
  font-size: 1.1rem;
}

.table-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* Testimonials Section */
.testimonials {
  background: var(--white);
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 20px 20px;
  text-align: center;
  position: relative;
}

.testimonials-carousel {
  max-width: 760px;
  margin: 3rem auto 2rem;
  position: relative;
  min-height: 220px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 2.5rem 3rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(27,58,107,0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  z-index: 1;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.quote-mark {
  color: var(--saffron);
  font-size: 4rem;
  font-family: Georgia, serif;
  line-height: 0;
  position: absolute;
  top: 3rem;
  left: 2rem;
  opacity: 0.2;
}

.stars {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-dark);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--primary-dark);
}

/* FAQ Section */
.faq {
  background: var(--off-white);
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-dark);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #fcfdfd;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--saffron);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.contact-detail-icon {
  font-size: 1.25rem;
}

.map-container {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.contact-form-container {
  background: var(--off-white);
  padding: 3rem;
  border-radius: 12px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 2px rgba(31, 95, 173, 0.1);
}

.btn-submit {
  width: 100%;
  background: #25D366;
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  color: #1a6e2e;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-status.error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
  display: block;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding-top: 4.5rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-reg {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--saffron);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--saffron);
}

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

.footer-bottom-links a {
  margin-left: 1rem;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.footer-disclaimer {
  background: #112544;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Floating Elements */
.fab-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
}

.fab-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 998;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-mid);
  transform: translateY(-3px);
}

.mobile-bottom-bar {
  display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-mid);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    width: 100%;
    margin-bottom: 3rem;
  }
  .hero-visual {
    width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .trust-strip {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .hamburger {
    display: block;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2.5rem 2rem;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1000;
    box-shadow: -4px 0 30px rgba(0,0,0,0.12);
    gap: 0;
  }
  
  .nav-links.active {
    right: 0;
  }

  .nav-close {
    display: block;
  }
  
  .nav-item {
    font-size: 1.25rem;
    padding: 0.85rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .btn-cta {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: 8px;
  }
  
  .timeline {
    flex-direction: column;
  }
  
  .timeline::before {
    top: 0;
    left: 24px;
    width: 2px;
    height: 100%;
    border-top: none;
    border-left: 2px dashed var(--primary-mid);
  }
  
  .timeline-step {
    width: 100%;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .step-number {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    z-index: 999;
  }
  .mobile-bottom-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
  }
  .m-call { background: var(--primary-dark); }
  .m-whatsapp { background: var(--green); }
  
  .fab-whatsapp {
    bottom: 70px;
    width: 50px;
    height: 50px;
  }
  .back-to-top {
    bottom: 130px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item::after {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .modal-card {
    padding: 2rem 1.5rem;
  }
}
