/* VIC Premium Theme — attractive polish for all pages */

/* ── Global polish ── */
body {
  background: #f4f6f9;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(197, 160, 40, 0.35);
  color: var(--primary);
}

/* ── Header ── */
.site-header.scrolled .header-navbar {
  box-shadow: 0 8px 32px rgba(0, 33, 71, 0.08);
}

.header-navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.97) !important;
}

.header-navbar .nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

/* ── Home hero ── */
.home-hero-v2 {
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(197, 160, 40, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(0, 33, 71, 0.06), transparent 50%),
    linear-gradient(165deg, #eef2f7 0%, #ffffff 50%, #faf8f2 100%);
  position: relative;
}

.home-hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 33, 71, 0.02));
  pointer-events: none;
}

.hero-title-v2 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-visual-frame {
  position: relative;
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.4s ease;
}

.hero-visual-frame:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.hero-stat {
  position: relative;
  padding-left: 1rem;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

.hero-stat strong {
  color: var(--accent-dark);
}

/* Trust strip */
.trust-strip {
  background: var(--primary);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(197, 160, 40, 0.2);
  border-bottom: 1px solid rgba(197, 160, 40, 0.2);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--accent-light);
  font-size: 1.1rem;
}

/* ── Section headers ── */
.section-tag,
.section-label {
  position: relative;
  display: inline-block;
}

.section-head h2,
.section-title {
  color: var(--primary);
  position: relative;
}

.section-v2 {
  position: relative;
}

.section-light {
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(0, 33, 71, 0.04);
}

.section-v2:not(.section-light):not(.section-navy) {
  background: linear-gradient(180deg, #f4f6f9 0%, #eef1f6 100%);
}

/* ── Service cards (home) ── */
.svc-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 4px 20px rgba(0, 33, 71, 0.04);
  overflow: hidden;
  position: relative;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover {
  border-color: rgba(197, 160, 40, 0.35);
  box-shadow: 0 20px 50px rgba(0, 33, 71, 0.12);
}

.svc-card-icon {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  box-shadow: 0 6px 16px rgba(0, 33, 71, 0.2);
}

/* ── Why choose ── */
.why-item {
  background: #fff;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.why-item:hover {
  border-left-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(0, 33, 71, 0.08);
}

.why-item-icon {
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(197, 160, 40, 0.15), rgba(197, 160, 40, 0.05));
}

/* ── Process (home navy section) ── */
.section-navy {
  position: relative;
  overflow: hidden;
}

.section-navy::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 40, 0.08), transparent 60%);
  pointer-events: none;
}

.process-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  height: 100%;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(197, 160, 40, 0.35);
  transform: translateY(-4px);
}

.process-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(197, 160, 40, 0.35);
}

/* ── CTA band ── */
.cta-v2-inner {
  background: linear-gradient(135deg, var(--primary) 0%, #001530 100%);
  border: 1px solid rgba(197, 160, 40, 0.25);
}

.cta-v2-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(197, 160, 40, 0.12), transparent 70%);
  pointer-events: none;
}

/* ── Page banner (inner pages) ── */
.page-banner {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-banner-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 33, 71, 0.92) 0%,
    rgba(0, 33, 71, 0.78) 50%,
    rgba(0, 26, 56, 0.85) 100%
  );
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light), var(--accent-dark));
  z-index: 3;
}

.page-banner-title {
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-banner .section-label {
  color: var(--accent-light) !important;
  background: rgba(197, 160, 40, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.72rem;
}

.breadcrumb-item a {
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: var(--accent-light) !important;
}

/* ── About page ── */
.img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 33, 71, 0.15);
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  z-index: 2;
  pointer-events: none;
}

.img-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.img-rounded {
  border-radius: 16px;
}

.mission-card {
  border-radius: 16px;
  padding: 2.25rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 33, 71, 0.1);
}

.mission-card-alt {
  background: linear-gradient(145deg, var(--primary) 0%, #001a38 100%);
  box-shadow: 0 20px 50px rgba(0, 33, 71, 0.2);
}

.mission-icon {
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(197, 160, 40, 0.2);
}

.icon-feature-card {
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 33, 71, 0.04);
}

.icon-feature-card:hover {
  border-color: rgba(197, 160, 40, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 33, 71, 0.1);
}

.icon-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--accent-light);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 33, 71, 0.2);
}

.icon-feature-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.icon-feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.process-timeline-item {
  transition: transform 0.2s;
}

.process-timeline-item:hover {
  transform: translateX(6px);
}

.process-timeline-num {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  color: var(--primary);
  font-weight: 800;
}

.bg-white-section {
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(0, 33, 71, 0.04);
}

/* Stats row (about) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 4px 16px rgba(0, 33, 71, 0.04);
}

.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-box span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Services page ── */
.services-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.services-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-full-card {
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem !important;
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 8px 32px rgba(0, 33, 71, 0.06);
  transition: box-shadow 0.3s;
}

