/**
 * AsianCharm Modern Theme CSS
 * Premium, High-Converting & Fully Responsive UI/UX
 */

:root {
  --primary: #1053b8;
  --primary-dark: #0a3a85;
  --primary-light: #2563eb;
  --primary-subtle: #eff6ff;
  --secondary: #0d9488;
  --secondary-dark: #0f766e;
  --accent: #f59e0b;
  --accent-rose: #e11d48;
  --success: #16a34a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-dark-surface: #1e293b;

  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 10px 25px rgba(16, 83, 184, 0.25);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1240px;
  --header-height: 80px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-main);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-dark);
}

button, input, textarea, select {
  font: inherit;
}

/* Containers */
.ac-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ac-container--narrow {
  max-width: 960px;
}

/* Section styling */
.ac-section {
  padding: 5.5rem 0;
  position: relative;
}

.ac-section--alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.ac-section--gradient {
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.ac-section--dark {
  background-color: var(--bg-dark);
  color: #fff;
}

/* Header & Navigation */
.ac-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.ac-header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ac-header .ac-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ac-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.ac-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

.ac-logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.1;
}

.ac-logo-title span {
  color: var(--primary);
}

.ac-logo-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}

.ac-nav {
  display: flex;
  align-items: center;
}

.ac-nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.ac-nav-dropdown {
  position: relative;
}

.ac-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  list-style: none;
  z-index: 100;
}

.ac-nav-dropdown:hover > .ac-nav-dropdown-menu,
.ac-nav-dropdown.is-open > .ac-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.ac-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.ac-dropdown-link:hover {
  background: var(--primary-subtle);
  color: var(--primary);
  transform: translateX(4px);
}

.ac-dropdown-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.ac-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

/* Buttons */
.ac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.ac-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.ac-btn--lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.ac-btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.ac-btn--primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 83, 184, 0.35);
}

.ac-btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.ac-btn--whatsapp:hover {
  background: linear-gradient(135deg, #1ea952 0%, #0d6b5e 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

.ac-btn--secondary {
  background: var(--bg-surface);
  color: var(--primary);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.ac-btn--secondary:hover {
  background: var(--primary-subtle);
  border-color: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.ac-btn--outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.ac-btn--outline-white:hover {
  background: #ffffff;
  color: var(--text-main);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.ac-btn--accent {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.ac-btn--accent:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.ac-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
}

.ac-hamburger svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

/* Hero Section */
.ac-hero {
  margin-top: var(--header-height);
  position: relative;
  min-height: 640px;
  background: var(--bg-dark);
  overflow: hidden;
}

.ac-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 640px;
}

.ac-hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 640px;
}

.ac-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.06);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.9s;
  z-index: 0;
}

.ac-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 1;
}

.ac-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.48) 0%, rgba(15, 23, 42, 0.28) 45%, rgba(15, 23, 42, 0.12) 100%);
  z-index: 1;
}

.ac-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 6.5s ease-out;
}

.ac-hero-slide.is-active .ac-hero-video {
  transform: scale(1);
}

.ac-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 4rem 0;
}

.ac-hero-slide .ac-hero-badge,
.ac-hero-slide .ac-hero-title,
.ac-hero-slide .ac-hero-desc,
.ac-hero-slide .ac-hero-buttons {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ac-hero-slide.is-active .ac-hero-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.ac-hero-slide.is-active .ac-hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.ac-hero-slide.is-active .ac-hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}

.ac-hero-slide.is-active .ac-hero-buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.54s;
}

@media (prefers-reduced-motion: reduce) {
  .ac-hero-slide,
  .ac-hero-video,
  .ac-hero-slide .ac-hero-badge,
  .ac-hero-slide .ac-hero-title,
  .ac-hero-slide .ac-hero-desc,
  .ac-hero-slide .ac-hero-buttons {
    transition: none !important;
    transform: none !important;
  }
}

.ac-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.ac-hero-badge span.dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.ac-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.ac-hero-title span.highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ac-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f1f5f9;
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.ac-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero Controls */
.ac-hero-nav {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 10;
}

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

