:root {
  --ph-primary: #006b2c;
  --ph-primary-container: #00873a;
  --ph-primary-light: #e8f5ed;
  --ph-primary-vibrant: #16a34a;
  --ph-accent-green: #22c55e;
  --ph-accent-red: #dc2626;
  --ph-accent-red-hover: #b91c1c;
  --ph-dark-slate: #0f172a;
  --ph-slate-elevated: #1e293b;
  --ph-topbar-bg: #0d1f14;
  --ph-body-bg: #fcfdfd;
  --ph-surface-white: #ffffff;
  --ph-surface-gray: #f8fafc;
  --ph-surface-container: #f1f5f9;
  --ph-border: #e2e8f0;
  --ph-border-light: #f1f5f9;
  --ph-text-main: #0f172a;
  --ph-text-muted: #64748b;
  --ph-text-light: #94a3b8;
  --ph-font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ph-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ph-radius-sm: 8px;
  --ph-radius-md: 12px;
  --ph-radius-lg: 16px;
  --ph-radius-xl: 24px;
  --ph-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --ph-shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  --ph-shadow-lg: 0 12px 32px -4px rgba(15, 23, 42, 0.12);
  --ph-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --ph-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

section:has([data-animate]){overflow:hidden}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: .8s
}

[data-animate=left] {
  transform: translateX(-50px)
}

[data-animate=right] {
  transform: translateX(50px)
}

[data-animate=top] {
  transform: translateY(-50px)
}

[data-animate=bottom] {
  transform: translateY(50px)
}

[data-animate].show {
  opacity: 1;
  transform: translate(0, 0)
}

[data-delay="1"] {
  transition-delay: 0.3s
}

[data-delay="2"] {
  transition-delay: 0.6s
}

[data-delay="3"] {
  transition-delay: 0.9s
}

[data-delay="4"] {
  transition-delay: 1.2s
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--ph-font-body);
  color: var(--ph-text-main);
  background-color: var(--ph-body-bg);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: clip;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ph-font-heading);
  font-weight: 700;
  color: var(--ph-text-main);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

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

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

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

.select-all {
  user-select: all;
  -webkit-user-select: all;
}

.max-w-750 {
  max-width: 750px;
}

.nav-topbar {
  background-color: var(--ph-topbar-bg);
  color: #e2e8f0;
  border-bottom: 1px solid rgba(0, 107, 44, 0.4);
  font-size: 13px;
  padding: 10px 0;
  font-weight: 500;
}

.nav-topbar-link {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ph-transition);
}

.nav-topbar-link:hover {
  color: var(--ph-accent-green);
}

.nav-topbar-icon {
  color: var(--ph-accent-green);
  font-size: 14px;
}

.nav-topbar-info {
  color: #cbd5e1;
}

.nav-topbar-dot {
  width: 7px;
  height: 7px;
  background-color: var(--ph-accent-green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.nav-topbar-wa {
  color: var(--ph-accent-green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-topbar-wa:hover {
  color: #ffffff;
}

.nav-navbar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ph-border);
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.08);
  padding: 14px 0 !important;
  width: 100% !important;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) {
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-brand-title {
  color: #ffffff;
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-brand-subtitle {
  color: #4ade80;
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-link {
  color: #f1f5f9;
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-link:hover,
.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-link.active {
  color: #4ade80;
  background-color: rgba(255, 255, 255, 0.12);
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-arrow {
  color: #cbd5e1;
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-btn-outline:hover {
  border-color: #4ade80;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.15);
}

.nav-navbar.nav-transparent-top:not(.nav-scrolled) .nav-mobile-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.nav-navbar.nav-scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid var(--ph-border) !important;
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.08) !important;
}

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

.nav-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-family: var(--ph-font-heading);
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav-brand-subtitle {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ph-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  padding: 10px 16px;
  border-radius: var(--ph-radius-sm);
  transition: var(--ph-transition);
}

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

.nav-arrow {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.nav-has-dropdown:hover .nav-arrow,
.nav-has-mega:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: #ffffff !important;
  border-radius: 12px;
  box-shadow: 0 20px 45px -8px rgba(15, 23, 42, 0.2), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1060;
}

.nav-has-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown-link:hover {
  background-color: #f0fdf4;
  transform: translateX(4px);
}

.nav-link-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown-link:hover .nav-link-bullet,
.nav-mega-item:hover .nav-link-bullet,
.nav-mob-sublink:hover .nav-link-bullet {
  background: #006b2c;
  transform: scale(1.4);
}

.bullet-active {
  background: #006b2c;
  box-shadow: 0 0 0 3px rgba(0, 107, 44, 0.2);
}

.nav-dropdown-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  transition: color 0.15s ease;
}

.nav-dropdown-link:hover .nav-dropdown-title {
  color: #006b2c;
}

.nav-mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: -220px;
  width: 860px;
  background: #ffffff !important;
  border-radius: 16px;
  box-shadow: 0 24px 60px -8px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  padding: 24px 24px 16px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1060;
}

.nav-has-mega:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nav-mega-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mega-head {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.nav-mega-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mega-item:hover {
  background-color: #f0fdf4;
  color: #006b2c;
  transform: translateX(4px);
  font-weight: 600;
}

.nav-mega-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mega-footer-text {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.nav-mega-footer-link {
  font-size: 12px;
  font-weight: 700;
  color: #006b2c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.15s ease;
}

.nav-mega-footer-link:hover {
  transform: translateX(3px);
  color: #004d1f;
}

.nav-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--ph-radius-sm);
  color: #1e293b;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  transition: var(--ph-transition);
  cursor: pointer;
}

.nav-btn-outline:hover {
  border-color: var(--ph-primary);
  color: var(--ph-primary);
  background-color: var(--ph-primary-light);
}

.nav-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: var(--ph-primary);
  color: #ffffff;
  border-radius: var(--ph-radius-sm);
  font-size: 14px;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 107, 44, 0.3);
  transition: var(--ph-transition);
  cursor: pointer;
  text-decoration: none;
}

.nav-btn-primary:hover {
  background: var(--ph-primary-container);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 107, 44, 0.4);
}

