/* ----------------------------------------------------
   DESIGN SYSTEM - EASY BIZFILINGS
   A premium, modern corporate registration & compliance landing page
---------------------------------------------------- */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Color Palette */
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-500: #64748b;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-slate-50: #f8fafc;
  
  --color-primary: #0ea5e9; /* Teal-blue accent */
  --color-primary-hover: #0284c7;
  --color-primary-light: rgba(14, 165, 233, 0.08);
  
  --color-success: #10b981; /* Emerald/Green compliance accent */
  --color-success-hover: #059669;
  --color-success-light: rgba(16, 185, 129, 0.08);
  
  --color-indigo: #6366f1;
  --color-indigo-light: rgba(99, 102, 241, 0.08);
  
  --color-warning: #f59e0b;
  --color-warning-light: rgba(245, 158, 11, 0.08);
  
  --color-danger: #ef4444;
  --color-danger-light: rgba(239, 68, 68, 0.08);

  --color-white: #ffffff;
  --color-card-border: rgba(226, 232, 240, 0.8);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.07);
  --shadow-glow: 0 0 40px -10px rgba(14, 165, 233, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  /* Layout */
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-slate-700);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-slate-900);
  font-weight: 700;
  line-height: 1.25;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

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

button {
  cursor: pointer;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.badge-primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}
.badge-success {
  background-color: var(--color-success-light);
  color: var(--color-success);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 8px;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--color-slate-900);
  color: var(--color-white);
  border: 1px solid var(--color-slate-900);
}

.btn-primary:hover {
  background-color: var(--color-slate-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-slate-900);
  border: 1px solid var(--color-slate-200);
}

.btn-secondary:hover {
  background-color: var(--color-slate-50);
  border-color: var(--color-slate-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.btn-accent:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.hero-actions-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

/* ----------------------------------------------------
   HEADER
---------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.6);
  transition: var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-slate-200);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-slate-900);
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo span {
  color: var(--color-success);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-slate-700);
  position: relative;
  padding: 8px 0;
}

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

.nav-links a:hover {
  color: var(--color-slate-900);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-footer {
  display: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-slate-500);
  transition: var(--transition-fast);
}

.icon-btn:hover {
  background-color: var(--color-slate-100);
  color: var(--color-slate-900);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-slate-900);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero {
  position: relative;
  padding: 160px 0 100px 0;
  overflow: hidden;
  background-color: #f8fafc;
}

/* Glowing mesh effect */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-slate-500);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Name Checker Box */
.search-container {
  background-color: var(--color-white);
  padding: 8px 8px 8px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px auto;
  border: 1px solid var(--color-slate-200);
}

.search-input-group {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 12px;
}

.search-input-group svg {
  color: var(--color-slate-500);
  flex-shrink: 0;
}

.search-input-group input {
  width: 100%;
  font-size: 1rem;
  color: var(--color-slate-900);
}

.search-input-group input::placeholder {
  color: var(--color-slate-500);
}

.search-container select {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-slate-700);
  padding: 8px 28px 8px 12px;
  border-radius: var(--radius-sm);
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}

/* Service Quick Tags */
.quick-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.tag-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-slate-700);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.tag-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  transform: translateY(-1px);
}

.tag-btn svg {
  color: var(--color-primary);
}

.tag-btn.tag-success svg {
  color: var(--color-success);
}
.tag-btn.tag-success:hover {
  border-color: var(--color-success);
  color: var(--color-success);
  background-color: var(--color-success-light);
}

/* ----------------------------------------------------
   PARTNER LOGOS
---------------------------------------------------- */
.partners {
  padding: 40px 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-slate-100);
}

.partners-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.partner-logo {
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-slate-500);
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition-fast);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: var(--color-slate-900);
}

.partner-logo svg {
  height: 28px;
  margin-right: 8px;
}

