/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&family=Outfit:wght@300;400;700;800;900&display=swap');

/* --- Design System Variables --- */
:root {
  /* Colors */
  --color-navy: #041d40;
  --color-pink: #fe66c4;
  --color-yellow: #ffc409;
  --color-blue: #0084ff;
  --color-white: #ffffff;
  --color-gray: #FAF9F6;
  --color-border: rgba(4, 29, 64, 0.08);
  --color-text-body: rgba(4, 29, 64, 0.8);
  
  /* Gradients */
  --gradient-premium: linear-gradient(135deg, #ffeef4 0%, #fffbf0 100%);
  --gradient-pink-yellow: linear-gradient(135deg, rgba(254, 102, 196, 0.08) 0%, rgba(255, 196, 9, 0.08) 100%);
  --gradient-blue-pink: linear-gradient(135deg, rgba(142, 202, 253, 0.12) 0%, rgba(254, 102, 196, 0.1) 100%);
  --gradient-pink-orange: linear-gradient(135deg, rgba(254, 102, 196, 0.12) 0%, rgba(255, 150, 80, 0.1) 100%);
  --gradient-green-blue: linear-gradient(135deg, rgba(74, 222, 128, 0.08) 0%, rgba(142, 202, 253, 0.12) 100%);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(4, 29, 64, 0.03);
  --shadow-md: 0 12px 36px rgba(4, 29, 64, 0.05);
  --shadow-lg: 0 20px 48px rgba(4, 29, 64, 0.08);
  --shadow-glow: 0 15px 30px rgba(254, 102, 196, 0.15);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* --- Base & Reset Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-header h2,
.stat-number,
.step-header h3,
.price-main {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-navy);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* --- Ambient Glow Blobs --- */
.gradient-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background-color: rgba(254, 102, 196, 0.15);
}

.blob-2 {
  top: 40%;
  right: -10%;
  width: 35vw;
  height: 35vw;
  background-color: rgba(255, 196, 9, 0.1);
}

.blob-3 {
  bottom: -10%;
  left: 10%;
  width: 45vw;
  height: 45vw;
  background-color: rgba(142, 202, 253, 0.12);
}

/* --- Reusable Components --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.25rem 2.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--color-text-body);
  font-size: 1.1rem;
}

.section-badge {
  display: inline-block;
  background-color: rgba(254, 102, 196, 0.1);
  color: var(--color-pink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(254, 102, 196, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

/* --- Buttons --- */
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-bounce);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(254, 102, 196, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(254, 102, 196, 0.35);
}

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

.btn-outline:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.btn-zalo {
  background-color: #0068ff;
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 104, 255, 0.2);
}

.btn-zalo:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 104, 255, 0.3);
}

.btn-block {
  width: 100%;
  display: flex;
}

/* Pulsing CTA Animation */
.btn-pulse-attention {
  position: relative;
}

.btn-pulse-attention::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 16px;
  border: 2px solid var(--color-pink);
  opacity: 0;
  pointer-events: none;
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.98); opacity: 0.8; }
  50% { opacity: 0.3; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* --- Header Section --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.35rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  height: 72px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-item {
  text-decoration: none;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-item:hover {
  color: var(--color-pink);
}

/* --- Dropdown Menu --- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-dropdown-btn:hover {
  color: var(--color-pink);
}

.dropdown-arrow {
  transition: transform var(--transition-smooth);
}

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

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  min-width: 180px;
  box-shadow: 0 8px 30px rgba(4, 29, 64, 0.1);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  padding: 0.5rem 0;
  z-index: 1000;
  /* Visual gap with seamless hover coverage */
  border-top: 12px solid transparent;
  background-clip: padding-box;
}

.nav-dropdown-content a {
  color: var(--color-navy);
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  text-align: left;
}

.nav-dropdown-content a:hover {
  background-color: rgba(254, 102, 196, 0.05);
  color: var(--color-pink);
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

@media (max-width: 1200px) {
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  
  .nav-dropdown-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
  
  .nav-dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(4, 29, 64, 0.02);
    width: 100%;
    display: block;
    padding: 0.25rem 0;
    margin-top: 0;
  }
  
  .nav-dropdown-content a {
    text-align: center;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    opacity: 0.85;
  }
}

.header-cta .pill-button {
  font-size: 0.9rem;
  padding: 0.55rem 1.35rem;
  border-radius: 12px;
}

.mobile-menu-toggle {
  display: none;
}

.lang-select {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.lang-select:hover {
  border-color: var(--color-pink);
  background: var(--color-white);
}

/* --- Hero Section --- */
.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-body);
  margin-bottom: 2rem;
}