.btn-submit-hero {
  width: 100%;
  padding: 12px 20px;
  background: #006b2c;
  color: #ffffff;
  border-radius: var(--ph-radius-sm);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 107, 44, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-submit-hero:hover {
  background: #005522;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 107, 44, 0.4);
}

.nav-mobile-toggle {
  background: transparent;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-sm);
  color: var(--ph-text-main);
  font-size: 24px;
  padding: 4px 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--ph-transition);
}

.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-menu {
  position: fixed;
  top: 0;
  right: -360px;
  width: min(340px, 90vw);
  height: 100vh;
  background: #ffffff;
  z-index: 1050;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
  padding: 18px 16px 30px 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.nav-mobile-menu.active {
  right: 0;
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ph-border);
  margin-bottom: 12px;
}

.nav-mobile-close {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  font-size: 15px;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nav-mobile-close:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}

.mob-drawer-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.mob-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.mob-action-btn:active {
  transform: scale(0.96);
}

.mob-action-call {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.mob-action-call:hover {
  background: #fecaca;
  color: #b91c1c;
}

.mob-action-wa {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.mob-action-wa:hover {
  background: #bbf7d0;
  color: #166534;
}

.nav-mob-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mob-link {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ph-text-main);
  border-radius: var(--ph-radius-sm);
  transition: var(--ph-transition);
}

.nav-mob-link:hover,
.nav-mob-link.active {
  background: var(--ph-primary-light);
  color: var(--ph-primary);
}

.nav-mob-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ph-text-main);
  border-radius: var(--ph-radius-sm);
  cursor: pointer;
  transition: var(--ph-transition);
}

.nav-mob-dropdown-toggle:hover {
  background: var(--ph-primary-light);
  color: var(--ph-primary);
}

.nav-mob-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.nav-mob-item.open .nav-mob-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-mob-sublist {
  list-style: none;
  padding: 6px 0 6px 8px;
  margin: 4px 0 6px 0;
  display: none;
  border-left: 2px solid #bbf7d0;
  margin-left: 14px;
}

.nav-mob-item.open .nav-mob-sublist {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mob-sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.nav-mob-sublink:hover,
.nav-mob-sublink:active {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #006b2c;
  transform: translateX(3px);
  font-weight: 600;
}

.mob-drawer-contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 10px;
  margin-bottom: 12px;
}

.mob-contact-heading {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.mob-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.mob-contact-item:last-child {
  margin-bottom: 0;
}

.mob-contact-item i {
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.mob-contact-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.mob-contact-val {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: block;
  transition: color 0.15s ease;
}

.mob-contact-val:hover {
  color: #006b2c;
}

.mob-contact-val-text {
  font-size: 11.5px;
  font-weight: 500;
  color: #334155;
  line-height: 1.35;
  display: block;
}

.mob-drawer-socials {
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.mob-social-heading {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.mob-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mob-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
}

.mob-social-btn:hover {
  background: #006b2c;
  color: #ffffff;
  border-color: #006b2c;
  transform: translateY(-2px);
}

.mob-social-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.hero-modern-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8, 25, 17, 0.74) 0%, rgba(15, 23, 42, 0.58) 45%, rgba(8, 25, 17, 0.88) 100%),
    url('../images/hero/hero_bg.jpg') center top / cover no-repeat;
  margin-top: -82px;
  padding: 136px 0 60px 0;
  overflow: hidden;
}

.hero-modern-container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.45);
  border-radius: 9999px;
  color: #86efac;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.35);
  animation: pulseDot 2s infinite;
}

.hero-main-title {
  font-family: var(--ph-font-heading);
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
}

.hero-accent-text {
  color: #4ade80;
  text-shadow: 0 0 25px rgba(74, 222, 128, 0.4);
}

