/* Hero */
.hero-section {
  background: linear-gradient(135deg, #041525 0%, var(--color-dark) 35%, #0a3d4d 65%, #0d5c6e 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  top: -10%; right: 5%;
  background: rgba(20, 163, 184, 0.35);
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  bottom: 5%; left: -5%;
  background: rgba(232, 93, 42, 0.2);
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  top: 40%; left: 35%;
  background: rgba(13, 124, 140, 0.25);
  animation-delay: -5s;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -25px) scale(1.08); }
}

/* Entrance animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-section .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
.hero-badge i { color: var(--color-primary-light); }

.hero-section h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.hero-section h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #fff 0%, var(--color-primary-light) 50%, #7dd3e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section h1 span {
  display: block;
  font-family: 'Onest', sans-serif;
  font-size: 0.38em;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-top: 0.5em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--color-primary-light);
}
.hero-section .tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 480px;
  line-height: 1.7;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  border-radius: 2px;
  margin: 1.75rem 0 1.5rem;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-accent) 0%, #f07040 50%, #ff8c5a 100%);
  background-size: 200% auto;
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(232, 93, 42, 0.45);
  transition: transform 0.25s, box-shadow 0.25s, background-position 0.4s;
  position: relative;
  overflow: hidden;
}
.btn-shine::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
.btn-primary-custom:hover {
  background-position: right center;
  color: #fff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(232, 93, 42, 0.5);
}
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff !important;
}

.banner-three-items { margin-top: 0.5rem; }
.banner-icon-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.banner-icon-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  border-color: rgba(20, 163, 184, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.banner-icon-item .icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(13, 124, 140, 0.4);
  transition: transform 0.3s;
}
.banner-icon-item:hover .icon-wrap { transform: scale(1.1) rotate(-4deg); }
.banner-icon-item p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 500;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
  padding: 1rem 0;
}
.hero-img-ring {
  position: absolute;
  width: min(100%, 400px);
  height: min(100%, 400px);
  border-radius: 50%;
  border: 2px dashed rgba(20, 163, 184, 0.35);
  animation: spinRing 30s linear infinite;
  z-index: 0;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 163, 184, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.hero-img-shadow {
  position: absolute;
  width: min(100%, 370px);
  height: 90%;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-xl);
  transform: translate(22px, 22px) rotate(3deg);
  z-index: 0;
  opacity: 0.55;
}
.hero-img-frame {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #fff 0%, #f0f8fc 100%);
  border-radius: var(--radius-xl);
  padding: 10px;
  width: min(100%, 370px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.1);
  animation: floatImg 5s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-xl) - 6px);
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-size: 1rem;
}
.hero-float-card strong {
  display: block;
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.2;
}
.hero-float-card span {
  font-size: 0.75rem;
  color: #5a7a8c;
  font-weight: 500;
}
.hero-float-card-1 {
  top: 12%;
  left: -8%;
  animation-delay: 0s;
}
.hero-float-card-2 {
  bottom: 14%;
  right: -6%;
  animation-delay: -2s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Stats */
.stats-section {
  padding: 0;
  background: transparent;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}
.stat-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 124, 140, 0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.stat-box-1::before { background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light)); }
.stat-box-2::before { background: linear-gradient(90deg, var(--color-accent), #ff8c5a); }
.stat-box-3::before { background: linear-gradient(90deg, #6366f1, #818cf8); }
.stat-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.15);
}
.stat-box .icon-circle {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(13, 124, 140, 0.35);
  transition: transform 0.3s;
}
.stat-box:hover .icon-circle { transform: scale(1.1) rotate(-5deg); }
.stat-box h3,
.stat-num {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box p {
  margin: 4px 0 0;
  color: #5a7a8c;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--color-dark);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  padding: 6px 14px;
  background: rgba(13, 124, 140, 0.08);
  border-radius: 999px;
}
.section-header p {
  color: #5a7a8c;
  margin: 0;
  line-height: 1.6;
}

/* About */
.about-section {
  padding: 5rem 0;
  background: var(--color-light-bg);
}
.about-section .label {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-section h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--color-dark);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
}
.about-img img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s;
}
.about-img:hover img { transform: scale(1.02); }
.about-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 124, 140, 0.1);
  animation: floatCard 5s ease-in-out infinite;
}
.about-chip i { color: var(--color-primary); }
.about-chip-1 { bottom: 8%; left: -4%; animation-delay: 0s; }
.about-chip-2 { top: 10%; right: -4%; animation-delay: -2.5s; }