.hero-ratings-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-ratings-wrapper .stars {
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.92rem;
  color: var(--color-navy);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#heroBookNowBtn {
  width: 100%;
  max-width: 440px;
}

.hero-media {
  position: relative;
  width: 100%;
}

.hero-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- Stats Section --- */
.stats-section {
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(254, 102, 196, 0.2);
}

.stat-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(4, 29, 64, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--color-text-body);
  font-weight: 500;
}



/* --- Why Choose Us Section --- */
.why-us-section {
  background-color: var(--color-gray);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-us-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
}

.why-us-card {
  padding: 5px; /* Outer border thickness */
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  width: 40%;
  transition: var(--transition-bounce);
  z-index: 2;
  position: relative;
}

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

.why-us-card-inner {
  background: var(--color-white);
  border-radius: 15px;
  padding: 0.9rem 1rem 0.9rem 0.8rem;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.why-us-card.align-left {
  align-self: flex-start;
}

.why-us-card.align-right {
  align-self: flex-end;
  margin-top: -3.8rem; /* Overlap stagger on desktop */
}

.why-us-card-sidebar {
  width: 28px;
  border: 1px solid rgba(4, 29, 64, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.7rem;
  background: rgba(4, 29, 64, 0.02);
  flex-shrink: 0;
}

.why-us-card-sidebar span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--color-navy);
  text-transform: uppercase;
}

.why-us-card-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.why-us-card-header h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
}

.why-us-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(4, 29, 64, 0.04);
  flex-shrink: 0;
}

.icon-grad-1 { background: linear-gradient(135deg, rgba(254, 102, 196, 0.12) 0%, rgba(255, 196, 9, 0.12) 100%); }
.icon-grad-2 { background: linear-gradient(135deg, rgba(142, 202, 253, 0.12) 0%, rgba(254, 102, 196, 0.12) 100%); }
.icon-grad-3 { background: linear-gradient(135deg, rgba(74, 222, 128, 0.12) 0%, rgba(142, 202, 253, 0.12) 100%); }
.icon-grad-4 { background: linear-gradient(135deg, rgba(255, 150, 80, 0.12) 0%, rgba(74, 222, 128, 0.12) 100%); }

.why-us-card-main p {
  font-size: 0.78rem;
  color: var(--color-text-body);
  line-height: 1.42;
}

/* Connective Dotted Lines (Desktop Only) */
.connector-1 {
  position: absolute;
  top: 9%;
  left: 45%;
  width: 32%;
  height: 16%;
  border-top: 2.5px dashed rgba(254, 102, 196, 0.35);
  border-right: 2.5px dashed rgba(255, 196, 9, 0.35);
  border-top-right-radius: 24px;
  z-index: 1;
  pointer-events: none;
}

.connector-2 {
  position: absolute;
  top: 36%;
  right: 45%;
  width: 32%;
  height: 16%;
  border-top: 2.5px dashed rgba(255, 196, 9, 0.35);
  border-left: 2.5px dashed rgba(142, 202, 253, 0.35);
  border-top-left-radius: 24px;
  z-index: 1;
  pointer-events: none;
}

.connector-3 {
  position: absolute;
  top: 63%;
  left: 45%;
  width: 32%;
  height: 16%;
  border-top: 2.5px dashed rgba(142, 202, 253, 0.35);
  border-right: 2.5px dashed rgba(254, 102, 196, 0.35);
  border-top-right-radius: 24px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .why-us-grid-wrapper {
    gap: 0.75rem;
    padding: 1rem 0;
  }
  
  .why-us-card {
    width: 100% !important;
    align-self: stretch !important;
    margin-top: 0 !important;
    border-radius: 20px;
    padding: 5px; /* Thinner border on mobile */
  }
  
  .why-us-card-inner {
    border-radius: 15px;
    padding: 0.9rem 0.8rem;
  }
  
  .why-us-card-sidebar {
    margin-right: 0.7rem;
    width: 28px;
  }
  
  .connector-1, .connector-2, .connector-3 {
    display: none; /* Hide dashed connectors on mobile */
  }
}

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

.process-pipeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background-image: linear-gradient(to right, rgba(4, 29, 64, 0.15) 50%, transparent 50%);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  z-index: 1;
}