/* ----------------------------------------------------
   "COMPLIANCE, AUTOMATED" FEATURE SECTION
---------------------------------------------------- */
.features-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.features-text .badge {
  margin-bottom: 16px;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.features-desc {
  font-size: 1.05rem;
  color: var(--color-slate-500);
  margin-bottom: 32px;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bullet-icon {
  background-color: var(--color-success-light);
  color: var(--color-success);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bullet-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.bullet-text p {
  color: var(--color-slate-500);
  font-size: 0.95rem;
}

/* Visual Dashboard Graphic (Interactive CSS mockup) */
.features-graphic {
  position: relative;
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.hub-center {
  position: relative;
  z-index: 5;
  background-color: var(--color-slate-900);
  color: var(--color-white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-center svg {
  animation: pulse-ring 2s infinite;
}

.hub-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.node {
  position: absolute;
  background-color: var(--color-white);
  border: 1px solid var(--color-slate-200);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  animation: float 4s ease-in-out infinite;
}

.node svg {
  color: var(--color-primary);
}

.node.node-success svg {
  color: var(--color-success);
}

.node.node-indigo svg {
  color: var(--color-indigo);
}

/* Nodes Positions */
.node-1 { top: 15%; left: 15%; animation-delay: 0s; }
.node-2 { top: 15%; right: 15%; animation-delay: 1s; }
.node-3 { bottom: 15%; left: 15%; animation-delay: 2s; }
.node-4 { bottom: 15%; right: 15%; animation-delay: 3s; }
.node-5 { top: 50%; left: 10%; transform: translateY(-50%); animation-delay: 1.5s; }
.node-6 { top: 50%; right: 10%; transform: translateY(-50%); animation-delay: 2.5s; }

/* SVG Connecting lines mapping behind */
.connecting-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.connecting-lines path {
  stroke: var(--color-slate-200);
  stroke-width: 2;
  stroke-dasharray: 4 4;
  fill: none;
  animation: dash 30s linear infinite;
}

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

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

/* ----------------------------------------------------
   OUR SERVICES SECTION (8 Detail Cards)
---------------------------------------------------- */
.solutions-section {
  padding: 100px 0;
  background-color: var(--color-slate-50);
}

.section-header {
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--color-slate-500);
  font-size: 1.05rem;
}

.services-wrapper-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-detail-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.service-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service colors dynamic mapping */
.card-icon.icon-1 { background-color: var(--color-primary-light); color: var(--color-primary); }
.card-icon.icon-2 { background-color: var(--color-indigo-light); color: var(--color-indigo); }
.card-icon.icon-3 { background-color: var(--color-success-light); color: var(--color-success); }
.card-icon.icon-4 { background-color: var(--color-warning-light); color: var(--color-warning); }
.card-icon.icon-5 { background-color: var(--color-indigo-light); color: var(--color-indigo); }
.card-icon.icon-6 { background-color: var(--color-danger-light); color: var(--color-danger); }
.card-icon.icon-7 { background-color: var(--color-primary-light); color: var(--color-primary); }
.card-icon.icon-8 { background-color: var(--color-warning-light); color: var(--color-warning); }

.service-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-slate-500);
  opacity: 0.25;
}

.service-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-detail-card:nth-child(2n) .service-tagline {
  color: var(--color-indigo);
}

.service-detail-card:nth-child(3n) .service-tagline {
  color: var(--color-success);
}

.service-description {
  color: var(--color-slate-500);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.inclusions {
  margin-bottom: 24px;
  flex: 1;
}

.inclusions h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate-900);
  margin-bottom: 12px;
}

.inclusions ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inclusions li {
  font-size: 0.88rem;
  color: var(--color-slate-500);
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.inclusions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.tip-box {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--color-slate-700);
  line-height: 1.4;
}

.tip-box strong {
  color: var(--color-slate-900);
}

.tip-box.success-tip {
  background-color: var(--color-success-light);
  border-left-color: var(--color-success);
}

/* ----------------------------------------------------
   "WHY CHOOSE US" SECTION
---------------------------------------------------- */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-slate-100);
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 48px;
}

.why-card {
  flex: 1 1 320px;
  max-width: 360px;
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-card-border);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card:nth-child(even) .why-icon {
  background-color: var(--color-success-light);
  color: var(--color-success);
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--color-slate-500);
  line-height: 1.5;
}

/* ----------------------------------------------------
   STEP-BY-STEP WORKFLOW TIMELINE
---------------------------------------------------- */
.workflow-section {
  padding: 100px 0;
  background-color: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-100);
}

.workflow-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 40px;
  margin-top: 60px;
}

.workflow-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 2px;
  background-color: var(--color-slate-200);
  z-index: 1;
}

.workflow-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.step-badge {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: var(--color-slate-900);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.workflow-step:hover .step-badge {
  background-color: var(--color-primary);
  transform: scale(1.08);
}

.workflow-step h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.workflow-step p {
  font-size: 0.95rem;
  color: var(--color-slate-500);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

/* ----------------------------------------------------
   FAQ SECTION (ACCORDION)
---------------------------------------------------- */
.faq-section {
  padding: 100px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-slate-100);
}

.faq-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  background-color: var(--color-white);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-slate-900);
  text-align: left;
  gap: 16px;
}

.faq-toggle {
  color: var(--color-slate-500);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--color-primary);
}

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

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  color: var(--color-slate-500);
  font-size: 0.95rem;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