.ac-hero-dots {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ac-hero-dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.ac-hero-dot.active {
  width: 36px;
  background: #ffffff;
  border-radius: var(--radius-full);
}

.ac-hero-arrows {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ac-hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.ac-hero-arrow:hover {
  background: #ffffff;
  color: var(--text-main);
  transform: scale(1.05);
}

/* Trust Bar / Quick Stats */
.ac-trust-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 20;
  margin-top: -30px;
  border-radius: var(--radius-lg);
  max-width: calc(var(--container-max) - 3rem);
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
}

.ac-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.ac-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ac-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ac-trust-icon svg {
  width: 28px;
  height: 28px;
}

.ac-trust-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.ac-trust-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section Header */
.ac-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.ac-section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.ac-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.ac-section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Services Grid */
.ac-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ac-service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.ac-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 83, 184, 0.3);
  box-shadow: var(--shadow-xl);
}

.ac-service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-subtle) 0%, #dbeafe 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.ac-service-card:hover .ac-service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  transform: scale(1.08);
}

.ac-service-icon svg {
  width: 30px;
  height: 30px;
}

.ac-service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-main);
  line-height: 1.3;
}

.ac-service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ac-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.ac-service-link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.ac-service-card:hover .ac-service-link svg {
  transform: translateX(4px);
}

/* Feature Spotlight / Callout blocks */
.ac-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.ac-feature-row:last-child {
  margin-bottom: 0;
}

.ac-feature-row--reverse .ac-feature-content {
  order: 2;
}

.ac-feature-row--reverse .ac-feature-image-wrap {
  order: 1;
}

.ac-feature-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  background: #ccfbf1;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.ac-feature-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.ac-feature-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.ac-feature-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ac-feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--text-main);
}

.ac-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ac-check-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.ac-feature-image-wrap {
  position: relative;
  padding-bottom: 3.25rem;
}

.ac-feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
}

.ac-feature-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ac-feature-image--device {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.ac-feature-image--device img {
  height: 460px;
  object-fit: contain;
  object-position: center;
  padding: 1.25rem 1rem;
}

.ac-feature-image--device:hover img {
  transform: scale(1.02);
}

.ac-feature-image--illustration {
  background: #f6f1e8;
}

.ac-feature-image--illustration img {
  height: auto;
  min-height: 280px;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.ac-feature-image:hover img {
  transform: scale(1.03);
}

.ac-floating-badge {
  position: absolute;
  bottom: -52px;
  right: 20px;
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ac-floating-badge--left {
  right: auto;
  left: 20px;
}

/* Process / How It Works */
.ac-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.ac-process-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ac-process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.ac-step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(16, 83, 184, 0.3);
}

.ac-step-media {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 140px;
}

.ac-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-step-media--illustration {
  height: 210px;
  background: #fff;
}

.ac-step-media--illustration img {
  object-fit: cover;
  object-position: center;
}

.ac-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.ac-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Info & FAQ Grid */
.ac-info-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ac-info-hub-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

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

.ac-info-hub-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ac-info-hub-icon svg {
  width: 24px;
  height: 24px;
}

.ac-info-hub-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.ac-info-hub-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.ac-info-hub-action {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Contact Section */
.ac-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.ac-contact-info {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.ac-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.ac-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ac-contact-icon svg {
  width: 22px;
  height: 22px;
}

.ac-contact-detail h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.ac-contact-detail p,
.ac-contact-detail a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

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

.ac-contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.ac-form-group {
  margin-bottom: 1.25rem;
}

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

.ac-form-input,
.ac-form-textarea,
.ac-form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.ac-form-input:focus,
.ac-form-textarea:focus,
.ac-form-select:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 83, 184, 0.15);
}

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

/* Map Embed */
.ac-map-container {
  margin-top: 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 350px;
}

.ac-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.ac-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid #1e293b;
}

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

.ac-footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.ac-footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.ac-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ac-footer-link {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: var(--transition);
}

.ac-footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

.ac-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Button */
.ac-floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.ac-floating-whatsapp:hover {
  background: #1eb956;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.ac-floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Scroll To Top */
.ac-scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.ac-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ac-scroll-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Subpage Content Styles */
.ac-subpage-header {
  margin-top: var(--header-height);
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.ac-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.ac-breadcrumbs a {
  color: #cbd5e1;
}

.ac-breadcrumbs a:hover {
  color: #ffffff;
}

.ac-page-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.ac-prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.ac-prose h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 2rem 0 1rem;
}

.ac-prose h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 1.5rem 0 0.75rem;
}

.ac-prose p {
  margin-bottom: 1.25rem;
}

.ac-table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.ac-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #ffffff;
}

