:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-alt: #fcfaf4;
  --text: #101828;
  --muted: #667085;
  --navy: #0b2a5b;
  --navy-2: #081e43;
  --yellow: #f4d21f;
  --yellow-light: #ffeb61;
  --orange: #f28c28;
  --orange-2: #ffb15e;
  --border: rgba(11, 42, 91, 0.14);
  --radius: 22px;
  --radius-shell: 34px;
  --shadow-sm: 0 8px 20px rgba(11, 42, 91, 0.09);
  --shadow-md: 0 16px 34px rgba(11, 42, 91, 0.13);
  --shadow-lg: 0 22px 44px rgba(11, 42, 91, 0.2);
  --shadow: var(--shadow-md);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

a {
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 180px;
}

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

.section-pad {
  padding: 78px 0;
}

.section-kicker,
.eyebrow {
  letter-spacing: 0.05em;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.22;
}

.section-heading p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-links a,
.contact-list a,
.contact-mini a,
.card-link {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size 0.24s ease, color 0.24s ease;
}

.footer-links a:hover,
.contact-list a:hover,
.contact-mini a:hover,
.card-link:hover {
  background-size: 100% 1px;
}

.section-alt {
  background: var(--surface-alt);
}

.site-header {
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, var(--yellow-light) 0%, var(--yellow) 100%);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.top-header {
  background: linear-gradient(180deg, var(--yellow-light) 0%, var(--yellow) 100%);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-weight: 700;
}

.brand-logo-wrap {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(11, 42, 91, 0.18);
  border: 2px solid rgba(11, 42, 91, 0.12);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px 8px 16px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 22;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-mobile-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-mobile-row .search-box {
  flex: 1 1 auto;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--yellow);
  background: var(--navy);
  color: var(--yellow);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11, 42, 91, 0.2);
}

.search-icon {
  color: var(--navy);
}

.search-input {
  border: 0;
  box-shadow: none;
  padding-left: 0;
  background: transparent;
}

.search-input:focus {
  box-shadow: none;
}

.search-button {
  border-radius: 999px;
  background: var(--navy);
  color: var(--yellow);
  padding-inline: 18px;
  font-weight: 600;
  border: 2px solid var(--yellow);
}

.search-button:hover {
  background: var(--navy);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.search-box.smart-search-ready.is-open {
  border-color: rgba(244, 210, 31, 0.65);
  box-shadow: 0 0 0 2px rgba(244, 210, 31, 0.18), 0 14px 28px rgba(11, 42, 91, 0.14);
}

.smart-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(244, 210, 31, 0.55);
  background: #fff;
  box-shadow: 0 18px 34px rgba(11, 42, 91, 0.2);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.24s ease, max-height 0.28s ease;
  z-index: 1200;
}

.smart-search-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 590px;
}

.smart-search-scroll {
  max-height: 510px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
}

.smart-search-group + .smart-search-group {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(11, 42, 91, 0.15);
}

.smart-search-category {
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 0 8px 6px;
}

.smart-suggestion-item {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto 16px;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--navy);
  text-align: left;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.smart-item-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 42, 91, 0.07);
  color: var(--navy);
  font-size: 0.84rem;
}

.smart-item-text {
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: inherit;
}

.smart-item-text mark {
  background: rgba(244, 210, 31, 0.58);
  color: inherit;
  border-radius: 4px;
  padding: 0 2px;
}

.smart-suggestion-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.48rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid rgba(11, 42, 91, 0.16);
  background: rgba(11, 42, 91, 0.05);
  white-space: nowrap;
}

.smart-item-arrow {
  color: rgba(11, 42, 91, 0.45);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.smart-suggestion-item:hover {
  background: rgba(244, 210, 31, 0.2);
  transform: translateX(3px);
}

.smart-suggestion-item:hover .smart-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--navy);
}

.smart-suggestion-item.is-active {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
}

.smart-suggestion-item.is-active .smart-item-icon {
  background: rgba(244, 210, 31, 0.2);
  color: var(--yellow);
}

.smart-suggestion-item.is-active .smart-suggestion-pill {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.smart-suggestion-item.is-active .smart-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--yellow);
}

.smart-suggestion-item.is-active .smart-item-text mark {
  background: rgba(244, 210, 31, 0.95);
  color: #2d2300;
}

.smart-see-all-btn {
  width: calc(100% - 16px);
  margin: 8px;
  border: 1px solid rgba(11, 42, 91, 0.18);
  border-radius: 10px;
  background: rgba(11, 42, 91, 0.05);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.smart-see-all-btn:hover {
  background: rgba(244, 210, 31, 0.25);
  transform: translateY(-1px);
}

.smart-search-empty {
  margin: 2px 8px 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 42, 91, 0.12);
  background: linear-gradient(180deg, rgba(244, 210, 31, 0.12), rgba(255, 255, 255, 0.95));
}

