/* ===== Design System ===== */
:root {
  --primary: #1a2461;
  --primary-dark: #11184a;
  --primary-light: #e8eaf6;
  --accent: #f59e0b;
  --logo-navy: #1a2461;
  --logo-gray: #8a8a8e;
  --bg: #f7fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #16a34a;
  --whatsapp: #25d366;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --container: 1200px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(26, 36, 97, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--logo-navy);
  line-height: 1;
}
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  white-space: nowrap;
}
@media (max-width: 420px) {
  .logo {
    font-size: 16px;
    gap: 8px;
  }
  .logo-img {
    width: 36px;
    height: 36px;
  }
}
.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav a {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
}
.nav a:hover,
.nav a.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.burger {
  display: none;
  background: var(--primary-light);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
  color: var(--primary-dark);
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: 0.3s;
    box-shadow: var(--shadow);
  }
  .nav.open {
    transform: translateY(0);
  }
  .nav a {
    padding: 14px 16px;
    border-radius: 10px;
  }
  .burger {
    display: grid;
    place-items: center;
  }
  .header-cta .btn:not(.burger) {
    display: none;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eaf6 0%, #ffffff 60%, #d6dbf0 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(26, 36, 97, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(26, 36, 97, 0.18),
      transparent 40%
    );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--logo-navy);
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin-inline-start: auto;
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
  border-radius: 40% 60% 70% 30%/40% 50% 50% 60%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  animation: blob 10s ease-in-out infinite;
}
.hero-visual .icon {
  font-size: 160px;
  color: #fff;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.25));
  animation: float 6s ease-in-out infinite;
}
.hero-visual .hero-logo {
  width: 57%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes blob {
  0%,
  100% {
    border-radius: 40% 60% 70% 30%/40% 50% 50% 60%;
  }
  50% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    max-width: 300px;
    margin: 20px auto 0;
  }
}

/* ===== Slider ===== */
.slider {
  position: relative;
  margin-top: 30px;
}
.slides {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.slides::-webkit-scrollbar {
  display: none;
}
.slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.slide.alt {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.slide.alt2 {
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}
.slide h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.slide p {
  opacity: 0.95;
  margin-bottom: 16px;
}
.slide .btn {
  background: #fff;
  color: var(--primary-dark);
}
.slide-icon {
  font-size: 100px;
  opacity: 0.25;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
}
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: var(--transition);
  cursor: pointer;
}
.dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 999px;
}

/* ===== Sections ===== */
.section {
  padding: 70px 0;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--logo-navy);
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
}
.section-head .tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ===== Cards Grid ===== */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(26, 36, 97, 0.15),
    0 8px 20px -10px rgba(26, 36, 97, 0.4);
  transition: var(--transition);
  position: relative;
}
.card-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(26, 36, 97, 0.12),
    transparent 60%
  );
  pointer-events: none;
}
.card:hover .card-icon,
.feature:hover .card-icon {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 12px 24px -8px rgba(26, 36, 97, 0.55);
}
.card-image {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f1f5f9;
  box-shadow: inset 0 0 0 1px rgba(26, 36, 97, 0.08);
  transition: var(--transition);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-has-image h3 { margin-top: 0; }
.card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--logo-navy);
}
.card .desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
  flex: 1;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  margin-top: auto;
}
.price {
  font-weight: 800;
  font-size: 20px;
  color: var(--primary-dark);
}
.price small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.card-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

/* Feature tiles */
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature .card-icon {
  margin: 0 auto 14px;
}

/* ===== Filters ===== */
.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}
.search-box {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}
.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 36, 97, 0.15);
}
.search-box::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  font-size: 15px;
  color: var(--primary);
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: #f1f5f9;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
}
.chip:hover {
  background: var(--primary-light);
}
.chip.active {
  background: var(--primary);
  color: #fff;
}
.count {
  color: var(--muted);
  font-size: 14px;
}
.no-results {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  background: #fff;
  border-radius: var(--radius);
}
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pagination .page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-btn:hover:not(:disabled) {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}
.pagination .page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pagination .page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination .page-gap {
  color: var(--muted);
  padding: 0 4px;
}