.process-step-card {
  display: flex;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-bounce);
  z-index: 2;
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-card-sidebar {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-right: 1px solid var(--color-border);
}

.bg-step-1 { background: rgba(142, 202, 253, 0.12); }
.bg-step-2 { background: rgba(254, 102, 196, 0.1); }
.bg-step-3 { background: rgba(255, 196, 9, 0.1); }
.bg-step-4 { background: rgba(74, 222, 128, 0.08); }

.step-card-sidebar span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  text-transform: uppercase;
}

.step-card-main {
  padding: 1.75rem 1.5rem;
  flex-grow: 1;
}

.step-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.step-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.step-card-icon {
  font-size: 1.1rem;
}

.step-card-main p {
  font-size: 0.88rem;
  color: var(--color-text-body);
  line-height: 1.5;
}

/* --- Pricing Section --- */
.delivery-notice-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-pink-yellow);
  border: 1px solid rgba(254, 102, 196, 0.15);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 95%;
  text-align: left;
}

.delivery-notice-banner .notice-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-navy);
}

@media (max-width: 768px) {
  .delivery-notice-banner {
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 1rem;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.pricing-card-v2 {
  background: var(--color-white);
  border: 1px solid rgba(4, 29, 64, 0.06);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
  position: relative;
}

.pricing-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-top-panel {
  background-color: #f1f3f5;
  border-radius: 24px;
  padding: 2.25rem 1.75rem 3.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
  text-align: left;
}

.pricing-card-v2.featured-card-v2 .pricing-card-top-panel {
  background: linear-gradient(135deg, #e3f2fd 0%, #ffeef4 100%) !important;
  border: 1px solid rgba(254, 102, 196, 0.15);
}

.pricing-card-v2.featured-card-v2 {
  border: 1px solid rgba(254, 102, 196, 0.2);
  box-shadow: var(--shadow-lg);
}

.pricing-card-badge {
  background: rgba(254, 102, 196, 0.1);
  color: var(--color-pink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(254, 102, 196, 0.15);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-body);
  margin-left: 0.25rem;
  white-space: nowrap;
}

.price-usd-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-pink);
  margin-bottom: 1.25rem;
  display: block;
}

.pricing-card-subtitle {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-body);
}

/* Overlapping Button */
.pricing-card-btn {
  position: absolute;
  bottom: -22px;
  left: 1.75rem;
  right: 1.75rem;
  background-color: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 196, 9, 0.25);
  transition: var(--transition-bounce);
  z-index: 10;
  border: 1px solid transparent;
}

.pricing-card-btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(254, 102, 196, 0.35);
}

.pricing-card-bottom-panel {
  padding: 3rem 1rem 1.5rem 1rem;
  flex-grow: 1;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  text-align: left;
}

.pricing-features li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-body);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li .checkmark {
  color: #25D366;
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- Testimonials Section --- */
.testimonial-section-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(4, 29, 64, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  gap: 0.4rem;
}

.testimonial-section-badge .badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-pink);
  border-radius: 50%;
}

.text-muted {
  color: rgba(4, 29, 64, 0.45);
}

.testimonials-wrapper {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scroll-behavior: smooth;
  width: 100%;
  padding: 3rem 0; /* Add padding to prevent clipping of scaled cards and their shadows */
}

.testimonials-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonials-grid {
  display: flex;
  gap: 2.25rem;
  transition: var(--transition-smooth);
}

.testimonial-card {
  flex: 0 0 calc((100% - 4.5rem) / 3); /* 3 cards visible on desktop */
  background: var(--color-white);
  border: 1px solid rgba(4, 29, 64, 0.06);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  transform: scale(0.92); /* Smaller adjacent cards */
  opacity: 0.6; /* Dimmer adjacent cards */
}

.testimonial-card:hover {
  opacity: 0.8;
}

.testimonial-card.active-card {
  transform: scale(1.05); /* Larger center card */
  opacity: 1; /* Full opacity center card */
  box-shadow: var(--shadow-lg);
  z-index: 5;
  background: radial-gradient(circle at 50% 0%, rgba(254, 102, 196, 0.18) 0%, rgba(255, 196, 9, 0.08) 50%, var(--color-white) 100%) !important;
  border-color: rgba(254, 102, 196, 0.15) !important;
}

.testimonial-card.active-card:hover {
  transform: scale(1.07);
  opacity: 1;
}