.about-section .divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: 2px;
  margin: 1rem 0 1.25rem;
}
.about-img {
  position: relative;
}
.about-img::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-xl);
  opacity: 0.15;
  z-index: 0;
}

/* Services */
.services-section {
  padding: 5rem 0;
  background: #fff;
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--color-light-bg) 0%, transparent 100%);
  pointer-events: none;
}
.services-section > .container > h2 {
  text-align: center;
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 2.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.service-sec .card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 124, 140, 0.1);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}
.service-sec .card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-sec .card:hover::after { transform: scaleX(1); }
.service-sec .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(13, 124, 140, 0.15);
  border-color: rgba(13, 124, 140, 0.3);
}
.service-sec .alter-card-color::after {
  background: linear-gradient(90deg, var(--color-accent), #ff8c5a);
}
.service-sec .card:hover .service-img-sec {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 8px 20px rgba(13, 124, 140, 0.25);
}
.service-sec .alter-card-color {
  background: var(--color-card-purple) !important;
}
.service-sec .card-bg { display: none; }
.service-sec .card:hover .cardhead-sec h3,
.service-sec .card:hover .cardhead-sec a {
  color: var(--color-primary) !important;
}
.cardhead-sec {
  padding: 1.25rem;
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cardhead-sec h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
  transition: color 0.2s;
}
.service-img-sec {
  width: 48px;
  height: 48px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(13, 124, 140, 0.12) 0%, rgba(20, 163, 184, 0.08) 100%);
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.service-img-sec.alter-img-color {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.1) 0%, rgba(13, 124, 140, 0.06) 100%) !important;
}
.service-img-sec img { width: 100%; height: auto; }
.hpbc-icon-sec { width: 56px; height: 56px; }

.service-sec-more {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(13, 124, 140, 0.1);
}
.service-sec-title {
  text-align: center;
  color: var(--color-dark);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* Contact */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #0d4a5c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 163, 184, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 42, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}
.contact-label {
  display: inline-block;
  color: var(--color-primary-light);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.contact-section h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.01em;
}
.contact-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  backdrop-filter: blur(8px);
}
a.contact-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(6px);
  border-color: rgba(20, 163, 184, 0.4);
  color: #fff !important;
}
.contact-pill-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-section p { color: rgba(255, 255, 255, 0.8); line-height: 1.7; }
.contact-form-box {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h2 { color: var(--color-dark) !important; }
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e8eef2;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f8fbfd;
}
.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 124, 140, 0.12);
  background: #fff;
}
.contact-fm-submit {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(13, 124, 140, 0.3);
}
.contact-fm-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 124, 140, 0.35);
}