.ac-table th {
  background: #f1f5f9;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 2px solid var(--border-light);
}

.ac-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

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

.ac-table tr:hover td {
  background-color: var(--primary-subtle);
}

/* Video Showcase Component */
.ac-video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.ac-video-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ac-video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 83, 184, 0.3);
}

.ac-video-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.ac-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ac-video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ac-video-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

.ac-video-ctrl-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  opacity: 0.9;
  transition: var(--transition);
}

.ac-video-player-wrap:hover .ac-video-ctrl-overlay {
  opacity: 1;
}

.ac-video-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.ac-video-btn:hover {
  background: #ffffff;
  color: var(--primary);
  transform: scale(1.1);
}

.ac-video-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ac-video-card-tag {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.ac-video-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ac-video-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.ac-video-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ac-video-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
}

.ac-video-check-item svg {
  width: 18px;
  height: 18px;
  color: #16a34a;
  flex-shrink: 0;
}

/* Audio Control in Hero */
.ac-hero-audio-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 15;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.ac-hero-audio-btn:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: #ffffff;
}

/* Calculator Component */
.ac-calculator-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.ac-calc-slider-group {
  margin-bottom: 1.5rem;
}

.ac-calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ac-calc-slider-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.ac-calc-slider-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.ac-calc-range {
  width: 100%;
  accent-color: var(--primary);
  height: 6px;
  border-radius: 4px;
  outline: none;
}

.ac-calc-summary-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.ac-calc-summary-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.ac-calc-total-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.ac-calc-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.ac-calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 0.6rem;
}

.ac-calc-breakdown-row span:last-child {
  font-weight: 600;
  color: #ffffff;
}

/* FAQ Accordion */
.ac-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.ac-faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.ac-faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.ac-faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.ac-faq-question:hover {
  color: var(--primary);
}

.ac-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.ac-faq-item.active .ac-faq-icon {
  transform: rotate(180deg);
  background: var(--primary-subtle);
  color: var(--primary);
}

.ac-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.ac-faq-item.active .ac-faq-answer {
  padding-bottom: 1.5rem;
}

.ac-faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .ac-video-showcase-grid {
    grid-template-columns: 1fr;
  }
  .ac-calculator-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ac-video-card-body {
    padding: 1.5rem;
  }
  .ac-calculator-box {
    padding: 1.5rem;
  }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .ac-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-info-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ac-hamburger {
    display: block;
  }
  .ac-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    z-index: 1001;
  }
  .ac-nav.is-open {
    transform: translateX(0);
  }
  .ac-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .ac-nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-alt);
    margin-top: 0.5rem;
    display: none;
  }
  .ac-nav-dropdown.is-open > .ac-nav-dropdown-menu {
    display: block;
  }
  .ac-nav-actions {
    margin-left: 0;
    margin-top: 1.5rem;
    flex-direction: column;
  }
  .ac-nav-actions .ac-btn {
    width: 100%;
  }
  .ac-feature-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ac-feature-row--reverse .ac-feature-content {
    order: 1;
  }
  .ac-feature-row--reverse .ac-feature-image-wrap {
    order: 2;
  }
  .ac-contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ac-section {
    padding: 3.5rem 0;
  }
  .ac-hero {
    min-height: 540px;
  }
  .ac-hero-slider, .ac-hero-track, .ac-hero-slide {
    min-height: 540px;
  }
  .ac-hero-content {
    padding: 2.5rem 0;
  }
  .ac-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .ac-trust-bar {
    margin-top: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 1.25rem 1rem;
  }
  .ac-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .ac-services-grid,
  .ac-process-grid,
  .ac-info-hub-grid,
  .ac-footer-grid {
    grid-template-columns: 1fr;
  }
  .ac-page-card {
    padding: 1.75rem 1.25rem;
  }
  .ac-floating-whatsapp span {
    display: none;
  }
  .ac-floating-whatsapp {
    padding: 0.85rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
