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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans Arabic', 'Segoe UI', sans-serif;
  background-color: #F4F1DE;
  color: #293241;
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

/* ===== Variables ===== */
:root {
  --primary: #3D5A80;
  --primary-light: #98C1D9;
  --accent: #50C9B5;
  --accent-dark: #3BA896;
  --metal: #293241;
  --metal-light: #3D4F5F;
  --cream: #F4F1DE;
  --cream-light: #FAF9F0;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --shadow: 0 4px 24px rgba(41, 50, 65, 0.12);
  --shadow-hover: 0 8px 32px rgba(41, 50, 65, 0.18);
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--metal);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

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

.nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--metal);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav a:hover {
  background: rgba(61, 90, 128, 0.08);
  color: var(--primary);
}

.nav a.active {
  background: rgba(61, 90, 128, 0.1);
  color: var(--primary);
  font-weight: 600;
}

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

.header-cta .btn-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}

.header-cta .btn-phone:hover {
  background: var(--accent-dark);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}

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

.btn-whatsapp:hover {
  background: #1DA851;
  transform: scale(1.02);
}

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

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

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #293241 0%, #3D5A80 50%, #98C1D9 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, var(--cream) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 120px 20px 60px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero h1 span {
  color: var(--cream);
}

.hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.hero-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: rgba(255,255,255,0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--metal);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Cards ===== */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--metal);
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

/* ===== Service Card ===== */
.service-card .card-img {
  height: 180px;
  overflow: hidden;
}

.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .card-img img {
  transform: scale(1.05);
}

.service-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 12px;
}

.service-card .link-arrow:hover {
  color: var(--accent);
}

/* ===== Feature Card ===== */
.feature-card {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(61,90,128,0.1), rgba(80,201,181,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

/* ===== Step Card ===== */
.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

/* ===== Testimonial Card ===== */
.testimonial-card {
  padding: 24px;
  min-width: 300px;
  flex-shrink: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.testimonial-header svg {
  width: 16px;
  height: 16px;
  color: #FBBF24;
  fill: #FBBF24;
}

.testimonial-text {
  color: var(--metal);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.author-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
}

.author-info {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.author-info strong {
  color: var(--metal);
  display: block;
}

/* Testimonials scroll */
.testimonials-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 6px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: 3px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

.testimonials-scroll .testimonial-card {
  scroll-snap-align: center;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: linear-gradient(90deg, var(--primary), var(--metal));
  color: white;
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: monospace;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--metal);
  cursor: pointer;
  text-align: right;
}

.faq-question:hover {
  background: rgba(61, 90, 128, 0.03);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

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

.faq-answer.open {
  max-height: 500px;
  padding: 0 24px 18px;
}

.faq-answer p {
  color: var(--gray-500);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--metal);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.92rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: white;
  color: var(--metal);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 90, 128, 0.1);
}

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

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(61, 90, 128, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact-icon.accent {
  background: rgba(80, 201, 181, 0.1);
}

.contact-icon.accent svg {
  color: var(--accent);
}

.contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
}

.contact-icon.whatsapp svg {
  color: #25D366;
}

.contact-details h4 {
  font-size: 0.9rem;
  color: var(--metal);
  margin-bottom: 2px;
}

.contact-details a,
.contact-details span {
  font-size: 0.88rem;
  color: var(--gray-500);
}

.contact-details a:hover {
  color: var(--primary);
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -48px;
  margin-bottom: 32px;
  position: relative;
  z-index: 10;
}

.quick-card {
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow);
}

.quick-card svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
}

.quick-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.quick-card p {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ===== Map ===== */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ===== Business Info Box ===== */
.business-info {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}

.business-info h4 {
  font-size: 0.95rem;
  color: var(--metal);
  margin-bottom: 12px;
}

.business-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 4px 0;
}

.business-row svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.business-row strong {
  color: var(--metal);
}

/* ===== Legal Pages ===== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h2 {
  font-size: 1.2rem;
  color: var(--metal);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page p {
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-page ul {
  margin: 12px 0 16px 24px;
  list-style: disc;
  color: var(--gray-500);
  line-height: 1.9;
}

/* ===== Disclaimer Banner ===== */
.disclaimer-banner {
  background: rgba(80, 201, 181, 0.08);
  border: 1px solid rgba(80, 201, 181, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}

.disclaimer-banner p {
  color: var(--metal);
  font-weight: 500;
  line-height: 1.8;
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, #293241 0%, #3D5A80 50%, #98C1D9 100%);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover;
  opacity: 0.08;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.breadcrumb a:hover {
  color: white;
}

/* ===== Breadcrumb arrow ===== */
.bc-arrow {
  color: rgba(255,255,255,0.4);
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(90deg, var(--primary), var(--metal));
  color: white;
  padding: 64px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: white;
}

.footer p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-company {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
}

.footer-company h5 {
  font-size: 0.82rem;
  color: white;
  margin-bottom: 10px;
}

.footer-company-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-400);
  padding: 3px 0;
}

.footer-company-row svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-company-row strong {
  color: rgba(255,255,255,0.7);
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.float-call {
  background: var(--accent);
}

.float-whatsapp {
  background: #25D366;
}

/* ===== Mobile Menu ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 16px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s, opacity 0.3s, padding 0.3s;
}

.mobile-nav.open {
  display: flex;
  max-height: 400px;
  opacity: 1;
  padding: 16px;
}

.mobile-nav a {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--metal);
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: rgba(61, 90, 128, 0.06);
}

.mobile-nav .btn-phone {
  margin-top: 8px;
  justify-content: center;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .quick-cards {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .grid-4, .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .floating-buttons {
    bottom: 16px;
    left: 16px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
}

/* ===== Image placeholder gradient ===== */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* ===== Success Message ===== */
.success-message {
  text-align: center;
  padding: 48px 24px;
}

.success-message svg {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin: 0 auto 16px;
}

/* ===== Issues list ===== */
.issues-list {
  list-style: none;
}

.issues-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.issues-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== Highlight box ===== */
.highlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.highlight-item {
  text-align: center;
  padding: 16px;
  border-radius: 10px;
  background: rgba(61, 90, 128, 0.05);
}

.highlight-item strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.highlight-item span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ===== Tag Cloud ===== */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}

/* ===== Value cards ===== */
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(61,90,128,0.1), rgba(80,201,181,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

/* ===== Work step card ===== */
.work-step {
  position: relative;
}

.work-step-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ===== Check list ===== */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.check-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== FAQ Category Filter ===== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.filter-tab {
  padding: 8px 18px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-500);
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== Search Box ===== */
.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 24px;
}

.search-box svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gray-400);
}

.search-box input {
  width: 100%;
  padding: 16px 48px 16px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 90, 128, 0.1);
}

/* ===== SEO Breadcrumbs Rich Snippet ===== */
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* ===== Animation: fade in up ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===== Counter animation ===== */
@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Print styles ===== */
@media print {
  .header,
  .floating-buttons,
  .footer,
  .btn,
  .menu-toggle {
    display: none !important;
  }
  body {
    background: white;
  }
}