@media (max-width: 720px) {
  .toolbar {
    padding: 12px;
    gap: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
  }
  .search-box {
    flex: 1 1 100%;
    min-width: 0;
  }
  .search-box input {
    padding: 11px 40px 11px 14px;
    font-size: 14px;
  }
  .count {
    flex: 1 1 100%;
    font-size: 13px;
  }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    padding-bottom: 6px;
    margin-inline: -16px;
    padding-inline: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .filters::-webkit-scrollbar {
    display: none;
  }
  .chip {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 13px;
    scroll-snap-align: start;
    white-space: nowrap;
  }
}

/* ===== Product Page ===== */
.product-hero {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary-light), #fff);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.product-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}
.product-image {
  aspect-ratio: 1/1;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.25),
      transparent 50%
    ),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 160px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.product-image::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  animation: spin 18s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.product-image i {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}
.product-info h1 {
  font-size: 32px;
  margin-bottom: 12px;
}
.product-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 14px 0;
}
.product-price del {
  font-size: 20px;
  color: var(--muted);
  font-weight: 500;
  margin-inline-end: 10px;
}
.info-list {
  margin: 22px 0;
}
.info-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--success);
  font-size: 16px;
  flex-shrink: 0;
}
.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tabs {
  margin-top: 40px;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.tabs h2 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--primary-dark);
}
.tabs h2:not(:first-child) {
  margin-top: 28px;
}

.quick-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}
.quick-form h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 36, 97, 0.15);
}
.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-option {
  flex: 1;
  min-width: 140px;
  position: relative;
}
.radio-option input {
  position: absolute;
  opacity: 0;
}
.radio-option label {
  display: block;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  margin: 0;
}
.radio-option input:checked + label {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  padding: 10px;
  gap: 10px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}
.sticky-cta .btn {
  flex: 1;
  padding: 14px;
  font-size: 15px;
}
@media (max-width: 720px) {
  .sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 80px;
  }
}

