/* ===== Variables ===== */
:root {
  --navy: #041B4D;
  --navy-dark: #0d2a6b;
  --blue: #0B5ED7;
  --blue-light: #2563eb;
  --yellow: #facc15;
  --yellow-hover: #fde047;
  --green: #22c55e;
  --gray-50: #f5f7fb;
  --gray-100: #f7f9fc;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 3px 16px rgba(0, 0, 0, 0.07);
  --section-pad: 60px;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  color: #1f2937;
  line-height: 1.55;
  background: var(--white);
  font-size: 1rem;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

.text-blue {
  color: var(--blue-light);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  padding: 14px 24px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  padding: 13px 20px;
  font-size: 0.84rem;
}

.btn-blue:hover {
  background: #094db1;
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 24px;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
}

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

.btn-white {
  background: var(--white);
  color: var(--blue);
  padding: 14px 24px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.7rem;
}

/* ===== Header ===== */
.header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-nocn {
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.logo-renewal {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--yellow);
  letter-spacing: 0.13em;
}

.nav {
  display: none;
  gap: 32px;
  font-size: 1rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--yellow);
}

.header-phone {
  display: none;
  text-align: right;
}

.phone-link {
  font-weight: 700;
  font-size: 1.22rem;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
}

.phone-link:hover {
  color: var(--yellow);
}

.phone-hours {
  font-size: 0.78rem;
  color: #bfdbfe;
  display: block;
}

.menu-toggle {
  color: var(--white);
  font-size: 1.2rem;
  padding: 4px;
}

.menu-toggle:hover {
  color: var(--yellow);
}

/* Mobile nav open */
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(rgba(4, 27, 77, 0.78), rgba(4, 27, 77, 0.88)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 48px 0 56px;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.badge i {
  color: var(--green);
  filter: drop-shadow(0 0 3px rgba(34, 197, 94, 0.5));
  animation: badgeCheckPulse 2s infinite ease-in-out;
}

@keyframes badgeCheckPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.8)); }
}

.hero-content h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}

.highlight-yellow {
  color: var(--yellow);
  display: block;
}

.hero-desc {
  font-size: 1rem;
  color: #bfdbfe;
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--green) 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-checklist li:hover .check-icon {
  transform: scale(1.2) rotate(12deg);
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.5);
}

/* CPCS Card Visual */
.hero-card-visual {
  perspective: 800px;
}

