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

:root {
  /* Color Palette */
  --primary: #0D47A1;
  --primary-rgb: 13, 71, 161;
  --secondary: #1565C0;
  --secondary-rgb: 21, 101, 192;
  --accent: #FF9800;
  --accent-rgb: 255, 152, 0;
  --accent-hover: #E68A00;
  --background: #F8FAFC;
  --surface: #FFFFFF;
  
  /* Text Colors */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  /* Theme UI */
  --border-color: #E2E8F0;
  --border-hover: #CBD5E1;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 50px;
  
  /* Shadows */
  --shadow-subtle: 0 4px 6px -1px rgba(15, 23, 42, 0.03), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
  --shadow-card: 0 10px 30px -10px rgba(13, 71, 161, 0.08), 0 1px 3px rgba(13, 71, 161, 0.03);
  --shadow-hover: 0 20px 40px -15px rgba(13, 71, 161, 0.15), 0 0 20px rgba(255, 152, 0, 0.05);
  --shadow-btn-accent: 0 8px 20px -6px rgba(255, 152, 0, 0.4);
  --shadow-btn-primary: 0 8px 20px -6px rgba(13, 71, 161, 0.4);
  
  /* Typography & Transitions */
  --font-sans: 'Poppins', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
}

/* 1. Global Resets & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

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

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--radius-round);
  border: 2px solid #F1F5F9;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* 2. Utility Layouts */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-bg-white {
  background-color: var(--surface);
}

.section-bg-gradient {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
}

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

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(13, 71, 161, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-round);
  margin-bottom: 1rem;
  border: 1px solid rgba(13, 71, 161, 0.12);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Primary/Secondary Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-btn-primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
  box-shadow: 0 10px 25px -5px rgba(13, 71, 161, 0.6);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-white);
  box-shadow: var(--shadow-btn-accent);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 10px 25px -5px rgba(255, 152, 0, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* 3. Top Bar & Header Navigation */
.top-bar {
  background-color: var(--primary);
  color: var(--text-white);
  font-size: 0.85rem;
  height: 52px; /* Fixed height around 52px */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* Prevent wrapping of content */
  width: 100%;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.top-bar-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar-ctas {
  display: flex;
  align-items: center;
  gap: 2.25rem; /* Increased spacing between Call and WhatsApp */
}

.top-bar-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.top-bar-cta svg {
  width: 22px; /* Resized contact icons to 20-24px */
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar-cta:hover {
  color: var(--text-white);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.main-header.scrolled {
  box-shadow: var(--shadow-subtle);
  padding: 0.3rem 0;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-container {
  display: flex;
  align-items: center;
  width: 180px;
}

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

.nav-link {
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: var(--radius-round);
  transition: var(--transition-fast);
}

/* 4. Hero Section */
.hero-section {
  padding: 4rem 0 5rem;
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.05) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  border-radius: var(--radius-round);
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-badge .star-icon {
  color: var(--accent);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--primary);
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-trust-badges {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(13, 71, 161, 0.1);
  padding-top: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  background: var(--surface);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(13, 71, 161, 0.05);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--transition-slow);
}

.hero-image-card:hover {
  transform: translateY(-5px);
}

.hero-image-card img {
  border-radius: var(--radius-md);
  width: 100%;
}

.hero-img-accent {
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px dashed rgba(13, 71, 161, 0.15);
  border-radius: var(--radius-lg);
  top: -10px;
  left: -10px;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  border: 1px solid var(--border-color);
  animation: float 4s ease-in-out infinite;
}

.floating-badge-1 {
  bottom: 30px;
  left: -20px;
}

.floating-badge-2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}

.floating-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background: rgba(13, 71, 161, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.floating-badge-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

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

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

/* 5. Stats Trust Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-white);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-subtle);
  margin-top: -2rem;
  border-radius: var(--radius-lg);
}

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

.stat-card {
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

/* 6. About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.about-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(13, 71, 161, 0.08);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

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

.about-visual {
  position: relative;
}

.about-image-wrapper {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 0.75rem;
  border: 1px solid rgba(13, 71, 161, 0.05);
}

.about-image-wrapper img {
  border-radius: var(--radius-md);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--text-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.about-badge h3 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 7. Services Section (Tabbed Category Filter) */
.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service-tab-btn {
  padding: 0.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-base);
}

.service-tab-btn:hover, .service-tab-btn.active {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: var(--shadow-btn-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  transition: var(--transition-slow);
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent);
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 71, 161, 0.15);
}

.service-card:hover::before {
  height: 100%;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(13, 71, 161, 0.06);
  border-radius: var(--radius-md);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 152, 0, 0.1);
  color: var(--accent);
  border-radius: var(--radius-round);
}

.service-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--text-main);
}