/* ===== Floating WhatsApp button ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 45;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  background: #1ebe57;
  animation: none;
}
@keyframes wa-pulse {
  0% {
    box-shadow:
      0 10px 28px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow:
      0 10px 28px rgba(37, 211, 102, 0.45),
      0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 10px 28px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (max-width: 720px) {
  .wa-float {
    display: none;
  }
}

/* ===== Footer ===== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 20px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-grid > div > p {
  padding: 0 22px;
  font-size: 14px;
  line-height: 1.8;
}
.footer h4 {
  padding: 0 22px;
  color: #fff;
  margin-bottom: 14px;
  font-size: 16px;
}
.footer a {
  display: block;
  padding: 5px 21px;
  color: #cbd5e1;
  font-size: 14px;
  transition: var(--transition);
}
.footer a:hover {
  color: var(--primary);
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 22px 12px;
}
.footer-bottom {
  text-align: center;
  padding: 20px 16px 0;
  border-top: 1px solid #1e293b;
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
}
.socials {
  display: flex;
  gap: 10px;
  margin: 14px 22px 0;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1e293b;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 16px;
  color: #cbd5e1;
  transition: var(--transition);
}
.socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .footer {
    padding: 40px 0 16px;
    margin-top: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  .footer-grid > div > p,
  .footer h4,
  .footer-logo,
  .socials {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .footer a {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-bottom {
    font-size: 12px;
  }
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
  padding: 50px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

/* ===== About page ===== */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(26, 36, 97, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(245, 158, 11, 0.12),
      transparent 45%
    ),
    linear-gradient(135deg, var(--primary-light) 0%, #fff 70%);
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(26, 36, 97, 0.15),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(30px);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-hero-text .tag {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.about-hero-text h1 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 800;
}
.about-hero-text h1 span {
  color: var(--primary);
}
.about-hero-text p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.9;
}
.about-hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.about-hero-circle {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.3),
      transparent 55%
    ),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid;
  place-items: center;
  font-size: 140px;
  color: #fff;
  box-shadow: 0 30px 60px -20px rgba(26, 36, 97, 0.55);
  animation: float 6s ease-in-out infinite;
}
.about-hero-circle::after {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px dashed rgba(26, 36, 97, 0.35);
  animation: spin 22s linear infinite;
}
.floating-chip {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.floating-chip i {
  color: var(--primary);
}
.floating-chip.chip-1 {
  top: 10%;
  right: -5px;
  animation: float 5s ease-in-out infinite;
}
.floating-chip.chip-2 {
  bottom: 18%;
  left: -10px;
  animation: float 6.5s ease-in-out infinite 0.4s;
}
.floating-chip.chip-3 {
  bottom: -5px;
  right: 10%;
  animation: float 5.8s ease-in-out infinite 0.8s;
}
@media (max-width: 860px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero-visual {
    max-width: 340px;
  }
}

.about-stats-section {
  padding: 0 0 20px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.about-stats {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid var(--border);
}
.about-stat {
  text-align: center;
  padding: 10px;
  border-left: 1px solid var(--border);
}
.about-stat:last-child {
  border-left: none;
}
.about-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(26, 36, 97, 0.15);
}
.about-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.about-stat-label {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
  font-weight: 600;
}
@media (max-width: 760px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat {
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 18px;
  }
  .about-stat:nth-last-child(-n + 2) {
    border-bottom: none;
    padding-bottom: 10px;
  }
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}
.mv-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mv-card::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(10px);
}
.mv-mission::before {
  background: var(--primary);
}
.mv-vision::before {
  background: var(--accent);
}
.mv-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.25);
}
.mv-mission .mv-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.mv-vision .mv-icon {
  background: linear-gradient(135deg, var(--accent), #d97706);
}
.mv-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text);
  position: relative;
}
.mv-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  position: relative;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ===== Product page (new) ===== */
.prod-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(26, 36, 97, 0.14),
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 95%,
      rgba(245, 158, 11, 0.1),
      transparent 45%
    ),
    linear-gradient(180deg, var(--primary-light) 0%, #fff 80%);
}
.prod-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.prod-breadcrumb a {
  color: var(--muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.prod-breadcrumb a:hover {
  color: var(--primary);
}
.prod-breadcrumb .sep {
  font-size: 11px;
  color: #94a3b8;
}
.prod-breadcrumb span {
  color: var(--text);
  font-weight: 700;
}

.prod-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) {
  .prod-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.prod-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  place-items: center;
}
.prod-visual-bg {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.3),
      transparent 55%
    ),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 30px 60px -20px rgba(26, 36, 97, 0.55);
}
.prod-visual-bg::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(26, 36, 97, 0.35);
  animation: spin 24s linear infinite;
}
.prod-visual-icon {
  position: relative;
  z-index: 1;
  font-size: 140px;
  color: #fff;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
  animation: float 6s ease-in-out infinite;
}
.prod-visual-badge,
.prod-visual-discount {
  position: absolute;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.prod-visual-badge {
  top: 8%;
  right: -4px;
  color: var(--primary-dark);
}
.prod-visual-badge i {
  color: var(--accent);
}
.prod-visual-discount {
  bottom: 12%;
  left: -4px;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: #fff;
}

.prod-hero-info h1 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.prod-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.prod-chip i {
  color: var(--primary);
}
.prod-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.prod-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.prod-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}
.prod-meta-item i {
  color: var(--primary);
  font-size: 14px;
}

.prod-pricing {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.prod-price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.prod-price-now {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.prod-price-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
}
.prod-price-old {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-inline-start: 8px;
}
.prod-price-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: #166534;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.prod-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.prod-cta .btn {
  flex: 1;
  min-width: 180px;
}

.prod-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 26px;
  align-items: start;
}
@media (max-width: 960px) {
  .prod-layout {
    grid-template-columns: 1fr;
  }
}