.cpcs-card {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1.6;
  background: linear-gradient(135deg, #1e40af 0%, #0B5ED7 50%, #041B4D 100%);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.4s ease;
}

.cpcs-card:hover {
  transform: rotateY(0) rotateX(0);
}

.cpcs-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cpcs-card-label {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.09em;
}

.cpcs-card-type {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 6px;
}

.cpcs-card-body {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.cpcs-chip {
  width: 34px;
  height: 26px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 4px;
}

.cpcs-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cpcs-lines span {
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.cpcs-lines span:nth-child(1) { width: 80%; }
.cpcs-lines span:nth-child(2) { width: 60%; }
.cpcs-lines span:nth-child(3) { width: 70%; }

.cpcs-card-footer {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  color: #1f2937;
}

.form-header {
  text-align: center;
  margin-bottom: 22px;
}

.form-header h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}

.form-header p {
  color: var(--gray-500);
}

.form-header strong {
  color: var(--blue);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #0B1E4F;
  margin-bottom: 6px;
  font-size: 0.84rem;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.input-wrap input {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 14px 12px 40px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
}

.input-wrap input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.input-wrap:focus-within i {
  color: var(--blue-light);
  transform: translateY(-50%) scale(1.15);
}

.module-select-wrap {
  position: relative;
}

.module-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.module-dropdown.show {
  display: block;
}

.module-option {
  padding: 10px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
}

.module-option:hover {
  background: #eef3ff;
  color: var(--blue);
}

.selected-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.module-tag {
  background: #eef3ff;
  color: var(--blue);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.module-tag button {
  color: #ef4444;
  font-size: 0.8rem;
  padding: 0 2px;
}

.form-secure {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-500);
  margin: 10px 0;
}

.form-secure i {
  margin-right: 4px;
}

.form-help {
  text-align: center;
  margin-top: 14px;
}

.form-help p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 26px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item:hover .trust-item-icon-box {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-3px) rotate(8deg);
  box-shadow: 0 6px 16px rgba(250, 204, 21, 0.35);
  border-color: var(--yellow);
}

.trust-item strong {
  display: block;
  font-size: 0.84rem;
}

.trust-item span {
  font-size: 0.75rem;
  color: #bfdbfe;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
}

.section-header p {
  color: var(--gray-600);
  font-size: 0.98rem;
  margin-top: 10px;
}

/* ===== Modules Section ===== */
.modules-section {
  padding: var(--section-pad) 0;
  background: #f8fafc; /* Very light slate blue for separation */
}

.modules-search-container {
  max-width: 800px;
  margin: 0 auto 48px;
}

.multi-select-wrap {
  position: relative;
  margin-bottom: 24px;
}

.multi-select-box {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  background: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  cursor: text;
  transition: all 0.25s ease;
  min-height: 52px;
}

.multi-select-box:focus-within {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.multi-select-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.multi-select-chip {
  background: #eef2ff;
  color: var(--blue-light);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e0e7ff;
}

.multi-select-chip button {
  color: var(--gray-500);
  font-size: 0.9rem;
  padding: 0;
  line-height: 1;
}

.multi-select-chip button:hover {
  color: #ef4444;
}

.multi-select-input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.92rem;
  flex: 1;
  min-width: 180px;
  padding: 4px 0;
  color: #1f2937;
}

.multi-select-input::placeholder {
  color: var(--gray-500);
}

.multi-select-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: var(--gray-500);
  padding-left: 8px;
}

.multi-select-clear {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.multi-select-clear:hover {
  color: #ef4444;
}

.multi-select-chevron {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.selected-summary {
  margin-top: 24px;
  animation: slideUp 0.3s ease;
}

.selected-summary h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.selected-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selected-tag {
  background: #eff6ff;
  color: var(--blue-light);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid #dbeafe;
}

.modules-action {
  text-align: center;
  margin-top: 28px;
}

/* Yellow Help Box */
.help-box {
  border: 2px solid var(--yellow);
  background: #fefdf0;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.help-box-content {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.help-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4, 27, 77, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--navy);
  flex-shrink: 0;
}

.help-box-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.help-box-text p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.help-box-action {
  flex-shrink: 0;
}

.help-box .btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
  padding: 12px 20px;
  font-size: 0.85rem;
}

.help-box .btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

@media (min-width: 768px) {
  .help-box {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== Renewal Requirements Section ===== */
.requirements-section {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.requirements-grid {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.requirement-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 94, 215, 0.15);
}

.requirement-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 1px solid #e0e7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.05);
}

.requirement-icon {
  font-size: 1.8rem;
  color: var(--blue);
  transition: all 0.35s ease;
}

.requirement-card:hover .requirement-icon-container {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-color: var(--blue-light);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 94, 215, 0.25);
}

.requirement-card:hover .requirement-icon {
  color: var(--white);
}

.requirement-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.requirement-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.requirement-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 32px;
  text-align: left;
  padding-left: 10px;
}

.requirement-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
}

.requirement-checklist li i {
  color: var(--green);
  font-size: 0.95rem;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

/* Requirements Banner */
.requirements-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  color: var(--white);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--white);
}

.banner-content p {
  font-size: 0.95rem;
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.banner-btn {
  display: inline-flex;
  min-width: 220px;
}

/* ===== Process ===== */
.process {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  gap: 16px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 26px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 94, 215, 0.2);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 26px;
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 3px 8px rgba(11, 94, 215, 0.3);
  transition: all 0.3s ease;
}

.process-card:hover .step-number {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.4);
}

.process-icon-container {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 1px solid #e0e7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.05);
}

.process-icon {
  font-size: 1.75rem;
  color: var(--blue);
  margin-bottom: 0;
  transition: all 0.35s ease;
}

.process-card:hover .process-icon-container {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-color: var(--blue-light);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 94, 215, 0.25);
}

.process-card:hover .process-icon {
  color: var(--white);
  transform: rotate(5deg);
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-card p {
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 0.88rem;
}

.process-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
}

/* ===== Why Choose ===== */
.why-choose {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
}

.why-grid {
  display: grid;
  gap: 16px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 94, 215, 0.15);
}