.service-full-card:hover {
  box-shadow: 0 20px 56px rgba(0, 33, 71, 0.1);
}

.service-full-card--reverse .row {
  flex-direction: row-reverse;
}

.service-full-img {
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 33, 71, 0.12);
}

.service-full-img img {
  height: 300px;
  transition: transform 0.4s ease;
}

.service-full-card:hover .service-full-img img {
  transform: scale(1.03);
}

.service-full-num {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  color: var(--primary);
  font-weight: 800;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(197, 160, 40, 0.4);
}

.service-full-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--accent-light);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(0, 33, 71, 0.2);
}

.service-list-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-bullet-list li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.service-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.tool-pill {
  background: rgba(0, 33, 71, 0.05);
  border: 1px solid rgba(0, 33, 71, 0.1);
  color: var(--primary);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #001a38 100%);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  color: #fff;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 40, 0.2);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 40, 0.1), transparent 60%);
}

.cta-box h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8) !important;
  position: relative;
}

.cta-box .btn-submit {
  position: relative;
}

/* ── Contact page ── */
.contact-section {
  background: linear-gradient(180deg, #f4f6f9 0%, #eef1f6 100%);
}

.contact-brand-card {
  background: linear-gradient(145deg, var(--primary) 0%, #001a38 100%);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 33, 71, 0.2);
}

.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 33, 71, 0.06);
  border: 1px solid rgba(0, 33, 71, 0.06);
}

.contact-info-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 33, 71, 0.15);
}

.contact-help-card {
  background: linear-gradient(135deg, rgba(197, 160, 40, 0.12), rgba(197, 160, 40, 0.04));
  border: 1px solid rgba(197, 160, 40, 0.25);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 20px 56px rgba(0, 33, 71, 0.08);
  overflow: hidden;
  padding: 0;
}

.contact-form-wrap h3 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  margin: 0;
  padding: 1.5rem 2rem;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-form-wrap h3 .text-accent {
  color: var(--accent-light) !important;
}

.contact-form-wrap > p,
.contact-form-wrap > #formAlert,
.contact-form-wrap > form {
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
  padding-right: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form-wrap > p {
  padding-top: 1.25rem;
}

.contact-form-wrap > form {
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form-wrap > #formAlert {
  margin-top: 1rem;
}

.form-control {
  border-radius: 10px;
  border: 1.5px solid rgba(0, 33, 71, 0.12);
  padding: 0.7rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(197, 160, 40, 0.15);
}

/* ── Buttons ── */
.btn-submit {
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.btn-outline-navy {
  border-radius: 8px;
  border-width: 2px;
}

.btn-navy {
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 33, 71, 0.2);
}

/* ── Footer ── */
.site-footer {
  margin-top: 0;
}

.footer-main {
  padding: 4.5rem 0 3.5rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .service-full-card--reverse .row {
    flex-direction: column;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .img-frame img {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip-inner {
    gap: 1rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }
}

/* ── Nav services dropdown ── */
.nav-services-dropdown .dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.15em;
}

.dropdown-menu-services {
  min-width: 300px;
  padding: 0.5rem;
  border: 1px solid rgba(0, 33, 71, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 33, 71, 0.12);
  margin-top: 0.65rem !important;
}

.dropdown-menu-services .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: normal;
}

.dropdown-menu-services .dropdown-item i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 33, 71, 0.06);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dropdown-menu-services .dropdown-item:hover,
.dropdown-menu-services .dropdown-item:focus {
  background: rgba(197, 160, 40, 0.1);
  color: var(--primary);
}

.dropdown-menu-services .dropdown-item.active {
  background: rgba(0, 33, 71, 0.08);
  color: var(--primary);
}

.dropdown-item-all strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.3;
}

.dropdown-item-all small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.dropdown-menu-services .dropdown-divider {
  margin: 0.35rem 0;
  border-color: rgba(0, 33, 71, 0.08);
}

@media (max-width: 991.98px) {
  .nav-services-dropdown .dropdown-menu {
    border: none;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem 0.75rem;
    background: transparent;
  }

  .nav-services-dropdown .dropdown-item {
    padding-left: 0.5rem;
  }
}

/* Service overview cards */
.svc-card-overview {
  position: relative;
  padding-top: 2.25rem;
}

.svc-card-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(0, 33, 71, 0.08);
  line-height: 1;
}

.svc-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.svc-card-compact h3 {
  font-size: 0.88rem;
}

.service-breadcrumb {
  font-size: 0.9rem;
  font-weight: 600;
}

.service-breadcrumb a {
  color: var(--accent-dark);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.other-services h3 {
  color: var(--primary);
  font-size: 1.35rem;
}