.prod-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.prod-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.prod-block-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.prod-block-head > i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(26, 36, 97, 0.15);
}
.prod-block-head h2 {
  font-size: 20px;
  margin: 0;
  color: var(--text);
}
.prod-block-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.prod-para {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.prod-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.prod-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.prod-item:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}
.prod-item i {
  color: var(--success);
  font-size: 15px;
  flex-shrink: 0;
}

.prod-note {
  display: flex;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 14px 16px;
  align-items: flex-start;
}
.prod-note i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.prod-note p {
  color: #78350f;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.prod-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 520px) {
  .prod-benefits {
    grid-template-columns: 1fr;
  }
}
.prod-benefit {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.prod-benefit:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.prod-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 8px 16px -6px rgba(26, 36, 97, 0.5);
}
.prod-benefit h4 {
  font-size: 15px;
  margin: 0 0 2px;
  color: var(--text);
}
.prod-benefit p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.prod-aside {
  position: sticky;
  top: 90px;
}
@media (max-width: 960px) {
  .prod-aside {
    position: static;
  }
}
.prod-booking {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.prod-booking-head {
  padding: 22px 24px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
}
.prod-booking-head h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.prod-booking-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.prod-booking-summary {
  padding: 18px 24px;
  background: #f8fafc;
  border-bottom: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prod-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  gap: 12px;
}
.prod-summary-item span {
  color: var(--muted);
  font-weight: 600;
}
.prod-summary-item strong {
  color: var(--text);
  font-weight: 700;
  text-align: left;
}
.prod-summary-price {
  color: var(--primary-dark) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}
.prod-booking-form {
  padding: 24px;
}
.prod-booking-form .form-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.prod-booking-form .form-group label i {
  color: var(--primary);
  font-size: 13px;
}
.prod-booking-trust {
  margin-top: 16px;
  padding: 12px;
  background: #e8eaf6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #11184a;
}
.prod-booking-trust i {
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== Value section (homepage) ===== */
.value-section {
  background: #fff;
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.value-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.value-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  margin: 12px 0 14px;
  font-weight: 800;
}
.value-text p {
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.9;
  font-size: 16px;
}
.value-visual {
  text-align: center;
  color: var(--primary);
  font-size: clamp(100px, 18vw, 180px);
  line-height: 1;
}
@media (max-width: 860px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .value-visual {
    order: -1;
  }
}
@media (max-width: 520px) {
  .value-text p {
    font-size: 15px;
  }
}

/* ===== Intro Simple ===== */
.intro-simple {
  padding: 70px 0;
}
.intro-simple-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.intro-divider {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 22px;
}
.intro-divider .intro-dot {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}
.intro-divider .intro-dot:last-child {
  background: linear-gradient(270deg, transparent, var(--primary));
}
.intro-simple h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.intro-brand {
  color: var(--primary-dark);
  font-weight: 800;
}
.intro-accent {
  color: var(--primary);
  font-weight: 800;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}
.intro-simple p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .intro-simple {
    padding: 50px 0;
  }
  .intro-divider .intro-dot {
    width: 36px;
  }
}

/* ===== Contact page ===== */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(245, 158, 11, 0.25),
      transparent 45%
    ),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  opacity: 0.4;
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.contact-hero-inner .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-hero-inner h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.3;
}
.contact-hero-inner h1 span {
  color: var(--accent);
}
.contact-hero-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
}
.contact-method {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  display: block;
  position: relative;
  overflow: hidden;
}
.contact-method::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}
.contact-method:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}
.contact-method:hover::before {
  transform: scaleX(1);
}
.contact-method-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.contact-method:hover .contact-method-icon {
  transform: rotate(-6deg) scale(1.08);
}
.icon-phone {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.icon-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #1ebe57);
}
.icon-mail {
  background: linear-gradient(135deg, var(--accent), #d97706);
}
.contact-method h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-method p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.contact-method-value {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 26px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(26, 36, 97, 0.15);
}
.info-block h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}
.info-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4px;
}
.info-block p strong {
  color: var(--text);
  font-weight: 700;
}
.info-socials {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.info-socials h4 {
  font-size: 15px;
  margin-bottom: 12px;
}
.socials-row {
  display: flex;
  gap: 10px;
}
.socials-row a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 17px;
  transition: var(--transition);
}
.socials-row a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
}
.contact-form-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}
.contact-form-head h2 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--text);
}
.contact-form-head p {
  color: var(--muted);
  font-size: 14px;
}
.contact-form .form-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.contact-form .form-group label i {
  color: var(--primary);
  font-size: 13px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.hv-service-badge {
  display: flex;
  gap: 14px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 1px solid rgba(26, 36, 97, 0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.hv-service-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.hv-service-badge strong {
  display: block;
  color: var(--primary-dark);
  font-size: 15px;
  margin-bottom: 2px;
}
.hv-service-badge span {
  color: var(--muted);
  font-size: 13px;
}
.form-optional {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}
.form-hint {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px dashed #fdba74;
  color: #9a3412;
  font-size: 13px;
  line-height: 1.7;
}
.form-hint i {
  color: #ea580c;
  margin-top: 3px;
  flex-shrink: 0;
}
.form-privacy {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
.form-privacy i {
  color: var(--primary);
}

/* ===== Home-visit animated banner ===== */
.hv-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.hv-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(26, 36, 97, 0.45);
}
.hv-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    120deg,
    var(--primary-dark) 0%,
    var(--primary) 45%,
    #2d3a8a 100%
  );
  background-size: 200% 200%;
  animation: hv-gradient 10s ease-in-out infinite;
}
@keyframes hv-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hv-banner-shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hv-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
}
.hv-shape-1 {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
  animation: hv-float 9s ease-in-out infinite;
}
.hv-shape-2 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: 10%;
  animation: hv-float 7s ease-in-out infinite reverse;
}
.hv-shape-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 40%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.35),
    transparent 70%
  );
  animation: hv-float 11s ease-in-out infinite;
}
@keyframes hv-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.08);
  }
}
.hv-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 36px;
}
.hv-banner-icon {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-size: 38px;
  color: #fff;
  animation: hv-pulse 2.2s ease-in-out infinite;
}
@keyframes hv-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
}
.hv-banner-eyebrow {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hv-banner-eyebrow i {
  color: var(--accent);
}
.hv-banner-text h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.35;
}
.hv-banner-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  max-width: 540px;
}
.hv-banner-cta .btn {
  background: #fff;
  color: var(--primary-dark);
  border: 0;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease;
}
.hv-banner:hover .hv-banner-cta .btn {
  transform: translateX(-4px);
}
.hv-banner-strip {
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.hv-banner-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: hv-marquee 28s linear infinite;
}
.hv-banner-track span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.hv-banner-track span i {
  color: var(--accent);
  font-size: 14px;
}
@keyframes hv-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}
@media (max-width: 760px) {
  .hv-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
    gap: 16px;
  }
  .hv-banner-icon {
    margin: 0 auto;
  }
  .hv-banner-text p {
    margin: 0 auto;
  }
  .hv-banner-cta {
    justify-self: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hv-banner-bg,
  .hv-shape,
  .hv-banner-icon,
  .hv-banner-track {
    animation: none;
  }
}