/* ----------------------------------------------------
   CONTACT DETAILS / OFFICE ADDRESS CARD
---------------------------------------------------- */
.cta-section {
  padding: 80px 0;
  background-color: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-100);
}

.cta-wrapper-box {
  background: linear-gradient(135deg, var(--color-slate-900) 0%, #1e293b 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.cta-wrapper-box::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.cta-info-panel {
  position: relative;
  z-index: 2;
  text-align: left;
}

.cta-info-panel h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-info-panel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.5;
}

.contact-list-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-new {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background-color: rgba(14, 165, 233, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.contact-row:nth-child(2) .contact-icon-new {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
  border-color: rgba(16, 185, 129, 0.2);
}

.contact-row:nth-child(3) .contact-icon-new {
  background-color: rgba(99, 102, 241, 0.15);
  color: var(--color-indigo);
  border-color: rgba(99, 102, 241, 0.2);
}

.contact-info-text span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-info-text strong {
  font-size: 1.1rem;
  color: var(--color-white);
  font-weight: 700;
}

.office-hours-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.office-hours-tag svg {
  color: var(--color-primary);
}

/* Form Panel */
.cta-form-panel {
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  text-align: left;
}

.cta-form-panel h4 {
  font-size: 1.35rem;
  color: var(--color-slate-900);
  margin-bottom: 8px;
  font-weight: 700;
}

.cta-form-panel p {
  font-size: 0.9rem;
  color: var(--color-slate-500);
  margin-bottom: 24px;
}

.form-group-new {
  margin-bottom: 20px;
}

.form-group-new label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: 8px;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-wrapper svg {
  position: absolute;
  left: 16px;
  color: var(--color-slate-500);
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-input-wrapper input,
.form-input-wrapper select {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-slate-900);
  background-color: var(--color-slate-50);
  transition: var(--transition-normal);
  appearance: none;
}

.form-input-wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-input-wrapper .phone-prefix {
  position: absolute;
  left: 16px;
  font-weight: 700;
  color: var(--color-slate-800);
  font-size: 0.95rem;
}

.form-input-wrapper input[type="tel"] {
  padding-left: 54px;
}

.form-input-wrapper input:focus,
.form-input-wrapper select:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-input-wrapper input:focus + svg,
.form-input-wrapper select:focus + svg {
  color: var(--color-primary);
}

.btn-block {
  width: 100%;
  padding: 14px;
}

/* Success Message styles */
.form-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.form-success-message svg {
  background-color: var(--color-success-light);
  color: var(--color-success);
  border-radius: var(--radius-full);
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-success-message h4 {
  font-size: 1.4rem;
  color: var(--color-slate-900);
  margin-bottom: 8px;
}

.form-success-message p {
  font-size: 0.95rem;
  color: var(--color-slate-500);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-slate-100);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--color-slate-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  color: var(--color-slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate-900);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-slate-500);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-slate-100);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--color-slate-500);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: var(--color-slate-500);
}

.footer-legal a:hover {
  color: var(--color-primary);
}

/* ----------------------------------------------------
   RESPONSIVENESS (MEDIA QUERIES)
---------------------------------------------------- */
@media (max-width: 1200px) {
  .services-wrapper-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .services-wrapper-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 3;
    margin-bottom: 16px;
  }
  .cta-wrapper-box {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    pointer-events: none;
    z-index: 999;
    display: flex;
    box-shadow: none;
    border-bottom: none;
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-slate-900);
    border-bottom: 1px solid var(--color-slate-100);
    padding-bottom: 12px;
    width: 100%;
    display: block;
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--color-slate-200);
  }

  .mobile-support-box {
    background-color: var(--color-slate-50);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .mobile-support-box .support-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .mobile-support-box .support-phone {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: none;
    padding-bottom: 0;
    width: auto;
  }

  .mobile-support-box .support-phone svg {
    color: var(--color-primary);
  }

  .mobile-support-box .support-hours {
    font-size: 0.75rem;
    color: var(--color-slate-500);
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-title {
    font-size: 2.45rem;
  }
  
  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 16px;
  }

  .workflow-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .workflow-timeline::before {
    display: none;
  }

  .workflow-step {
    padding: 0;
  }

  .cta-wrapper-box {
    padding: 30px 20px;
    gap: 36px;
  }
  .cta-form-panel {
    padding: 24px;
  }

  .partners-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 8px;
    gap: 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .partners-inner::-webkit-scrollbar {
    display: none;
  }

  .partner-logo {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 600px) {
  .services-wrapper-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .hero-title {
    font-size: 2rem;
  }
  .cta-info-panel h2 {
    font-size: 1.85rem;
  }
}