.smart-search-empty h4 {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--navy);
}

.smart-search-empty p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.search-target-pulse {
  animation: searchTargetPulse 1.1s ease;
}

@keyframes searchTargetPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 210, 31, 0.45);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(244, 210, 31, 0);
  }
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.action-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: 0 4px 12px rgba(11, 42, 91, 0.2);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  font-size: 1.2rem;
}

.action-btn:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(244, 210, 31, 0.3);
}

.nav-strip {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  border-top: 3px solid var(--yellow);
  box-shadow: 0 4px 12px rgba(11, 42, 91, 0.1);
}

.nav-strip .nav-link {
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav-strip .nav-link:hover,
.nav-strip .nav-link:focus,
.nav-strip .nav-link.active {
  color: var(--navy);
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 210, 31, 0.2);
}

.hero-section {
  padding-top: 30px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-shell);
  padding: 46px 40px;
  box-shadow: var(--shadow-md);
}

.hero-shell::before,
.hero-shell::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  pointer-events: none;
  z-index: -1;
}

.hero-shell::before {
  width: 200px;
  height: 200px;
  right: -92px;
  top: -92px;
  background: rgba(244, 210, 31, 0.2);
}

.hero-shell::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -80px;
  background: rgba(11, 42, 91, 0.12);
}

.hero-content {
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-label {
  margin-bottom: 4px;
  animation: heroFadeUp 0.6s ease 0.12s both;
}

.hero-title {
  color: var(--navy);
  line-height: 1.12;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 800;
  max-width: 16ch;
  letter-spacing: -0.01em;
  animation: heroFadeUp 0.68s ease 0.2s both;
}

.hero-accent {
  color: var(--navy-2);
  text-decoration: underline;
  text-decoration-color: rgba(244, 210, 31, 0.72);
  text-underline-offset: 5px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 54ch;
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.66;
  animation: heroFadeUp 0.68s ease 0.3s both;
}

.cta-btn {
  border-radius: 999px;
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.26s ease, box-shadow 0.26s ease, background-color 0.26s ease, border-color 0.26s ease, color 0.26s ease;
}

.hero-cta-group {
  animation: heroFadeUp 0.68s ease 0.42s both;
}

.btn-primary.cta-btn {
  background: var(--yellow);
  border: 1px solid rgba(11, 42, 91, 0.2);
  color: var(--navy);
}

.btn-primary.cta-btn:hover {
  background: #ffe767;
  border-color: rgba(11, 42, 91, 0.25);
  color: var(--navy);
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary.cta-btn {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
  border-width: 2px;
}

.btn-outline-primary.cta-btn:hover {
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  border-color: var(--yellow);
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.hero-wa-btn i {
  color: #16a34a;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  animation: heroFadeUp 0.7s ease 0.5s both;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 0.72rem 0.86rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.highlight-pill i {
  color: #8a6b00;
}

.highlight-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 210, 31, 0.48);
  background: rgba(255, 253, 238, 0.95);
  box-shadow: var(--shadow-md);
}

.highlight-pill span {
  line-height: 1.35;
}

.hero-trust-grid .highlight-pill:last-child {
  grid-column: 1 / -1;
}

.hero-trust-line {
  color: var(--navy-2);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  animation: heroFadeUp 0.72s ease 0.6s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quick actions section */
.quick-actions-section {
  padding-top: 16px;
}

.quick-action-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px 14px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.quick-action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 210, 31, 0.5);
}

.quick-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--navy);
  background: rgba(244, 210, 31, 0.22);
}

.quick-action-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.quick-action-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Popular services with prices section */
.price-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 210, 31, 0.52);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
}

.price-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--navy);
  background: rgba(244, 210, 31, 0.24);
}

.price-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.price-value {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.price-value strong {
  color: var(--navy);
}

/* How it works section */
.how-it-works-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 14px;
}

.how-step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 20px 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 210, 31, 0.5);
}

.how-step-number {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.how-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--navy);
  background: rgba(244, 210, 31, 0.24);
}

.how-step h3 {
  font-size: 1.02rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 7px;
}

.how-step p {
  margin: 0;
  color: var(--muted);
}

.how-step-connector {
  width: 40px;
  align-self: center;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 210, 31, 0.4), rgba(11, 42, 91, 0.5));
}

/* Mobile sticky bottom action bar */
.mobile-bottom-bar {
  display: none;
}