.branches-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) {
  .branches-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .branches-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .branches-cards {
    grid-template-columns: 1fr;
  }
}
.branch-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.branch-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}
.branch-card:hover::after {
  transform: scaleX(1);
}
.branch-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(26, 36, 97, 0.15);
  transition: var(--transition);
}
.branch-card:hover .branch-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.branch-card-body h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}
.branch-card-body p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}
.branch-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}
.branch-card:hover .branch-card-link {
  color: var(--primary-dark);
}

/* ===== Legal pages ===== */
.legal {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  line-height: 2;
}
.legal h2 {
  margin: 24px 0 10px;
  color: var(--primary-dark);
}
.legal p,
.legal li {
  color: #334155;
  margin-bottom: 10px;
}
.legal ul {
  padding-inline-start: 20px;
  list-style: disc;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
  text-align: center;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(26, 36, 97, 0.12),
      transparent 45%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(245, 158, 11, 0.08),
      transparent 45%
    ),
    linear-gradient(180deg, var(--primary-light) 0%, #fff 85%);
}
.legal-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.legal-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 16px 32px -10px rgba(26, 36, 97, 0.55);
}
.legal-hero-inner .tag {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.legal-hero-inner h1 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.legal-hero-inner > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 16px;
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.legal-updated i {
  color: var(--primary);
}

.legal-wrap {
  padding-top: 40px;
}
.legal-sections {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.legal-section:hover {
  box-shadow: var(--shadow);
  border-color: rgba(26, 36, 97, 0.3);
}
.legal-section-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px rgba(26, 36, 97, 0.18);
}
.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.legal-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.legal-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}
.legal-list li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 10px;
  margin-top: 4px;
}