.service-feature-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.service-price span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.service-cta {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-cta:hover {
  color: var(--accent-hover);
  gap: 0.5rem;
}

/* 8. Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  padding: 2.25rem;
  transition: var(--transition-base);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 71, 161, 0.15);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(13, 71, 161, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-card:hover .why-icon {
  background-color: var(--primary);
  color: var(--text-white);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

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

/* 9. Timeline Process Section */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

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

.process-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px var(--background);
  z-index: 2;
}

.process-step:hover .process-badge {
  background: var(--accent);
}

.process-content {
  width: 45%;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 2rem;
  transition: var(--transition-base);
}

.process-step:hover .process-content {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 71, 161, 0.15);
}

.process-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.process-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 10. Document Checklist Section */
.checklist-container {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.checklist-sidebar {
  background: #F8FAFC;
  padding: 2rem;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-tab-btn {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-base);
}

.checklist-tab-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.checklist-tab-btn:hover {
  background: rgba(13, 71, 161, 0.04);
  color: var(--primary);
}

.checklist-tab-btn.active {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-btn-primary);
}

.checklist-content {
  padding: 3rem;
}

.checklist-pane {
  display: none;
}

.checklist-pane.active {
  display: block;
}

.checklist-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.checklist-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.checklist-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.checklist-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-item-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.checklist-item-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.checklist-item-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checklist-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

/* 11. Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 71, 161, 0.15);
}

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

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.testimonial-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-badge {
  color: #555;
  background: #F1F5F9;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #FFB300;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* 12. FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(13, 71, 161, 0.2);
  box-shadow: var(--shadow-card);
}

.faq-header {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  transition: var(--transition-base);
}

.faq-header svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-header svg {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) ease-out;
}

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

.faq-item.active .faq-body {
  max-height: 300px; /* high enough threshold */
}

/* 13. Call To Action Banner */
.cta-banner-section {
  padding: 0;
  margin-top: 2rem;
  z-index: 10;
  position: relative;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -50px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.2) 0%, transparent 70%);
  top: -150px;
  right: -50px;
}

.cta-banner-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-banner-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-banner-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* 14. Contact Us Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  padding: 3rem;
}

.contact-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #F8FAFC;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.form-control:focus {
  border-color: var(--secondary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
}

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

.form-feedback {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.form-feedback.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.info-item-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(13, 71, 161, 0.08);
  border-radius: var(--radius-md);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

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

.info-item-content a:hover {
  color: var(--accent);
}

.map-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  padding: 0.5rem;
  overflow: hidden;
  height: 250px;
  position: relative;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-sm);
}

/* 15. Footer */
.main-footer {
  background: #091E42;
  color: var(--text-white);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand .logo-container {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  opacity: 0.8;
  max-width: 320px;
}

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

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

.social-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-links a {
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

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

.footer-info-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  opacity: 0.85;
}

.footer-info-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

/* 16. Floating CTAs (Mobile Specific) */
.floating-mobile-ctas {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
}

.floating-ctas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-white);
  box-shadow: var(--shadow-subtle);
}

.floating-call {
  background-color: var(--primary);
}

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

/* 17. Scroll-Linked Animations (Intersection Observer) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* 18. Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .about-grid {
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 15px;
  }
  .top-bar-info {
    display: none; /* Hide location & office hours to save space on smaller screens */
  }
  .top-bar .container {
    justify-content: center; /* Center Call and WhatsApp sections */
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--surface);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 0;
    gap: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 998;
    transition: var(--transition-base);
  }
  .nav-links.active {
    left: 0;
  }
  .header-cta {
    display: none; /* Hide desktop consultation CTA in sticky header */
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge {
    align-self: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust-badges {
    justify-content: center;
  }
  .hero-image-wrapper {
    margin-top: 2rem;
  }
  .floating-badge {
    display: none; /* Avoid cluttering tablets/mobiles */
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-card:nth-child(even)::after {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    right: 20px;
  }
  .checklist-container {
    grid-template-columns: 1fr;
  }
  .checklist-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .checklist-tab-btn {
    white-space: nowrap;
    width: auto;
  }
  .checklist-tab-btn svg {
    display: none;
  }
  .checklist-content {
    padding: 2rem;
  }
  .process-timeline::before {
    left: 20px;
  }
  .process-badge {
    left: 20px;
  }
  .process-step {
    flex-direction: row !important;
    margin-bottom: 2.5rem;
  }
  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stat-card::after {
    display: none !important;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-card {
    padding: 2rem 1.5rem;
  }
  .cta-banner {
    padding: 2.5rem 1.5rem;
  }
  .cta-banner-title {
    font-size: 1.85rem;
  }
  .floating-mobile-ctas {
    display: block; /* Show floating Call / WhatsApp buttons at the bottom */
  }
  body {
    padding-bottom: 60px; /* Space for sticky floating CTAs on mobile */
  }
}