.hero-main-subtitle {
  font-size: 16px;
  color: #e2e8f0;
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-card-container {
  max-width: 1160px;
  margin: 0 auto;
}

.hero-booking-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 26px 30px 22px 30px;
}

.hero-modern-form {
  margin: 0;
}

.hero-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.25fr) minmax(0, 1.2fr) minmax(0, 1.15fr) auto;
  gap: 14px;
  align-items: flex-end;
}

.hero-field-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-field-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  white-space: nowrap;
}

.hero-input-wrap,
.hero-select-wrap {
  position: relative;
  width: 100%;
}

.hero-input-control {
  width: 100%;
  height: 48px;
  padding: 0 34px 0 14px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.hero-input-control:focus {
  background: #ffffff;
  border-color: #006b2c;
  box-shadow: 0 0 0 3px rgba(0, 107, 44, 0.15);
}

.hero-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 15px;
}

.icon-pickup {
  color: #ef4444;
}

.icon-destination {
  color: #006b2c;
}

.hero-select-control {
  width: 100%;
  height: 48px;
  padding: 0 34px 0 12px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  font-family: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.hero-select-control:focus {
  background: #ffffff;
  border-color: #006b2c;
  box-shadow: 0 0 0 3px rgba(0, 107, 44, 0.15);
}

.hero-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #64748b;
}

.hero-btn-check-price {
  width: auto;
  min-width: 170px;
  height: 48px;
  padding: 0 24px;
  background: #006b2c;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 107, 44, 0.3);
  transition: all 0.2s ease;
}

.hero-btn-check-price:hover {
  background: #005522;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 107, 44, 0.4);
}

.hero-btn-check-price i {
  font-size: 15px;
  transition: transform 0.2s ease;
}

.hero-btn-check-price:hover i {
  transform: translateX(3px);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.hero-footer-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-footer-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #006b2c;
}

.hero-footer-item i {
  font-size: 15px;
  font-weight: 800;
}

.hero-footer-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: #64748b;
}

.hero-footer-note i {
  color: #ea580c;
  font-size: 14px;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 28px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #f1f5f9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-trust-item i {
  font-size: 16px;
}

.icon-insured {
  color: #2563eb;
}

.icon-truck {
  color: #0d9488;
}

.icon-moves {
  color: #eab308;
}

.icon-iba {
  color: #ea580c;
}

.trust-metrics-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--ph-border);
  padding: 32px 0;
}

.trust-metric-col {
  border-right: 1px solid var(--ph-border);
}

.trust-metric-col:last-child {
  border-right: none;
}

.trust-metric-box {
  padding: 6px 12px;
}

.trust-metric-number {
  font-family: var(--ph-font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--ph-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

.trust-metric-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 6px;
}

.trust-metric-desc {
  font-size: 12px;
  color: var(--ph-text-muted);
}

.about-stitch-section {
  padding: 80px 0;
  background-color: var(--ph-surface-gray);
}

.about-img-wrap {
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  box-shadow: var(--ph-shadow-lg);
  border: 1px solid var(--ph-border);
}

.about-fleet-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-iba-badge {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: var(--ph-primary);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--ph-radius-md);
  box-shadow: var(--ph-shadow-xl);
  max-width: 250px;
}

.about-iba-title {
  font-family: var(--ph-font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.about-iba-desc {
  font-size: 11px;
  color: #dcfce7;
  margin-top: 5px;
  line-height: 1.4;
}

.stitch-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ph-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.stitch-tag-line {
  width: 24px;
  height: 2px;
  background-color: var(--ph-primary);
  display: inline-block;
}

.stitch-heading-lg {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-stitch-p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 12px;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #ffffff;
  border-radius: var(--ph-radius-md);
  border: 1px solid var(--ph-border);
}

.about-feature-icon {
  font-size: 24px;
  color: var(--ph-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.about-feature-desc {
  font-size: 11.5px;
  color: var(--ph-text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.btn-primary-stitch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  background: var(--ph-primary);
  color: #ffffff;
  border-radius: var(--ph-radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: var(--ph-transition);
}

.btn-primary-stitch:hover {
  background: var(--ph-primary-container);
  color: #ffffff;
  transform: translateY(-1px);
}

.about-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.about-call-link:hover {
  color: var(--ph-primary);
}

.services-stitch-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.stitch-section-header {
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.stitch-badge-pill {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ph-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

.stitch-subtitle {
  font-size: 14px;
  color: var(--ph-text-muted);
  margin-top: 6px;
  line-height: 1.55;
}

.service-stitch-card {
  background: #f8fafc;
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ph-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--ph-transition);
}

.service-stitch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ph-shadow-lg);
  border-color: #cbd5e1;
}

.service-card-media {
  height: 190px;
  overflow: hidden;
  position: relative;
}

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

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

.service-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ph-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  box-shadow: var(--ph-shadow-sm);
}

.service-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0;
}

.service-card-footer {
  padding-top: 14px;
  border-top: 1px solid var(--ph-border);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-meta {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ph-primary);
}

.service-card-link {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card-link:hover {
  color: var(--ph-primary);
}

.how-it-works-section {
  padding: 80px 0;
  background-color: var(--ph-surface-gray);
  border-top: 1px solid var(--ph-border);
  border-bottom: 1px solid var(--ph-border);
}

.step-stitch-card {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-border);
  box-shadow: var(--ph-shadow-sm);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.step-stitch-card:hover {
  transform: translateY(-6px);
  border-color: var(--ph-primary);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.12);
}

.step-stitch-card:hover .step-num-badge {
  background: var(--ph-primary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 107, 44, 0.35);
}

.step-num-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #dcfce7;
  color: var(--ph-primary);
  font-family: var(--ph-font-heading);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 0;
}

.materials-stitch-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.materials-banner-card {
  background: #0f172a;
  color: #ffffff;
  border-radius: var(--ph-radius-xl);
  padding: 44px;
  box-shadow: var(--ph-shadow-xl);
}

.materials-content {
  width: 100%;
}

.materials-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

.materials-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.materials-desc {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.6;
}

.material-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 41, 59, 0.85);
  padding: 14px;
  border-radius: var(--ph-radius-md);
  border: 1px solid #334155;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.material-item:hover {
  background: rgba(30, 41, 59, 1);
  border-color: #4ade80;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.material-item:hover .material-icon {
  transform: scale(1.15);
}