.why-icon-container {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5f7fb 0%, #eef2ff 100%);
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card i {
  font-size: 1.55rem;
  color: var(--blue);
  margin-bottom: 0;
  transition: all 0.35s ease;
}

.why-card:hover .why-icon-container {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-color: var(--blue-light);
  transform: rotate(8deg) scale(1.08);
  box-shadow: 0 8px 18px rgba(11, 94, 215, 0.2);
}

.why-card:hover i {
  color: var(--white);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid #f3f4f6;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.stars {
  color: var(--yellow);
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

.stars i {
  filter: drop-shadow(0 1px 2px rgba(250, 204, 21, 0.2));
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover .stars i {
  transform: scale(1.22);
  filter: drop-shadow(0 2px 5px rgba(250, 204, 21, 0.5));
}

.testimonial-card:hover .stars i:nth-child(1) { transition-delay: 0s; }
.testimonial-card:hover .stars i:nth-child(2) { transition-delay: 0.04s; }
.testimonial-card:hover .stars i:nth-child(3) { transition-delay: 0.08s; }
.testimonial-card:hover .stars i:nth-child(4) { transition-delay: 0.12s; }
.testimonial-card:hover .stars i:nth-child(5) { transition-delay: 0.16s; }

.quote {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 18px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.reviewer strong {
  display: block;
  color: var(--navy-dark);
  font-size: 0.9rem;
}

.reviewer span {
  font-size: 0.7rem;
  color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  background: #f8fbff;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-align: left;
  gap: 14px;
}

.faq-question i {
  width: 28px;
  height: 28px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--blue-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  background: var(--blue);
  color: var(--white);
  transform: rotate(180deg);
  box-shadow: 0 3px 8px rgba(11, 94, 215, 0.25);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 22px 18px;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Bottom CTA ===== */
.bottom-cta {
  padding: 52px 0;
  background: var(--gray-50);
}

.cta-banner {
  background:
    linear-gradient(rgba(4, 27, 77, 0.92), rgba(4, 27, 77, 0.95)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  border-radius: 26px;
  border: 1px solid #123c8c;
  padding: 34px 28px;
  display: grid;
  gap: 26px;
  color: var(--white);
}

.cta-left h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 900;
  line-height: 1.15;
}

.cta-left p {
  color: #bfdbfe;
  font-size: 0.95rem;
  margin-top: 12px;
}

.cta-center {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
}

.check-icon-sm {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--yellow) 0%, #eab308 100%);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(250, 204, 21, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-check:hover .check-icon-sm {
  transform: scale(1.18) rotate(10deg);
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.5);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-or {
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-brand p {
  color: #bfdbfe;
  font-size: 0.88rem;
  margin: 16px 0;
  line-height: 1.6;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  transform: translateY(-3px) scale(1.15);
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.4);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

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

.footer-links a {
  color: #bfdbfe;
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.footer-contact a,
.footer-contact p {
  color: #bfdbfe;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #93c5fd;
}

/* ===== Floating Widget ===== */
.floating-widget {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 220px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  z-index: 200;
  text-align: center;
  border: 2px solid var(--yellow);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-widget.show {
  display: block;
}

.widget-close {
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--gray-500);
  font-size: 1rem;
}

.widget-avatar {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 8px;
  position: relative;
  animation: widgetPulse 2s infinite ease-in-out;
}

@keyframes widgetPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(11, 94, 215, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0);
  }
}

.widget-title {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.78rem;
  margin-bottom: 2px;
}

.widget-desc {
  font-size: 0.68rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.widget-phone {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 22px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--gray-500);
  font-size: 1rem;
}

.modal-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 2px solid #dcfce7;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  animation: scaleInCheck 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleInCheck {
  from {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.modal h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal p {
  color: var(--gray-600);
  margin-bottom: 18px;
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .header-phone {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 20px;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-banner {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 40px;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

@media (max-width: 1023px) {
  .header-inner {
    position: relative;
  }

  .floating-widget.show {
    display: block;
  }
}

/* ===== Booking Page Styles ===== */
.booking-page-body {
  background-color: #f8fafc;
}

.booking-section {
  padding: 48px 0 80px;
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-header h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.booking-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.booking-grid {
  display: grid;
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.booking-summary-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
}

.summary-categories h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.booking-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
}

.booking-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #f8fbff;
  border: 1px solid #eef2ff;
  border-radius: var(--radius-md);
  padding: 16px 12px;
  transition: all 0.25s ease;
}

.booking-trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 94, 215, 0.15);
  box-shadow: var(--shadow-sm);
}

.booking-trust-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.booking-form-card {
  padding: 34px 28px;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 16px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 10px;
}

/* ===== Success Page Styles ===== */
.success-page-body {
  background-color: #f8fafc;
}

.success-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px - 380px);
  padding: 60px 18px;
  width: 100%;
}

.success-container {
  width: 100%;
  max-width: 600px;
}

.success-card {
  background: var(--white);
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.success-check-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.success-card h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.success-subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.success-urgent-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 32px;
}

.success-urgent-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.success-urgent-box p {
  font-size: 0.84rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

.success-call-btn {
  display: inline-flex;
  font-size: 0.88rem;
  padding: 10px 20px;
  min-width: 180px;
}

.success-categories-section {
  margin-bottom: 36px;
}

.success-categories-section h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

@media (min-width: 480px) {
  .success-actions {
    flex-direction: row;
  }
  .success-actions .btn {
    flex: 1;
    max-width: 220px;
  }
}

.success-footer-note {
  font-size: 0.72rem;
  color: var(--gray-500);
}