.testimonial-avatar-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1.5px solid var(--color-white);
  box-shadow: 0 4px 10px rgba(4, 29, 64, 0.08);
}

.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-quote {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-navy);
  margin-bottom: 1.75rem;
  font-style: normal; /* Sensus style is not italic */
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  margin-top: auto; /* Push metadata to bottom if quotes differ in length */
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-navy);
  display: block;
}

.reviewer-origin {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(4, 29, 64, 0.5);
  display: block;
  margin-top: 0.15rem;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(4, 29, 64, 0.08);
  transition: var(--transition-bounce);
  outline: none;
}

.control-prev {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.control-prev:hover {
  transform: scale(1.05);
  background-color: #0d284f;
}

.control-next {
  background-color: var(--color-white);
  color: var(--color-navy);
}

.control-next:hover {
  transform: scale(1.05);
  background-color: var(--color-gray);
}

/* --- Price Calculator Section --- */
.booking-section {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  max-width: 1100px;
  margin: 0 auto;
  gap: 4rem;
  align-items: start;
}

.booking-estimator-card h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.booking-estimator-card p {
  color: var(--color-text-body);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.estimator-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.estimator-panel h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.estimator-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-body);
}

.estimator-row span:last-child {
  font-weight: 700;
  color: var(--color-navy);
}

.estimator-divider {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 1.5rem 0;
}

.estimator-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.estimator-total-row span:first-child {
  font-weight: 700;
  font-size: 1.05rem;
}

.estimator-total-pricing {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.estimator-total-pricing .total-vnd {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-pink);
}

.estimator-total-pricing .total-usd {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 0.15rem;
}

.calculator-notice {
  font-size: 0.78rem !important;
  color: var(--color-text-body);
  margin-bottom: 0 !important;
  font-style: italic;
}

.booking-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
}