.hero-visual-shell {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  animation: heroFadeUp 0.72s ease 0.22s both;
}

.hero-visual-glow {
  position: absolute;
  width: 82%;
  height: 80%;
  border-radius: var(--radius-shell);
  background: radial-gradient(circle at 35% 20%, rgba(244, 210, 31, 0.24), rgba(244, 210, 31, 0.06) 38%, rgba(11, 42, 91, 0.12) 68%, transparent 84%);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual-dots {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 170px;
  height: 140px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  transform: rotate(8deg);
  background-image: radial-gradient(rgba(11, 42, 91, 0.18) 1.2px, transparent 1.2px);
  background-size: 11px 11px;
}

.hero-image-tilt {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  transform: rotate(-1.3deg);
  transition: transform 0.42s ease;
}

.hero-image-card {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86));
  padding: 10px;
  box-shadow: 0 28px 54px rgba(8, 30, 67, 0.2), 0 12px 24px rgba(8, 30, 67, 0.15), 0 0 0 1px rgba(11, 42, 91, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px) saturate(120%);
  animation: heroImageFloat 7.4s ease-in-out infinite;
  transition: box-shadow 0.35s ease;
}

.hero-image-card::before {
  content: '';
  position: absolute;
  top: -55%;
  left: -55%;
  width: 62%;
  height: 210%;
  pointer-events: none;
  background: linear-gradient(95deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: rotate(10deg);
  animation: heroSheen 9s linear infinite;
}

.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: inset 0 0 0 1px rgba(244, 210, 31, 0.38);
}

.hero-image {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  filter: brightness(1.04) saturate(1.07);
  transform: scale(1.01);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.hero-visual-shell:hover .hero-image-tilt {
  transform: rotate(-0.35deg) translateY(-2px);
}

.hero-visual-shell:hover .hero-image-card {
  box-shadow: 0 34px 64px rgba(8, 30, 67, 0.25), 0 14px 30px rgba(8, 30, 67, 0.19), 0 0 0 1px rgba(11, 42, 91, 0.1);
}

.hero-visual-shell:hover .hero-image {
  transform: scale(1.055);
  filter: brightness(1.06) saturate(1.1);
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 220px;
  max-width: 240px;
  padding: 0.56rem 0.74rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.88));
  box-shadow: 0 12px 26px rgba(8, 30, 67, 0.16), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
  color: var(--navy);
  backdrop-filter: blur(9px) saturate(120%);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-float-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244, 210, 31, 0.96), rgba(244, 210, 31, 0.22));
}

.hero-float-card:hover {
  border-color: rgba(244, 210, 31, 0.55);
  box-shadow: 0 16px 30px rgba(8, 30, 67, 0.2), 0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #705300;
  background: linear-gradient(145deg, rgba(244, 210, 31, 0.38), rgba(244, 210, 31, 0.2));
  box-shadow: inset 0 0 0 1px rgba(244, 210, 31, 0.34);
  flex-shrink: 0;
}

.hero-float-icon i {
  font-size: 0.94rem;
}

.hero-float-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-float-copy strong {
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero-float-copy small {
  color: var(--muted);
  font-size: 0.655rem;
  line-height: 1.3;
  font-weight: 600;
}

.hero-float-orders {
  top: 22px;
  left: -16px;
  animation: heroCardDriftUp 6.1s ease-in-out infinite;
}

.hero-float-student {
  top: 28px;
  right: -22px;
  animation: heroCardDriftDown 5.6s ease-in-out infinite 0.35s;
}

.hero-float-passport {
  bottom: 30px;
  left: -10px;
  animation: heroCardDriftDown 6.4s ease-in-out infinite 0.6s;
}

.hero-float-viva {
  bottom: 22px;
  right: -26px;
  animation: heroCardDriftUp 6.7s ease-in-out infinite 0.85s;
}

@keyframes heroImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes heroCardDriftUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes heroCardDriftDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes heroSheen {
  0% {
    transform: translateX(0) rotate(10deg);
  }
  50% {
    transform: translateX(260%) rotate(10deg);
  }
  100% {
    transform: translateX(260%) rotate(10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-card,
  .hero-float-card {
    animation: none !important;
  }

  .hero-image-tilt {
    transform: none !important;
  }
}

.card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(244, 210, 31, 0.3);
  font-size: 1.5rem;
}

.card-icon.small {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  color: var(--navy);
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  margin-bottom: 0;
}

.info-card,
.feature-card,
.testimonial-card,
.contact-card,
.product-card,
.gallery-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.service-card,
.feature-card,
.testimonial-card,
.contact-card {
  padding: 28px;
}

.info-card,
.product-card,
.gallery-item {
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.info-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.product-card:hover,
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 210, 31, 0.48);
  box-shadow: var(--shadow-md);
}

.service-card h3,
.feature-card h3,
.product-body h3,
.testimonial-card h3,
.contact-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 18px;
}