.material-icon {
  font-size: 22px;
  color: #4ade80;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.material-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.material-sub {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.35;
}

.materials-img-box {
  position: relative;
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--ph-shadow-2xl);
  height: 100%;
  min-height: 280px;
}

.materials-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.materials-img-box:hover .materials-main-img {
  transform: scale(1.05);
}

.materials-float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 222, 128, 0.4);
  padding: 12px 16px;
  border-radius: var(--ph-radius-md);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-stitch-section {
  padding: 80px 0;
  background-color: var(--ph-surface-gray);
}

.review-stitch-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-border);
  box-shadow: var(--ph-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.review-stitch-card:hover {
  transform: translateY(-6px);
  border-color: var(--ph-primary);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.12);
}

.review-stitch-card:hover .review-avatar {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 107, 44, 0.3);
}

.review-avatar {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 13px;
  color: #475569;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
}

.review-author-wrap {
  padding-top: 16px;
  border-top: 1px solid var(--ph-border-light);
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-green {
  background: #dcfce7;
  color: var(--ph-primary);
}

.avatar-emerald {
  background: #d1fae5;
  color: #065f46;
}

.avatar-gray {
  background: #f1f5f9;
  color: #334155;
}

.review-author-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.review-author-meta {
  font-size: 11px;
  color: var(--ph-text-muted);
}

.clients-stitch-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--ph-border);
  overflow: hidden;
}

.cli-slider-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.cli-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: cliScroll 35s linear infinite;
}

.cli-track:hover {
  animation-play-state: paused;
}

.cli-slide-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.cli-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: var(--ph-transition);
}

.cli-slide-item:hover .cli-logo-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes cliScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.payment-stitch-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.payment-banner-card {
  background: #0f172a;
  color: #ffffff;
  border-radius: var(--ph-radius-xl);
  padding: 42px;
  box-shadow: var(--ph-shadow-xl);
}

.payment-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.payment-heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.payment-desc {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 18px;
}

.payment-bank-box {
  background: rgba(30, 41, 59, 0.9);
  border-radius: var(--ph-radius-md);
  padding: 16px;
  border: 1px solid #334155;
  font-family: monospace;
  font-size: 12px;
  margin-bottom: 14px;
}

.payment-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

.bank-lbl {
  color: #94a3b8;
}

.bank-val {
  font-weight: 700;
  color: #ffffff;
}

.bank-val-green {
  color: #4ade80;
  background: #0f172a;
  padding: 2px 6px;
  border-radius: 4px;
}

.payment-wa-note {
  font-size: 12px;
  color: #94a3b8;
}

.payment-wa-note a {
  color: #4ade80;
  font-weight: 700;
  text-decoration: underline;
}