.booking-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy);
  background-color: var(--color-gray);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-pink);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(254, 102, 196, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.checkbox-spacer {
  display: block;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select {
  height: 52px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .checkbox-spacer {
    display: none;
  }
  .form-group input:not([type="checkbox"]):not([type="radio"]),
  .form-group select {
    height: 50px;
  }
}

/* --- FAQ Section --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: start;
}

.faq-accordion-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-accordion-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-accordion-trigger span:first-child {
  padding-right: 1.5rem;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-pink);
  transition: var(--transition-smooth);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-content p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-accordion-item.active {
  border-color: rgba(254, 102, 196, 0.35);
  box-shadow: var(--shadow-md);
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-support-box {
  background: var(--gradient-premium);
  border: 2px solid var(--color-pink);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: sticky;
  top: 110px;
}

.faq-support-box h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.faq-support-box p {
  font-size: 0.9rem;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
}

.support-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.support-avatars .avatar {
  font-size: 1.8rem;
  margin: 0 -5px;
}

.support-hours {
  display: block;
  font-size: 0.85rem;
  color: var(--color-navy);
}

/* --- Location Section --- */
.location-grid {
  width: 100%;
}

.location-map-card {
  box-shadow: var(--shadow-md);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* --- Footer Section --- */
.main-footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

.main-footer .section-container {
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 76px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-pink);
}

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

.footer-links ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.footer-links ul a:hover {
  color: var(--color-white);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact strong {
  color: var(--color-white);
}

.contact-link {
  color: var(--color-pink);
  text-decoration: none;
  font-weight: 700;
}

.contact-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Mobile Floating CTA Bar --- */
.mobile-floating-cta-bar {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  height: 52px;
  z-index: 999;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  background: transparent;
  box-shadow: none;
}

.floating-cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(4, 29, 64, 0.15);
  transition: var(--transition-smooth);
}

.bg-whatsapp-color {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: shake-wobble 4s infinite 0s;
}
.bg-navy-color {
  background: linear-gradient(135deg, #041d40 0%, #1c457b 100%);
  animation: shake-wobble 4s infinite 1.3s;
}
.bg-zalo-color {
  background: linear-gradient(135deg, #0088ff 0%, #0052cc 100%);
  animation: shake-wobble 4s infinite 2.6s;
}

@keyframes shake-wobble {
  0%, 100% { transform: rotate(0deg) scale(1); }
  2% { transform: rotate(3deg) scale(1.03); }
  4% { transform: rotate(-3deg) scale(1.03); }
  6% { transform: rotate(3deg) scale(1.03); }
  8% { transform: rotate(-3deg) scale(1.03); }
  10% { transform: rotate(2deg) scale(1.03); }
  12% { transform: rotate(-2deg) scale(1.03); }
  14% { transform: rotate(0deg) scale(1.03); }
  25% { transform: rotate(0deg) scale(1); }
}


/* ==========================================================================
   Responsive Mobile Styling
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ratings-wrapper {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  
  .process-pipeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-pipeline::before {
    display: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-card-v2.featured-card-v2 {
    transform: none;
  }
  
  .pricing-card-v2.featured-card-v2:hover {
    transform: translateY(-5px);
  }
  
  .testimonials-wrapper {
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    scroll-snap-type: x mandatory;
  }
  
  .testimonials-grid {
    gap: 1.5rem;
  }
  
  .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 cards visible on tablets */
    scroll-snap-align: start;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-support-box {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1200px) {
  .mobile-menu-toggle {
    display: flex;
    background: none;
    border: none;
    color: var(--color-navy);
    cursor: pointer;
    padding: 0.45rem;
    margin-left: 0.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(4, 29, 64, 0.15);
  }

  .mobile-menu-toggle:hover {
    background-color: rgba(4, 29, 64, 0.05);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(4, 29, 64, 0.08);
    border-top: 1px solid var(--color-border);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-item {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
  
  .header-container {
    padding: 0.25rem 1.5rem;
  }
  
  .header-logo-img {
    height: 56px;
  }
  
  .header-cta .pill-button {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 1.5rem 1.25rem;
  }
  
  body {
    padding-bottom: 60px; /* Space for mobile floating action bar */
  }
  
  .testimonial-card {
    flex: 0 0 280px !important;
  }
  
  .mobile-floating-cta-bar {
    display: grid;
  }
  
  /* Stacking the process cards vertically with horizontal text on mobile */
  .process-step-card {
    flex-direction: column !important;
    padding: 0 !important;
  }
  
  .step-card-sidebar {
    width: 100% !important;
    height: 32px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--color-border) !important;
  }
  
  .step-card-sidebar span {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: 0.75rem !important;
  }
  
  .step-card-main {
    padding: 1.5rem 1.25rem !important;
  }
  
  .booking-form-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- Vertical Floating CTAs Widget --- */
.vertical-floating-ctas {
  position: fixed;
  right: 25px;
  bottom: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.floating-cta-btn,
.floating-cta-btn.cta-chat {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(4, 29, 64, 0.08);
  box-shadow: 0 8px 24px rgba(4, 29, 64, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(4, 29, 64, 0.12);
}

.floating-cta-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(4, 29, 64, 0.08);
}

.cta-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
}

.cta-whatsapp:hover {
  background-color: var(--color-white);
  color: #25D366;
  border-color: #25D366;
}

.cta-phone {
  background-color: #FF4B4B;
  color: var(--color-white);
}

.cta-phone:hover {
  background-color: var(--color-white);
  color: #FF4B4B;
  border-color: #FF4B4B;
}

.cta-zalo {
  background-color: #0068ff;
  color: var(--color-white);
}

.cta-zalo:hover {
  background-color: var(--color-white);
  color: #0068ff;
  border-color: #0068ff;
}

.cta-maps {
  background-color: var(--color-yellow);
  color: var(--color-navy);
}

.cta-maps:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-yellow);
}

.zalo-text-icon {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.05em;
}


/* --- Team & About Us Section --- */
.team-section {
  background: var(--gradient-blue-pink);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.team-section::before, .team-section::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  pointer-events: none;
}

.team-section::before {
  top: 30px;
  right: 5%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fe66c4'><path d='M12 2a4 4 0 0 0-4 4 4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4 4 4 0 0 0 4-4 4 4 0 0 0-4-4 4 4 0 0 0-4 4z'/></svg>");
  animation: floatFlower 6s ease-in-out infinite;
}

.team-section::after {
  bottom: 40px;
  left: 5%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23041d40'><path d='M12 8a4 4 0 0 0 4-4 4 4 0 0 0 4 4 4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0-4-4 4 4 0 0 0 4-4 4 4 0 0 0-4-4 4 4 0 0 0 4 4z'/></svg>");
  animation: floatFlower 8s ease-in-out infinite alternate;
}

@keyframes floatFlower {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(15deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.team-photo-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px; /* Rounded corners like in Image 2 */
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce), box-shadow 0.3s ease;
  cursor: pointer;
}

.team-photo-card:hover {
  transform: translateY(-8px); /* Lift animation like in Image 2 */
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.team-img-wrapper {
  border: 1px solid var(--color-border);
  border-radius: 16px; /* Rounded image wrapper like in Image 2 */
  background-color: #f5f5f5;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 0;
  aspect-ratio: 1 / 1;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(90deg);
}

.team-footer-action {
  text-align: center;
  margin-top: 3rem;
}

/* Responsiveness for Team Grid */
@media (max-width: 992px) {
  .team-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .team-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .team-photo-card {
    padding: 0.6rem;
    border-radius: 16px;
    max-width: none;
    margin: 0;
  }
}

/* --- Survey Section --- */
.survey-section {
  padding: 2rem 0;
}

.survey-card-container {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.survey-divider {
  border: 0;
  height: 1px;
  background-color: var(--color-border);
  margin: 1rem 0;
}

.survey-question-group {
  margin-bottom: 1.25rem;
}

.question-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.question-label .sub-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-pink);
}

.survey-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

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

.survey-option-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background-color: var(--color-gray);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
}

.survey-option-card input[type="radio"],
.survey-option-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom styled indicator */
.option-custom-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(4, 29, 64, 0.2);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
  background-color: var(--color-white);
  margin-top: 1px;
}

.option-custom-btn.checkbox-style {
  border-radius: 5px;
}

/* Selected state styling */
.survey-option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(254, 102, 196, 0.2);
  box-shadow: var(--shadow-sm);
}

.survey-option-card input:checked ~ .option-custom-btn {
  border-color: var(--color-pink);
  background-color: var(--color-pink);
}

/* Center dot/check icon for radio/checkbox */
.survey-option-card input:checked ~ .option-custom-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-white);
}