.service-card p,
.feature-card p,
.testimonial-card p,
.contact-card p,
.product-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 700;
}

.card-link::after {
  content: '→';
}

/* Premium service interaction system */
.service-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
  align-items: stretch;
}

.service-grid-col {
  display: flex;
}

.premium-service-card {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.premium-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 12% 10%, rgba(244, 210, 31, 0.16), transparent 46%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 210, 31, 0.58);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(244, 210, 31, 0.18);
}

.premium-service-card:hover::before {
  opacity: 1;
}

.premium-service-card .card-icon {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.premium-service-card:hover .card-icon {
  transform: translateY(-2px) scale(1.03);
}

.premium-service-card h3 {
  min-height: 2.8rem;
}

.premium-service-card p {
  flex-grow: 1;
}

.premium-service-card .card-link {
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 42, 91, 0.14);
  font-size: 0.94rem;
}

.premium-service-card .card-link::after {
  content: none;
}

.service-link-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-chevron {
  font-size: 0.88rem;
  transition: transform 0.32s ease, color 0.25s ease;
}

.premium-service-card.is-active {
  border-color: rgba(244, 210, 31, 0.68);
  background: #fffdf6;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(244, 210, 31, 0.2);
}

.premium-service-card.is-active .service-chevron {
  transform: translateX(2px) rotate(90deg);
  color: var(--navy);
}

.service-row-detail-col {
  width: 100%;
}

.service-row-detail-panel {
  position: relative;
  margin-top: 2px;
  border-radius: 22px;
  border: 1px solid rgba(11, 42, 91, 0.14);
  border-top: 4px solid var(--yellow);
  background: linear-gradient(180deg, #fffdf4 0%, #ffffff 58%, #fffef8 100%);
  box-shadow: 0 20px 44px rgba(11, 42, 91, 0.14);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.45s cubic-bezier(0.2, 0.68, 0.2, 1), opacity 0.3s ease, transform 0.35s ease;
}

.service-row-detail-panel.is-open {
  max-height: 980px;
  opacity: 1;
  transform: translateY(0);
}

.service-row-detail-shell {
  position: relative;
  padding: 24px 24px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 22px;
  animation: servicePanelFade 0.32s ease;
}

@keyframes servicePanelFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-row-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(11, 42, 91, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.service-row-close:hover {
  transform: rotate(90deg);
  background: #fff9d8;
  border-color: rgba(244, 210, 31, 0.64);
}

.service-row-left {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
}

.service-detail-icon-large {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--yellow);
  background: linear-gradient(150deg, rgba(11, 42, 91, 0.98), rgba(8, 30, 67, 0.92));
  box-shadow: 0 12px 22px rgba(8, 30, 67, 0.24);
}

.service-row-left h3 {
  margin: 2px 0 8px;
  color: var(--navy);
  font-size: 1.16rem;
}

.service-detail-summary {
  color: var(--muted);
  margin-bottom: 10px;
}

.service-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.service-detail-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.66rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-detail-badge.tag {
  color: #fff;
  background: rgba(11, 42, 91, 0.9);
}

.service-detail-badge.price {
  color: var(--navy);
  background: rgba(244, 210, 31, 0.32);
}

.service-row-left h4,
.service-detail-block h4 {
  font-size: 0.86rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--navy);
}

.service-detail-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.service-detail-list li {
  margin-bottom: 4px;
}

.service-row-right {
  display: grid;
  gap: 10px;
}

.service-detail-block {
  border: 1px solid rgba(11, 42, 91, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 11px 12px;
}

.service-detail-list.compact li {
  margin-bottom: 3px;
}

.service-row-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.53rem 0.88rem;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(11, 42, 91, 0.2);
  background: var(--navy);
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.service-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(11, 42, 91, 0.22);
  color: #fff;
}

.service-cta-btn.is-outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.service-cta-btn.is-light {
  background: rgba(244, 210, 31, 0.28);
  border-color: rgba(244, 210, 31, 0.5);
  color: #6f5300;
}

.service-row-contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .service-grid > .service-grid-col {
    width: 33.333333%;
    flex: 0 0 auto;
  }

  .service-row-detail-panel.is-open {
    max-height: 1080px;
  }
}

@media (max-width: 991px) {
  .service-grid {
    --bs-gutter-x: 1.15rem;
    --bs-gutter-y: 1.2rem;
  }

  .service-row-detail-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px 18px;
  }

  .service-row-detail-panel.is-open {
    max-height: 1320px;
  }
}