.legal-contact-note {
  max-width: 820px;
  margin: 28px auto 0;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.legal-contact-note > i {
  font-size: 36px;
  color: var(--primary);
  flex-shrink: 0;
}
.legal-contact-note > div {
  flex: 1;
  min-width: 0;
}
.legal-contact-note h3 {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--text);
}
.legal-contact-note p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 560px) {
  .legal-hero {
    padding: 44px 0 36px;
  }
  .legal-hero-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 16px;
  }
  .legal-section {
    padding: 22px;
  }
  .legal-contact-note {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

.complaint-form-wrap {
  max-width: 620px;
  margin: 0 auto;
}
.complaint-form {
  padding: 32px;
  border-top: 4px solid var(--primary);
}
.complaint-form .form-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.complaint-form .form-group label i {
  color: var(--primary);
  font-size: 13px;
}
@media (max-width: 560px) {
  .complaint-form {
    padding: 24px;
  }
}

/* ===== Landing page ===== */
.landing-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}
.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 255, 255, 0.12),
      transparent 30%
    );
}
.landing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  align-items: center;
  position: relative;
}
@media (max-width: 860px) {
  .landing-grid {
    grid-template-columns: 1fr;
  }
}
.landing-grid h1 {
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.landing-grid .benefits {
  margin: 20px 0;
}
.landing-grid .benefits li {
  padding: 8px 0;
  font-size: 16px;
}
.landing-grid .benefits li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fef3c7;
  margin-left: 8px;
  display: inline-block;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 11px;
}
.landing-form {
  background: #fff;
  color: var(--text);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

/* ===== Animations ===== */
.fade-in {
  animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Branches (Footer) ===== */
.branches-section {
  padding: 28px 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 30px;
}
.branches-title {
  font-size: 18px;
  margin-bottom: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.branches-title i {
  color: var(--primary-light, #e8eaf6);
}
.branches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.branch-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  transition: 0.25s;
  font-size: 14px;
  font-weight: 700;
}
.branch-item .branch-name {
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.branch-item:hover {
  background: var(--primary);
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px -6px rgba(26, 36, 97, 0.55);
}
.branch-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary-dark);
  font-size: 13px;
}
.branch-item:hover .branch-icon {
  background: #fff;
  color: var(--primary-dark);
}
@media (max-width: 720px) {
  .branches-section {
    padding: 22px 0;
    margin-bottom: 24px;
  }
  .branches-title {
    font-size: 16px;
    margin-bottom: 14px;
    justify-content: center;
    text-align: center;
  }
  .branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .branch-item {
    font-size: 13px;
    padding: 8px 12px 8px 6px;
    gap: 10px;
    justify-content: flex-start;
    min-width: 0;
  }
  .branch-item .branch-name {
    padding-right: 10px;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .branch-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
    flex-shrink: 0;
  }
}
@media (max-width: 420px) {
  .branches-grid {
    grid-template-columns: 1fr;
  }
  .branch-item {
    font-size: 14px;
    padding: 10px 14px 10px 8px;
  }
  .branch-item .branch-name {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}

.prod-visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px -20px rgba(26, 36, 97, 0.45);
}