.survey-option-card input:checked ~ .option-custom-btn.checkbox-style::after {
  content: "✓";
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  width: auto;
  height: auto;
  border-radius: 0;
  transform: translate(-50%, -60%);
}

.survey-option-card input:checked ~ .option-text {
  font-weight: 700;
  color: var(--color-navy);
}

.option-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-body);
  line-height: 1.35;
}

.survey-submit-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

.survey-success-message {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: #25D366;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .survey-options-grid {
    grid-template-columns: 1fr !important;
    gap: 0.65rem;
  }
  .survey-card-container {
    padding: 1.25rem 1rem;
  }
}

/* ==================================================
 * SERVICES GRID SECTION (3x2 Layout)
 * ================================================== */

.grid-services-section {
  position: relative;
  padding: 1rem 0 2.25rem 0;
  background-color: var(--color-gray);
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.grid-services-section .section-container {
  padding-top: 0.5rem;
}

.pricing-section .section-container {
  padding-bottom: 0.5rem;
}

.services-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-grid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.02), 
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.service-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 30px rgba(4, 29, 64, 0.05), 
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Card Theme Gradients with color-coded badge styling to ensure visibility */
.card-theme-pink {
  background: linear-gradient(135deg, rgba(254, 102, 196, 0.06) 0%, rgba(255, 255, 255, 0.65) 100%);
}
.card-theme-pink .badge-square {
  background-color: rgba(254, 102, 196, 0.09);
}
.card-theme-pink .badge-square svg {
  color: var(--color-pink);
}

.card-theme-blue {
  background: linear-gradient(135deg, rgba(142, 202, 253, 0.08) 0%, rgba(255, 255, 255, 0.65) 100%);
}
.card-theme-blue .badge-square {
  background-color: rgba(0, 132, 255, 0.09);
}
.card-theme-blue .badge-square svg {
  color: var(--color-blue, #0084ff);
}

.card-theme-purple {
  background: linear-gradient(135deg, rgba(186, 168, 255, 0.07) 0%, rgba(255, 255, 255, 0.65) 100%);
}
.card-theme-purple .badge-square {
  background-color: rgba(108, 92, 231, 0.09);
}
.card-theme-purple .badge-square svg {
  color: #6c5ce7;
}

.card-theme-teal {
  background: linear-gradient(135deg, rgba(129, 236, 236, 0.07) 0%, rgba(255, 255, 255, 0.65) 100%);
}
.card-theme-teal .badge-square {
  background-color: rgba(0, 206, 201, 0.09);
}
.card-theme-teal .badge-square svg {
  color: #00b894;
}

.card-theme-yellow {
  background: linear-gradient(135deg, rgba(255, 220, 160, 0.08) 0%, rgba(255, 255, 255, 0.65) 100%);
}
.card-theme-yellow .badge-square {
  background-color: rgba(253, 203, 110, 0.12);
}
.card-theme-yellow .badge-square svg {
  color: #e1b12c;
}

.card-theme-navy {
  background: linear-gradient(135deg, rgba(4, 29, 64, 0.04) 0%, rgba(255, 255, 255, 0.65) 100%);
}
.card-theme-navy .badge-square {
  background-color: rgba(4, 29, 64, 0.06);
}
.card-theme-navy .badge-square svg {
  color: var(--color-navy);
}

/* Card Header (Row with badges and fav button) */
.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  width: 100%;
}