@media (max-width: 768px) {
  .service-grid {
    --bs-gutter-x: 0.95rem;
    --bs-gutter-y: 1rem;
  }

  .premium-service-card {
    padding: 16px;
  }

  .premium-service-card h3 {
    min-height: auto;
  }

  .premium-service-card .card-link {
    margin-top: 12px;
    padding-top: 10px;
    font-size: 0.9rem;
  }

  .service-row-detail-panel {
    border-radius: 18px;
  }

  .service-row-detail-shell {
    padding: 16px 14px 14px;
  }

  .service-detail-icon-large {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    border-radius: 12px;
  }

  .service-row-close {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }

  .service-row-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-cta-btn {
    width: 100%;
  }

  .service-row-detail-panel.is-open {
    max-height: 1800px;
  }
}

@media (max-width: 576px) {
  .service-row-detail-shell {
    padding: 14px 12px 12px;
  }

  .service-detail-block {
    padding: 9px 10px;
  }

  .service-detail-summary,
  .service-row-contact-note {
    font-size: 0.82rem;
  }
}

.product-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.product-body {
  padding: 18px 18px 22px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.testimonial-card .stars {
  color: var(--yellow);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.testimonial-card span {
  color: var(--yellow);
  font-weight: 700;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-list a {
  color: var(--navy);
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--navy-2);
}

.contact-list i,
.contact-mini i {
  color: var(--yellow);
  margin-top: 3px;
  font-size: 1.1rem;
}

.map-wrap {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.form-label {
  font-weight: 600;
  color: var(--navy-2);
}

.form-control,
.form-select {
  border-radius: 16px;
  border-color: rgba(18, 48, 89, 0.15);
  padding: 0.9rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(242, 140, 40, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(242, 140, 40, 0.15);
}

.site-footer {
  background: linear-gradient(180deg, var(--navy-2), #081224);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 24px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.footer-brand,
.site-footer h4 {
  color: #fff;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-address {
  align-items: flex-start;
}

.footer-address span {
  display: inline-block;
  line-height: 1.5;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

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

/* Footer social icon premium polish */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--yellow);
  border: 1px solid rgba(244, 210, 31, 0.4);
  background: rgba(8, 30, 67, 0.9);
  box-shadow: 0 6px 16px rgba(2, 8, 25, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 235, 97, 0.9);
  background: rgba(11, 42, 91, 0.98);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(244, 210, 31, 0.15), 0 14px 24px rgba(8, 30, 67, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 42px;
  padding-top: 18px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero-shell {
    padding: 44px 36px;
    border-radius: 36px;
  }

  .hero-title {
    font-size: 2.68rem;
    max-width: 16ch;
  }

  .hero-image-tilt {
    width: min(450px, 100%);
  }

  .hero-image {
    height: 470px;
  }

  .hero-visual-shell {
    min-height: 530px;
  }

  .hero-float-card {
    min-width: 206px;
    max-width: 228px;
    padding: 0.52rem 0.68rem;
  }

  .hero-float-copy strong {
    font-size: 0.75rem;
  }

  .hero-float-copy small {
    font-size: 0.63rem;
  }

  .hero-float-orders {
    left: -8px;
  }

  .hero-float-student {
    right: -12px;
  }

  .hero-float-passport {
    left: -6px;
  }

  .hero-float-viva {
    right: -14px;
  }
}

@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }

  .top-header .container-fluid {
    padding-top: 0.08rem;
    padding-bottom: 0.08rem;
  }

  .top-header .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 2px;
  }

  .top-header .row > .col-lg-3:first-child {
    order: 1;
    flex: 0 0 auto;
    width: auto;
  }

  .top-header .row > .col-lg-3:last-child {
    order: 2;
    flex: 0 0 auto;
    width: auto;
    margin-left: auto;
  }

  .top-header .row > .col-lg-6 {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
  }

  .brand-mark {
    gap: 5px;
  }

  .brand-logo-wrap {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  .brand-tagline {
    display: none;
  }

  .search-box {
    width: auto;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 3px 5px 3px 8px;
    border-radius: 12px;
    min-height: 44px;
    height: 44px;
  }

  .search-mobile-row {
    width: 100%;
    gap: 6px;
  }

  .mobile-menu-btn {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 0.92rem;
    flex: 0 0 38px;
  }

  .search-input {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 0.86rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .search-button {
    width: auto;
    min-width: 72px;
    padding-inline: 8px;
    font-size: 0.8rem;
    height: 34px;
  }

  .smart-search-dropdown {
    top: calc(100% + 8px);
    border-radius: 14px;
  }

  .smart-search-scroll {
    max-height: min(58vh, 430px);
    padding: 7px;
  }

  .smart-suggestion-item {
    min-height: 48px;
    padding: 8px 10px;
  }

  .smart-item-text {
    font-size: 0.88rem;
  }

  .smart-suggestion-pill {
    font-size: 0.62rem;
  }

  .header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 4px;
  }

  .action-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .nav-strip .container-fluid {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }

  .nav-strip .navbar-toggler {
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.35);
  }

  .desktop-toggler {
    display: none;
  }

  .nav-strip .navbar-collapse {
    margin-top: 8px;
    padding: 8px 0 4px;
  }

  .nav-strip .navbar-nav {
    width: 100%;
    align-items: stretch;
    gap: 6px;
  }

  .nav-strip .nav-item {
    width: 100%;
  }

  .nav-strip .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.72rem 1rem;
  }

  .hero-section {
    padding-top: 14px;
  }

  .hero-shell {
    padding: 32px 24px;
    border-radius: 30px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-title {
    font-size: 2.35rem;
    max-width: 18ch;
  }

  .hero-subtitle {
    max-width: 58ch;
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .hero-highlights {
    max-width: 100%;
  }

  .hero-visual-shell {
    min-height: 500px;
    margin-top: 8px;
  }

  .hero-image-tilt {
    width: min(430px, 100%);
    transform: rotate(-1deg);
  }

  .hero-image {
    height: 420px;
  }

  .hero-visual-dots {
    width: 126px;
    height: 106px;
    top: 12%;
    right: 10%;
    opacity: 0.22;
  }

  .hero-float-card {
    min-width: 194px;
    max-width: 210px;
    padding: 0.48rem 0.62rem;
    border-radius: 16px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
  }

  .hero-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .hero-float-icon i {
    font-size: 0.86rem;
  }

  .hero-float-copy strong {
    font-size: 0.72rem;
  }

  .hero-float-copy small {
    font-size: 0.6rem;
  }

  .hero-float-orders {
    top: 14px;
    left: 2px;
  }

  .hero-float-student {
    top: 18px;
    right: 0;
  }

  .hero-float-passport {
    bottom: 86px;
    left: 8px;
  }

  .hero-float-viva {
    bottom: 16px;
    right: 2px;
  }

  .quick-actions-section {
    padding-top: 10px;
  }

  .quick-action-card {
    padding: 14px 12px;
  }

  .how-it-works-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-step-connector {
    width: 4px;
    height: 22px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(244, 210, 31, 0.4), rgba(11, 42, 91, 0.5));
  }

  /* Footer mobile/tablet improvements (<=991px) */
  .site-footer {
    padding-top: 54px;
    padding-bottom: 18px;
  }

  .site-footer .row {
    --bs-gutter-y: 1.25rem;
    --bs-gutter-x: 1.25rem;
  }

  /* Footer section divider lines */
  .footer-links-col,
  .footer-services-col,
  .footer-contact-col {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 6px;
    padding-top: 18px;
  }

  .footer-socials-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 14px;
    padding-top: 14px;
  }

  .footer-brand {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .site-footer h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .footer-description {
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 38ch;
  }

  .footer-links li {
    margin-bottom: 7px;
  }

  .footer-links a {
    font-size: 0.93rem;
  }

  .contact-mini li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .contact-mini i {
    font-size: 0.92rem;
    margin-top: 0;
    flex: 0 0 14px;
  }

  .contact-mini .footer-address {
    align-items: flex-start;
  }

  .contact-mini .footer-address i {
    margin-top: 3px;
  }

  .contact-mini .footer-address span {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.76);
  }

  .contact-mini li a {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .footer-socials {
    margin-top: 12px;
    gap: 10px;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
  }

  .footer-bottom {
    margin-top: 26px;
    padding-top: 12px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 50px 0;
  }

  .hero-shell {
    border-radius: 24px;
    padding: 24px 16px 20px;
  }

  .hero-grid {
    row-gap: 20px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-label {
    justify-content: center;
  }

  .hero-title {
    font-size: 1.95rem;
    max-width: none;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    max-width: none;
    margin-inline: auto;
  }

  .hero-cta-group {
    width: 100%;
  }

  .hero-cta-group .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
  }

  .highlight-pill {
    justify-content: flex-start;
    padding: 0.58rem 0.64rem;
    font-size: 0.8rem;
  }

  .hero-trust-grid .highlight-pill:last-child {
    grid-column: 1 / -1;
  }

  .hero-trust-line {
    text-align: center;
    font-size: 0.88rem;
  }

  .hero-visual-shell {
    min-height: 390px;
  }

  .hero-visual-dots {
    display: none;
  }

  .hero-image-tilt {
    width: min(368px, 100%);
    transform: rotate(-0.85deg);
  }

  .hero-image {
    height: 330px;
  }

  .hero-float-card {
    min-width: 174px;
    max-width: 186px;
    border-radius: 15px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    padding: 0.44rem 0.54rem;
  }

  .hero-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .hero-float-icon i {
    font-size: 0.82rem;
  }

  .hero-float-copy strong {
    font-size: 0.69rem;
  }

  .hero-float-copy small {
    font-size: 0.58rem;
  }

  .hero-float-orders {
    top: 8px;
    left: 0;
  }

  .hero-float-student {
    top: 56px;
    right: 0;
  }

  .hero-float-passport {
    bottom: 62px;
    left: 4px;
  }

  .hero-float-viva {
    bottom: 8px;
    right: 4px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 1.4rem;
  }

  .section-heading p {
    font-size: 0.94rem;
  }

  .service-card,
  .feature-card,
  .testimonial-card,
  .contact-card {
    padding: 18px;
  }

  .price-card,
  .how-step,
  .quick-action-card {
    padding: 15px 13px;
  }

  .quick-action-card h3,
  .price-card h3,
  .how-step h3 {
    font-size: 0.95rem;
  }

  .quick-action-card p,
  .price-value,
  .how-step p {
    font-size: 0.84rem;
  }

  .gallery-item img,
  .product-card img {
    height: 170px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 220px;
  }

  /* Sticky mobile bottom bar premium glass style */
  .mobile-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 7px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    border-top: 1px solid var(--border);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -10px 22px rgba(11, 42, 91, 0.16);
  }

  .mobile-bottom-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 11px;
    border: 1px solid var(--border);
    min-height: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.34rem 0.45rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, color 0.28s ease;
  }

  .mobile-bottom-bar a:nth-child(1) {
    background: #fff;
    color: var(--navy);
  }

  .mobile-bottom-bar a:nth-child(2) {
    background: var(--navy);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    min-height: 42px;
    box-shadow: 0 8px 16px rgba(8, 30, 67, 0.22);
  }

  .mobile-bottom-bar a:nth-child(3) {
    background: rgba(244, 210, 31, 0.2);
    border-color: rgba(244, 210, 31, 0.4);
    color: var(--navy);
  }

  .mobile-bottom-bar a:nth-child(1) i {
    color: #16a34a;
  }

  .mobile-bottom-bar a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 16px rgba(11, 42, 91, 0.16);
    border-color: rgba(244, 210, 31, 0.48);
  }

  .mobile-bottom-bar a i {
    font-size: 0.92rem;
  }

  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .footer-socials {
    justify-content: center;
  }

  #stationery .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-card .row {
    row-gap: 12px;
  }

  /* Footer compact polish for mobile/tablet (<=768px) */
  .site-footer {
    padding-top: 48px;
    padding-bottom: 14px;
  }

  .site-footer .row {
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 1rem;
  }

  /* Footer divider spacing refinement */
  .footer-links-col,
  .footer-services-col,
  .footer-contact-col {
    padding-top: 15px;
    margin-top: 4px;
  }

  .footer-socials-wrap {
    margin-top: 12px;
    padding-top: 12px;
  }

  .footer-brand {
    font-size: 1.22rem;
  }

  .site-footer h4 {
    font-size: 0.95rem;
    margin-bottom: 9px;
  }

  .footer-description {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .footer-links li {
    margin-bottom: 6px;
  }

  .contact-mini li {
    margin-bottom: 7px;
    gap: 9px;
  }

  .contact-mini .footer-address span {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .footer-socials {
    margin-top: 10px;
    gap: 8px;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
  }
}

@media (max-width: 576px) {
  .section-pad {
    padding: 44px 0;
  }

  .top-header .container-fluid {
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
  }

  .brand-logo-wrap {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-name {
    font-size: 0.76rem;
  }

  .search-box {
    padding: 3px 5px 3px 7px;
    border-radius: 10px;
    gap: 3px;
    min-height: 38px;
    height: 38px;
  }

  .search-mobile-row {
    gap: 5px;
  }

  .mobile-menu-btn {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 9px;
    font-size: 0.82rem;
  }

  .search-input {
    font-size: 0.82rem;
  }

  .search-button {
    width: auto;
    min-width: 62px;
    padding-inline: 6px;
    font-size: 0.74rem;
    height: 28px;
  }

  .smart-search-dropdown {
    top: calc(100% + 6px);
    border-radius: 12px;
  }

  .smart-search-scroll {
    max-height: 52vh;
    padding: 6px;
  }

  .smart-search-category {
    font-size: 0.62rem;
    padding-left: 6px;
    padding-right: 6px;
  }

  .smart-suggestion-item {
    grid-template-columns: 28px minmax(0, 1fr) auto 14px;
    min-height: 46px;
    padding: 8px 8px;
    gap: 8px;
  }

  .smart-suggestion-pill {
    display: none;
  }

  .smart-see-all-btn {
    margin: 6px;
    width: calc(100% - 12px);
  }

  .header-actions {
    gap: 3px;
  }

  .action-btn {
    width: 28px;
    height: 28px;
    font-size: 0.74rem;
  }

  .nav-strip .nav-link {
    padding: 0.58rem 0.9rem;
  }

  .hero-title {
    font-size: 1.62rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .hero-shell {
    padding: 18px 12px 16px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-pill {
    justify-content: center;
    font-size: 0.78rem;
    padding: 0.56rem 0.6rem;
  }

  .hero-trust-grid .highlight-pill:last-child {
    grid-column: auto;
  }

  .hero-visual-shell {
    min-height: 312px;
  }

  .hero-image-tilt {
    width: min(300px, 100%);
    transform: rotate(-0.65deg);
  }

  .hero-image-card {
    padding: 7px;
  }

  .hero-image {
    height: 254px;
    border-radius: 18px;
  }

  .hero-float-card {
    min-width: 146px;
    max-width: 156px;
    border-radius: 13px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 7px;
    padding: 0.34rem 0.4rem;
  }

  .hero-float-card::before {
    width: 3px;
  }

  .hero-float-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .hero-float-icon i {
    font-size: 0.72rem;
  }

  .hero-float-copy strong {
    font-size: 0.615rem;
    line-height: 1.18;
  }

  .hero-float-copy small {
    display: none;
  }

  .hero-float-orders {
    top: 8px;
    left: 2px;
  }

  .hero-float-student {
    top: 44px;
    right: 2px;
  }

  .hero-float-passport {
    bottom: 42px;
    left: 4px;
  }

  .hero-float-viva {
    bottom: 8px;
    right: 2px;
  }

  .section-heading h2 {
    font-size: 1.22rem;
  }

  .quick-actions-section {
    padding-top: 6px;
  }

  .quick-action-card,
  .price-card,
  .how-step {
    padding: 12px 10px;
    border-radius: 16px;
  }

  .quick-action-icon,
  .price-icon,
  .how-step-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .how-step-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    top: -10px;
  }

  .service-card,
  .feature-card,
  .testimonial-card,
  .contact-card {
    padding: 18px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .card-icon.small {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .gallery-item img,
  .product-card img {
    height: 150px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 210px;
  }

  .mobile-bottom-bar {
    gap: 5px;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-bar a {
    min-height: 38px;
    font-size: 0.73rem;
    gap: 4px;
    padding: 0.28rem 0.38rem;
  }

  .mobile-bottom-bar a:nth-child(2) {
    min-height: 40px;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  /* Footer compact polish for small phones (<=576px) */
  .site-footer {
    padding-top: 42px;
    padding-bottom: 12px;
  }

  .site-footer .row {
    --bs-gutter-y: 0.9rem;
    --bs-gutter-x: 0.9rem;
  }

  .footer-brand {
    font-size: 1.12rem;
    margin-bottom: 6px;
  }

  .site-footer h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .footer-description {
    font-size: 0.84rem;
    line-height: 1.38;
    max-width: none;
  }

  .footer-links li {
    margin-bottom: 6px;
  }

  .footer-links a {
    font-size: 0.86rem;
  }

  .contact-mini li {
    gap: 8px;
    margin-bottom: 6px;
  }

  .contact-mini i {
    font-size: 0.84rem;
    flex-basis: 12px;
  }

  .contact-mini .footer-address span {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .contact-mini li a {
    font-size: 0.84rem;
  }

  .footer-socials {
    margin-top: 8px;
    gap: 7px;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }

  .footer-bottom {
    margin-top: 16px;
    padding-top: 9px;
  }

  .form-control,
  .form-select,
  .form-control-lg,
  .form-select-lg {
    font-size: 0.95rem;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 400px) {
  /* Sticky bar icon-only mode for very small screens */
  .mobile-bottom-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-bar a {
    min-height: 36px;
    padding: 0;
  }

  .mobile-bottom-bar a span {
    display: none;
  }

  .mobile-bottom-bar a i {
    font-size: 0.98rem;
  }

  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }
}