.payment-qr-card {
  background: #ffffff;
  color: #0f172a;
  padding: 24px;
  border-radius: var(--ph-radius-lg);
  box-shadow: var(--ph-shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--ph-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qr-sub {
  font-size: 11px;
  color: var(--ph-text-muted);
  margin: 2px 0 12px 0;
}

.qr-img-box {
  padding: 10px;
  background: #f8fafc;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  display: inline-block;
}

.qr-actual-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.qr-upi-text {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 10px;
  display: block;
}

.qr-badge-verified {
  font-size: 11px;
  color: #15803d;
  font-weight: 600;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
}

.faq-stitch-section {
  padding: 80px 0;
  background-color: var(--ph-surface-gray);
}

.faq-help-card {
  background: #0f172a;
  border-radius: var(--ph-radius-xl);
  padding: 32px;
  color: #ffffff;
  box-shadow: var(--ph-shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-help-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--ph-radius-md);
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.faq-help-title {
  font-family: var(--ph-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.faq-help-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 20px;
}

.faq-help-perks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.faq-help-perk {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-stitch-item {
  background: #ffffff;
  border-radius: var(--ph-radius-md);
  border: 1px solid var(--ph-border);
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: var(--ph-shadow-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.faq-stitch-item:hover {
  transform: translateY(-2px);
  border-color: var(--ph-primary);
  box-shadow: var(--ph-shadow-md);
}

.faq-stitch-item.active {
  border-color: var(--ph-primary);
  border-left: 4px solid var(--ph-primary);
  box-shadow: 0 10px 25px -4px rgba(0, 107, 44, 0.1);
  background: #ffffff;
}

.faq-stitch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  user-select: none;
}

.faq-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-q-badge {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--ph-primary-light);
  color: var(--ph-primary);
  font-family: var(--ph-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-stitch-item.active .faq-q-badge {
  background: var(--ph-primary);
  color: #ffffff;
}

.faq-chevron {
  color: var(--ph-primary);
  font-size: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-stitch-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-stitch-body {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  display: none;
}

.faq-stitch-item.active .faq-stitch-body {
  display: block;
}

.cta-stitch-section {
  background: var(--ph-primary);
  color: #ffffff;
  padding: 48px 0;
}

.cta-stitch-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.cta-stitch-sub {
  font-size: 13.5px;
  color: #dcfce7;
  margin-bottom: 0;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #ffffff;
  color: var(--ph-primary);
  border-radius: var(--ph-radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: var(--ph-shadow-sm);
  transition: var(--ph-transition);
}

.btn-cta-white:hover {
  background: #f1f5f9;
  color: var(--ph-primary);
  transform: translateY(-1px);
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #064e3b;
  color: #ffffff;
  border-radius: var(--ph-radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--ph-transition);
}

.btn-cta-dark:hover {
  background: #022c22;
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-stitch-section {
  background-color: #0f172a;
  color: #cbd5e1;
  padding-top: 64px;
  padding-bottom: 40px;
  border-top: 1px solid #1e293b;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-brand-title {
  font-family: var(--ph-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-social-wrap {
  margin-top: 14px;
  margin-bottom: 14px;
}

.footer-social-title {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid #334155;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.footer-social-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.footer-social-insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: #d6249f;
  color: #ffffff;
}

.footer-social-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.footer-social-in:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}

.footer-social-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.footer-sister-tag {
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 4px;
}

.footer-compliance-tag {
  font-size: 11.5px;
  color: #94a3b8;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-list a {
  color: #94a3b8;
  font-size: 12.5px;
  transition: var(--ph-transition);
}

.footer-link-list a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
  color: #94a3b8;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-link {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-link:hover {
  color: #4ade80;
}

.btn-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #059669;
  color: #ffffff;
  border-radius: var(--ph-radius-sm);
  font-size: 12px;
  font-weight: 700;
}

.btn-footer-wa:hover {
  background: #047857;
  color: #ffffff;
}

.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #64748b;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-links a {
  color: #64748b;
  transition: var(--ph-transition);
}

.footer-legal-links a:hover {
  color: #cbd5e1;
}



/* Prevent Bootstrap Modal Layout Shift */
html {
  overflow-y: scroll;
}

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden !important;
}

.modal {
  padding-right: 0 !important;
}

.modal-open .nav-navbar,
.modal-open .nav-topbar,
.modal-open .mob-app-bar,
.modal-open .sticky-top,
.modal-open header,
.modal-open nav {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.pay-modal .modal-content {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

.modal-quote-card {
  border-radius: 20px !important;
}

.modal-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.modal-subtitle {
  display: block;
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 1px;
}

.pay-modal-header {
  background: linear-gradient(135deg, #0b1c11 0%, #0f172a 100%);
  color: #ffffff;
  padding: 16px 20px;
  border-bottom: 1px solid #1e293b;
}

.pay-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.form-label-custom {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
}

.form-input-wrap,
.form-select-wrap {
  position: relative;
  width: 100%;
}

.form-control-custom {
  width: 100%;
  height: 46px;
  padding: 0 36px 0 14px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-control-custom:focus {
  background: #ffffff;
  border-color: #006b2c;
  box-shadow: 0 0 0 3px rgba(0, 107, 44, 0.15);
}

.form-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #94a3b8;
}

.form-select-custom {
  width: 100%;
  height: 46px;
  padding: 0 34px 0 12px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  font-family: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.form-select-custom:focus {
  background: #ffffff;
  border-color: #006b2c;
  box-shadow: 0 0 0 3px rgba(0, 107, 44, 0.15);
}

.form-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #64748b;
}

.btn-modal-submit {
  width: 100%;
  height: 48px;
  background: #006b2c;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 107, 44, 0.35);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-modal-submit:hover {
  background: #005222;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 107, 44, 0.45);
}

.btn-modal-submit:active {
  transform: scale(0.98);
}

.btn-modal-submit i {
  font-size: 15px;
  transition: transform 0.2s ease;
}

.btn-modal-submit:hover i {
  transform: translateX(3px);
}

.modal-form-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  margin-top: 4px;
}

.pay-bank-heading {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.pay-bank-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  overflow: hidden;
}

.pay-bank-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 12.5px;
  border-bottom: 1px solid var(--ph-border);
}

.pay-bank-item:last-child {
  border-bottom: none;
}

.pay-bank-item span {
  color: var(--ph-text-muted);
}

.pay-qr-card {
  text-align: center;
  background: var(--ph-surface-gray);
  padding: 16px;
  border-radius: var(--ph-radius-md);
  border: 1px solid var(--ph-border);
}

.pay-qr-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto;
}

.pay-qr-caption {
  font-size: 11px;
  color: var(--ph-text-muted);
  margin-top: 6px;
  margin-bottom: 0;
}

.mob-app-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 58px;
  padding: 0 6px;
  padding-bottom: max(env(safe-area-inset-bottom, 0px), 0px);
  margin: 0;
  box-sizing: border-box;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.24s ease, visibility 0.28s;
}

.mob-app-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mob-app-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #475569;
  font-size: 10.5px;
  font-weight: 600;
  flex: 1;
  height: 100%;
  transition: color 0.18s ease, transform 0.15s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mob-app-tab:hover,
.mob-app-tab:focus {
  color: #006b2c;
}

.mob-app-tab:active {
  transform: scale(0.92);
  color: #006b2c;
}

.mob-app-icon-wrap {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease;
}

.mob-app-wa .mob-app-icon-wrap {
  color: #16a34a;
}

.mob-app-quote-btn {
  flex: 1.25;
  padding: 0 4px;
}

.mob-app-quote-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #006b2c;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  width: 100%;
  box-shadow: none;
  transition: background 0.18s ease, transform 0.15s ease;
}

.mob-app-quote-inner i {
  font-size: 13px;
}

.mob-app-quote-btn:active .mob-app-quote-inner {
  background: #005522;
  transform: scale(0.94);
}

.mob-app-label {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  margin-top: 3px;
  letter-spacing: 0.1px;
}

.bc-stitch-header {
  background: linear-gradient(135deg, #0b1c11 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(0, 107, 44, 0.35);
  padding: 42px 0 34px 0;
  color: #ffffff;
  position: relative;
}

.bc-stitch-title {
  font-family: var(--ph-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bc-stitch-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
}

.bc-stitch-link {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: var(--ph-transition);
}

.bc-stitch-link:hover {
  color: var(--ph-accent-green);
}

.bc-stitch-sep {
  color: #64748b;
  font-size: 11px;
}

.bc-stitch-current {
  color: #e2e8f0;
  font-weight: 600;
}

.page-detail-section {
  padding: 56px 0;
  background-color: var(--ph-surface-gray);
}

.detail-main-card {
  background: #ffffff;
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-border);
  padding: 32px;
  box-shadow: var(--ph-shadow-sm);
}

.detail-media-wrap {
  position: relative;
  border-radius: var(--ph-radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--ph-shadow-md);
  background: #0f172a;
}

.detail-verified-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.detail-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.detail-heading {
  font-family: var(--ph-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.detail-body-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.75;
}

.detail-body-text p {
  margin-bottom: 16px;
}

.detail-features-box {
  background: #f8fafc;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  padding: 24px;
  margin: 28px 0;
}

.detail-subheading {
  font-family: var(--ph-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.detail-spec-item {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--ph-transition);
}

.detail-spec-item:hover {
  border-color: var(--ph-primary);
  transform: translateY(-2px);
  box-shadow: var(--ph-shadow-sm);
}

.detail-spec-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ph-radius-sm);
  background: var(--ph-primary-light);
  color: var(--ph-primary);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-spec-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detail-spec-val {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

.detail-callout-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--ph-radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-callout-title {
  font-family: var(--ph-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.detail-callout-sub {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 0;
}

.sidebar-form-card {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 26px;
  box-shadow: var(--ph-shadow-sm);
}

.sidebar-form-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--ph-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.sidebar-form-title {
  font-family: var(--ph-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 4px 0 2px 0;
}

.sidebar-form-subtitle {
  font-size: 12.5px;
  color: var(--ph-text-muted);
  margin-bottom: 16px;
}

.sidebar-nav-card {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 24px;
  box-shadow: var(--ph-shadow-sm);
}

.sidebar-nav-title {
  font-family: var(--ph-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #f1f5f9;
}

.sidebar-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-link-list li a {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: var(--ph-radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  transition: var(--ph-transition);
}

.sidebar-link-list li a:hover {
  background: var(--ph-primary-light);
  color: var(--ph-primary);
  transform: translateX(4px);
}

.feat-section,
.abt-section,
.cli-section,
.test-section,
.cnt-section,
.srv-section {
  padding: 64px 0;
  background-color: var(--ph-surface-gray);
}

.feat-sec-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
}

.feat-sec-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ph-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 6px;
}

.feat-sec-title {
  font-family: var(--ph-font-heading);
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.feat-card {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 28px;
  box-shadow: var(--ph-shadow-sm);
  height: 100%;
  transition: var(--ph-transition);
  display: flex;
  flex-direction: column;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ph-shadow-lg);
  border-color: #cbd5e1;
}

.feat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--ph-radius-md);
  background: var(--ph-primary-light);
  color: var(--ph-primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feat-card-title {
  font-family: var(--ph-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.feat-card-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

.abt-img-box {
  position: relative;
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  box-shadow: var(--ph-shadow-lg);
  border: 1px solid var(--ph-border);
}

.abt-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.abt-badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--ph-primary);
  color: #ffffff;
  padding: 16px 22px;
  border-radius: var(--ph-radius-md);
  box-shadow: var(--ph-shadow-xl);
  text-align: center;
}

.abt-badge-number {
  font-family: var(--ph-font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.abt-badge-text {
  font-size: 11px;
  color: #dcfce7;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.abt-content-box {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 32px;
  box-shadow: var(--ph-shadow-sm);
}

.abt-sister-concern {
  display: inline-block;
  background: var(--ph-primary-light);
  color: var(--ph-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.abt-heading {
  font-family: var(--ph-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.abt-paragraph {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

.abt-info-item {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  padding: 18px 20px;
  box-shadow: var(--ph-shadow-sm);
  height: 100%;
}

.abt-info-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.abt-info-val {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
}

.cli-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}

.cli-item {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  padding: 16px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ph-shadow-sm);
  transition: var(--ph-transition);
}

.cli-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--ph-shadow-md);
  border-color: var(--ph-primary);
}

.cli-img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  transition: var(--ph-transition);
}

.test-card {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 26px;
  box-shadow: var(--ph-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--ph-transition);
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ph-shadow-lg);
  border-color: #cbd5e1;
}

.test-quote-icon {
  font-size: 28px;
  color: var(--ph-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.test-stars {
  color: #eab308;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

.test-text {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.test-client-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--ph-border);
}

.test-client-name {
  font-family: var(--ph-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.test-client-role {
  font-size: 11.5px;
  color: var(--ph-text-muted);
  margin-bottom: 0;
}

.cnt-card {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--ph-shadow-sm);
  height: 100%;
  text-align: center;
  transition: var(--ph-transition);
}

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

.cnt-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ph-primary-light);
  color: var(--ph-primary);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}

.cnt-title {
  font-family: var(--ph-font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.cnt-text {
  font-size: 13.5px;
  color: #475569;
  margin-bottom: 4px;
}

.cnt-text a {
  color: #0f172a;
  font-weight: 600;
}

.cnt-text a:hover {
  color: var(--ph-primary);
}

.faq-form-card {
  background: #ffffff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 32px;
  box-shadow: var(--ph-shadow-sm);
}

.faq-form-title {
  font-family: var(--ph-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.faq-form-subtitle {
  font-size: 13px;
  color: var(--ph-text-muted);
  margin-bottom: 20px;
}

.faq-input {
  width: 100%;
  padding: 11px 14px;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--ph-radius-sm);
  font-size: 13.5px;
  color: #0f172a;
  outline: none;
  transition: var(--ph-transition);
  font-family: inherit;
}

.faq-input:focus {
  background-color: #ffffff;
  border-color: var(--ph-primary);
  box-shadow: 0 0 0 3px rgba(0, 107, 44, 0.15);
}

.faq-submit-btn {
  width: 100%;
  padding: 13px 22px;
  background: var(--ph-primary);
  color: #ffffff;
  border-radius: var(--ph-radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ph-shadow-md);
  transition: var(--ph-transition);
}

.faq-submit-btn:hover {
  background: var(--ph-primary-container);
  color: #ffffff;
  transform: translateY(-1px);
}

.srv-card {
  background: #ffffff;
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ph-border);
  box-shadow: var(--ph-shadow-sm);
  height: 100%;
  transition: var(--ph-transition);
}

.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ph-shadow-lg);
  border-color: #cbd5e1;
}

.srv-card-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.srv-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.srv-card:hover .srv-card-img {
  transform: scale(1.06);
}

.srv-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.srv-card-body {
  padding: 22px;
}

.srv-card-title {
  font-family: var(--ph-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.srv-card-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .mob-app-bar {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 64px !important;
  }

  .nav-topbar {
    padding: 7px 0;
    font-size: 12px;
  }

  .nav-topbar-link,
  .nav-topbar-wa {
    font-size: 12px;
    gap: 4px;
  }

  .nav-navbar {
    padding: 10px 0 !important;
  }

  .nav-brand-logo {
    height: 42px;
  }

  .nav-brand-wrap {
    gap: 10px;
  }

  .nav-brand-title {
    font-size: 17px;
  }

  .nav-brand-subtitle {
    font-size: 10px;
    margin-top: 1px;
  }

  .nav-mobile-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    transition: all 0.2s ease;
  }

  .nav-mobile-toggle:active {
    background: #e2e8f0;
    transform: scale(0.95);
  }

  .nav-menu-list {
    display: none;
  }

  .hero-modern-section {
    margin-top: -72px;
    padding: 104px 0 36px 0;
  }

  .hero-main-title {
    font-size: 32px;
  }

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

  .hero-btn-group {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-modern-section {
    margin-top: -68px;
    padding: 96px 0 28px 0;
  }

  .hero-top-badge {
    font-size: 11.5px;
    padding: 6px 14px;
    text-align: center;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
    gap: 6px;
  }

  .hero-badge-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
  }

  .hero-main-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .hero-main-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-booking-card {
    padding: 16px 14px;
    border-radius: 18px;
  }

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

  .hero-btn-group {
    grid-column: span 1;
  }

  .hero-btn-check-price {
    width: 100%;
    min-width: 100%;
  }

  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
  }

  .hero-footer-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hero-trust-strip {
    gap: 12px 20px;
    margin-top: 20px;
  }

  .hero-trust-item {
    font-size: 12px;
  }

  .trust-metrics-section {
    padding: 20px 0;
  }

  .trust-metric-number {
    font-size: 26px;
  }

  .trust-metric-title {
    font-size: 12px;
  }

  .trust-metric-desc {
    font-size: 10.5px;
  }

  .about-stitch-section,
  .services-stitch-section,
  .how-it-works-section,
  .materials-stitch-section,
  .reviews-stitch-section,
  .payment-stitch-section,
  .faq-stitch-section {
    padding: 30px 0;
  }

  .about-fleet-img {
    height: 240px;
  }

  .about-iba-badge {
    position: static;
    margin-top: 12px;
    max-width: 100%;
    padding: 12px 16px;
  }

  .stitch-heading-lg {
    font-size: 22px;
  }

  .stitch-section-header {
    margin-bottom: 22px;
  }

  .stitch-subtitle {
    font-size: 12.5px;
  }

  .about-stitch-p {
    font-size: 13px;
  }

  .about-feature-card {
    padding: 10px;
  }

  .materials-banner-card {
    padding: 24px 16px;
  }

  .materials-title {
    font-size: 20px;
  }

  .materials-desc {
    font-size: 12px;
  }

  .material-item {
    padding: 10px;
  }

  .payment-banner-card {
    padding: 24px 16px;
  }

  .payment-heading {
    font-size: 20px;
  }

  .payment-bank-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .cta-stitch-section {
    padding: 32px 0;
  }

  .cta-stitch-title {
    font-size: 19px;
  }

  .btn-cta-white,
  .btn-cta-dark {
    width: 100%;
    justify-content: center;
  }

  .bc-stitch-header {
    padding: 24px 0 20px 0;
  }

  .bc-stitch-title {
    font-size: 22px;
  }

  .bc-stitch-nav {
    font-size: 12px;
  }

  .page-detail-section,
  .feat-section,
  .abt-section,
  .cli-section,
  .test-section,
  .cnt-section,
  .srv-section {
    padding: 30px 0;
  }

  .detail-main-card {
    padding: 18px 14px;
  }

  .detail-main-img {
    height: 220px;
  }

  .detail-heading {
    font-size: 22px;
  }

  .sidebar-form-card,
  .sidebar-nav-card {
    padding: 18px 14px;
  }

  .feat-sec-title {
    font-size: 22px;
  }

  .abt-img {
    height: 240px;
  }

  .abt-content-box {
    padding: 18px 14px;
  }

  .abt-heading {
    font-size: 22px;
  }

  .cnt-card {
    padding: 20px 16px;
  }

  .faq-form-card {
    padding: 20px 14px;
  }

  .srv-card-img-wrap {
    height: 180px;
  }

  .faq-help-card {
    padding: 22px 18px;
    margin-bottom: 20px;
  }

  .faq-help-title {
    font-size: 18px;
  }

  .faq-stitch-item {
    padding: 16px 14px;
  }

  .faq-stitch-header {
    font-size: 13.5px;
  }

  .faq-q-badge {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}

@media (max-width: 575.98px) {
  .nav-topbar {
    padding: 5px 0;
    font-size: 11px;
  }

  .nav-topbar-link,
  .nav-topbar-wa {
    font-size: 11px;
  }

  .nav-navbar {
    padding: 8px 0 !important;
  }

  .nav-brand-logo {
    height: 38px;
  }

  .nav-brand-wrap {
    gap: 8px;
  }

  .nav-brand-title {
    font-size: 15px;
    letter-spacing: -0.01em;
  }

  .nav-brand-subtitle {
    font-size: 9px;
    letter-spacing: 0.03em;
  }

  .hero-top-badge {
    font-size: 10.5px;
    padding: 5px 10px;
    line-height: 1.3;
  }

  .hero-main-title {
    font-size: 21px;
    line-height: 1.25;
  }
}