.card-badges-row {
  display: flex;
  gap: 0.5rem;
}

.badge-square {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.badge-square svg {
  width: 18px;
  height: 18px;
}

/* Fav Heart Button */
.card-fav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid rgba(4, 29, 64, 0.1);
  color: rgba(4, 29, 64, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-fav-btn svg {
  width: 13px;
  height: 13px;
}

.card-fav-btn:hover {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 4px 8px rgba(254, 102, 196, 0.25);
}

/* Card content */
.service-grid-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.3rem;
}

.service-grid-card .card-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.48;
  margin-bottom: 0.8rem;
  flex-grow: 1;
}

/* Bottom elements */
.card-bottom-row {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: nowrap;
  width: 100%;
}

.card-price-pill {
  display: inline-block;
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(4, 29, 64, 0.12);
}

/* Responsive constraints */
@media (max-width: 992px) {
  .services-layout-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 650px) {
  .services-layout-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-grid-card {
    padding: 1.3rem 1.2rem;
  }
}

/* --- Section Level Block Styles --- */
.hero-section {
  background: var(--gradient-premium);
}

.pricing-section {
  background-color: var(--color-white);
}

.process-section {
  background-color: var(--color-white);
}

.team-section {
  background-color: var(--color-white);
}

.testimonials-section {
  background-color: var(--color-gray);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.survey-section {
  background-color: var(--color-gray);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.faq-section {
  background-color: var(--color-white);
}

.location-section {
  background-color: var(--color-gray);
  border-top: 1px solid var(--color-border);
}

/* --- Chatbot Widget --- */
.chatbot-widget {
  position: fixed;
  right: 95px; /* Sit to the left of the floating buttons on desktop */
  bottom: 30px;
  width: 360px;
  z-index: 1000;
  font-family: var(--font-body);
  text-align: left;
}

.chatbot-window {
  width: 100%;
  max-width: 100%;
  background: var(--color-white);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(4, 29, 64, 0.18);
  border: 1px solid rgba(4, 29, 64, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chatbot-widget.hidden .chatbot-window {
  display: none !important;
}

.chatbot-toggle-badge {
  background-color: var(--color-white);
  color: var(--color-pink);
  font-size: 0.74rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 800;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem 0.95rem;
  background: linear-gradient(135deg, rgba(254, 102, 196, 0.12), rgba(255, 196, 9, 0.08));
  border-bottom: 1px solid rgba(4, 29, 64, 0.05);
}

.chatbot-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy);
}

.chatbot-subtitle {
  font-size: 0.8rem;
  color: var(--color-text-body);
  opacity: 0.85;
  margin-top: 0.1rem;
}

.chatbot-close {
  border: none;
  background: transparent;
  color: var(--color-navy);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.chatbot-close:hover {
  opacity: 1;
}

.chatbot-body {
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #fbfbfc;
}

.chatbot-message {
  max-width: 85%;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  line-height: 1.45;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(4, 29, 64, 0.03);
  animation: pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.chatbot-message.bot {
  background: var(--color-white);
  color: var(--color-navy);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(4, 29, 64, 0.06);
  align-self: flex-start;
}

.chatbot-message.user {
  background: var(--color-navy);
  color: var(--color-white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

/* Quick replies container and buttons */
.chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1.25rem 0.75rem;
  background: #fbfbfc;
}

.chatbot-chip {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1px solid rgba(4, 29, 64, 0.1);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(4, 29, 64, 0.03);
}

.chatbot-chip:hover {
  background: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
  transform: translateY(-1px);
}

.chatbot-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0 1.25rem 1.25rem;
  background: #fbfbfc;
  border-top: 1px solid rgba(4, 29, 64, 0.04);
  padding-top: 0.75rem;
}

.chatbot-book-btn {
  display: none; /* Hidden by default */
  width: 100%;
  justify-content: center;
  background: var(--color-pink);
  color: var(--color-white);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(254, 102, 196, 0.3);
}

.chatbot-book-btn.visible {
  display: flex !important;
  animation: pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.25);
}

.chatbot-form {
  display: flex;
  gap: 0.5rem;
}

.chatbot-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(4, 29, 64, 0.1);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--color-navy);
  outline: none;
  transition: border-color 0.2s ease;
}

.chatbot-input:focus {
  border-color: var(--color-pink);
}

.chatbot-send-btn {
  min-width: 72px;
  padding: 0.7rem 1rem;
}

/* Chatbot toggle brand color */
.floating-cta-btn.cta-chat {
  position: relative;
  background-color: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
  box-shadow: var(--shadow-glow);
  animation: shake-wobble 4s infinite 3s; /* Staggered wobble effect */
}

.floating-cta-btn.cta-chat:hover {
  background-color: var(--color-white);
  color: var(--color-pink);
  border-color: var(--color-pink);
}

/* Chatbot "Live Chat" label tooltip */
.floating-cta-btn.cta-chat::before {
  content: "Live Chat";
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-pink);
  color: var(--color-white);
  padding: 0.35rem 0.75rem;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(254, 102, 196, 0.25);
  pointer-events: none;
  opacity: 1;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.floating-cta-btn.cta-chat::after {
  content: "";
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-pink);
  pointer-events: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.floating-cta-btn.cta-chat:hover::before {
  transform: translateY(-50%) scale(1.05);
  background-color: var(--color-navy);
  box-shadow: 0 4px 12px rgba(4, 29, 64, 0.25);
}

.floating-cta-btn.cta-chat:hover::after {
  border-color: transparent transparent transparent var(--color-navy);
}

/* Hide the label and mobile bar when chatbot widget is open */
body:has(#chatbotWidget:not(.hidden)) .floating-cta-btn.cta-chat::before,
body:has(#chatbotWidget:not(.hidden)) .floating-cta-btn.cta-chat::after {
  opacity: 0 !important;
}
body:has(#chatbotWidget:not(.hidden)) .mobile-floating-cta-bar {
  display: none !important;
}

.hidden {
  display: none !important;
}

@keyframes pop-in {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  /* Keep only the chat icon on mobile floating button stack */
  .vertical-floating-ctas {
    position: fixed;
    right: 20px;
    bottom: 80px; /* Floating above mobile footer bar */
    z-index: 999;
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
  }
  
  .vertical-floating-ctas .floating-cta-btn:not(.cta-chat),
  .vertical-floating-ctas .floating-cta-item {
    display: none !important;
  }

  .chatbot-widget {
    right: 12px;
    left: 12px;
    bottom: 20px; /* Positions chatbot window beautifully at the bottom since mobile bar is hidden */
    width: auto;
  }

  .chatbot-window {
    width: 100%;
    max-height: calc(100vh - 40px);
  }

  .chatbot-body {
    max-height: 200px; /* Save vertical space for mobile keyboards */
  }
}

.lazy-hide {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Mobile Layout Optimizations */
@media (max-width: 576px) {
  #headerCtaBtn {
    display: none !important; /* Hide redundant Top Book Now button on mobile */
  }
  .header-logo-img {
    height: 48px !important; /* Make logo fit better on small mobile viewports */
  }
  .lang-switch-wrapper {
    margin-right: 0.5rem !important; /* Reduce gap on mobile */
  }
  .hero-title {
    font-size: 2rem !important; /* Prevent text from wrapping excessively */
    line-height: 1.2 !important;
  }
  .hero-desc {
    font-size: 0.95rem !important;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem !important;
    width: 100%;
  }
  .hero-cta-group .pill-button {
    width: 100%;
    text-align: center;
  }
}

/* --- Subpage Responsive Hero Layouts --- */
.subpage-hero {
  padding-top: 140px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 992px) {
  .subpage-hero {
    padding-top: 100px !important; /* Adjust padding to fit below sticky mobile header */
    padding-bottom: 50px !important;
  }
}

@media (max-width: 576px) {
  .subpage-hero {
    padding-top: 90px !important; /* Extra adjustment for very small screens */
    padding-bottom: 40px !important;
  }
}