/* Process */
.process-section {
  padding: 5rem 0;
  background: var(--color-light-bg);
}
.our-process-list { max-width: 1000px; margin: auto; padding: 20px; }
.our-process-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  gap: 1.25rem;
}
.our-process-item .icon-box {
  position: relative;
  height: 88px;
  width: 88px;
  background: #fff;
  border: 1px solid rgba(13, 124, 140, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.our-process-item .icon-box::before {
  counter-increment: my-counter;
  content: counter(my-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(13, 124, 140, 0.3);
}
.our-process-item:not(:last-child) .icon-box::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: 56px;
  background: linear-gradient(180deg, rgba(13, 124, 140, 0.3) 0%, rgba(13, 124, 140, 0.05) 100%);
}
.our-process-list { counter-reset: my-counter; }
.our-process-item figure img { width: 44px !important; }
.process-item-content h3 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin: 0 0 6px;
  font-weight: 700;
}
.process-item-content p { color: #5a7a8c; margin: 0; line-height: 1.6; font-size: 0.95rem; }

/* Blog */
.blog-section {
  padding: 5rem 0;
  background: #fff;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  background: #fff;
  border: 1px solid rgba(13, 124, 140, 0.08);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(10, 37, 64, 0.12);
}
.blog-card > a {
  display: block;
  overflow: hidden;
  position: relative;
}
.blog-card > a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.blog-card:hover > a::after { opacity: 1; }
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover img { transform: scale(1.08); }
.blog-card .card-body { padding: 1.5rem; }
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.blog-card h3 a:hover { color: var(--color-primary); }
.read-more-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
}
.read-more-link::after {
  content: '→';
  transition: transform 0.2s;
}
.blog-card:hover .read-more-link::after { transform: translateX(4px); }

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: var(--color-light-bg);
}
.testimonials-section h5 {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.testimonials-section h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--color-dark);
  font-weight: 400;
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 124, 140, 0.08);
  height: auto;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 124, 140, 0.2);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(13, 124, 140, 0.1);
  font-family: 'DM Serif Display', Georgia, serif;
}
.review-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}
.stars { color: #f5a623; margin: 0.5rem 0 0.75rem; font-size: 0.85rem; }
.review-card p {
  color: #5a7a8c;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65;
}
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  color: var(--color-primary);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

/* CTA Banner */
.cta-banner {
  padding: 0 0 5rem;
  background: var(--color-light-bg);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-dark) 0%, #0d4a5c 50%, var(--color-primary) 100%);
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.2);
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -100px;
  right: -50px;
  pointer-events: none;
}
.cta-banner-text h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.cta-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 1rem;
}
.cta-banner .btn-primary-custom {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .hero-section { padding: 3.5rem 0 3rem; text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-section .tagline { margin-left: auto; margin-right: auto; }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .banner-three-items { justify-content: center; }
  .banner-icon-item { justify-content: flex-start; text-align: left; }
  .hero-img-wrap { min-height: 360px; margin-top: 2rem; }
  .hero-float-card-1 { left: 0; top: 5%; }
  .hero-float-card-2 { right: 0; bottom: 8%; }
  .about-chip-1 { left: 0; }
  .about-chip-2 { right: 0; }
  .stat-box { justify-content: flex-start; text-align: left; }
  .cta-banner-inner { justify-content: center; text-align: center; padding: 2rem; }
  .cta-banner .btn-primary-custom { width: 100%; justify-content: center; }
  .our-process-item { margin-bottom: 35px !important; }
  .our-process-item:not(:last-child) .icon-box::after { height: 64px !important; }
  .hpbc-icon-sec { width: 48px !important; height: 48px !important; }
}

@media (max-width: 576px) {
  .hero-section { padding: 2.5rem 0 2.5rem; }
  .hero-img-wrap { min-height: 300px; overflow: hidden; }
  .hero-img-shadow,
  .hero-img-frame { width: min(calc(100% - 24px), 280px); }
  .hero-img-shadow { transform: translate(12px, 12px) rotate(2deg); }
  .banner-three-items .col-sm-6,
  .banner-three-items .col-md-4 { width: 100%; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn-primary-custom,
  .btn-outline-hero { width: 100%; justify-content: center; }
  .contact-form-box { padding: 1.5rem; }
  .our-process-item { flex-direction: column; text-align: center; }
  .our-process-item .icon-box::after { display: none; }
  .stats-section { margin-top: -1.5rem; }
  .hero-float-card { padding: 10px 12px; font-size: 0.85rem; }
  .hero-float-card i { width: 34px; height: 34px; font-size: 0.85rem; }
  .hero-float-card strong { font-size: 0.9rem; }
  .about-chip { font-size: 0.75rem; padding: 8px 12px; }
}
