*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #d0a741;
  --accent-dark: #8a6a1a;
  --dark: #0e100f;
  --white: #ffffff;
  --offwhite: #f7f5f2;
  --muted: #9a9490;
  --text-secondary: #6b6560;
  --border: #e6e1da;
  --dark-navy: #0b0b0d;
  --page-pad: 120px;
  --navy: #0b1448;
  --text: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to right,
      rgba(8, 10, 12, 0.75) 0%,
      rgba(8, 10, 12, 0.2) 65%,
      rgba(8, 10, 12, 0.05) 100%
    ),
    linear-gradient(
      to top,
      rgba(6, 8, 10, 0.95) 0%,
      rgba(6, 8, 10, 0.5) 25%,
      transparent 55%
    );
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.hero-top-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 22px;
}

.hero-title-col {
  flex: 1;
}

.hero-title {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 10px;
}

.hero-stat-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 6px;
}

.hero-stat {
  background: rgba(15, 20, 10, 0);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px 36px;
  min-width: 230px;
}

.hero-stat-num {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-headline {
  font-weight: 600;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.section-headline em {
  font-style: normal;
  font-weight: 300;
  color: var(--accent);
}

.section-headline-light {
  color: #fff;
}

.section-headline-light em {
  color: var(--accent-light);
}

.btn-primary-vort {
  background: #fff;
  color: #0f1410;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary-vort:hover {
  opacity: 0.88;
  color: #0f1410;
}

.btn-secondary-vort {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50px;
  padding: 12px 34px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary-vort:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-black-vort {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-black-vort:hover {
  background: #2a2c2b;
  color: #fff;
  transform: translateY(-1px);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 60px;
  z-index: 2;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.scroll-hint svg {
  width: 14px;
  height: 14px;
}

/* ─── PILL TAG ─── */
.pill-tag {
  display: inline-block;
  background: #fff;
  color: #2f2f2f;
  padding: 6px 24px;
  border-radius: 20px;
  border: 1px solid #575757;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  padding: 100px 60px;
}

.about-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
}

.about-section h1 span {
  color: var(--accent);
}

.paragraph-dark {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: justify;
}

/* ─── SERVICES BOXES ─── */

.contact-card {
  position: relative;
  border: 1px solid #ced7e0;
  padding: 40px 30px;
  background: #fff;
  overflow: hidden;
  transition: background 0.3s ease;
}

/* ICON LEFT */
.contact-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact-icon svg {
  color: #364052;
  stroke: #364052;
  transition: 0.3s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f7e7b3, #e3c26f);
  opacity: 0.25;
  transition: left 0.5s ease;
  z-index: 1;
}

.contact-card:hover::before {
  left: 0;
}

.contact-card:hover .contact-icon svg {
  /* color: #d4a017;
                      stroke: #d4a017; */
  animation: shake 0.5s;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-4px);
  }

  40% {
    transform: translateX(4px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }

  100% {
    transform: translateX(0);
  }
}

.contact-card:hover {
  transform: none;
}

.box-heading {
  font-size: 18px;
  font-weight: 700;
}

.box-paragraph {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.7;
}

/*─── INDUSTRIES ───*/
.industries-section {
  padding: 80px 60px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 400px;
  background: #1a2a3a;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover img {
  transform: scale(1.05);
}

.industry-card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 16px;
  border-radius: 4px;
}

/* ─── INDUSTRY CAROUSEL ─── */
.ind-carousel-wrap {
  position: relative;
}

.ind-carousel-outer {
  overflow: hidden;
}

.ind-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ind-slide-card {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: 12px;
  overflow: hidden;
  background: #1a2a3a;
  height: 580px;
  position: relative;
  cursor: pointer;
}

.ind-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ind-slide-card:hover img {
  transform: scale(1.05);
}

.ind-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 25, 0.85) 0%,
    rgba(10, 15, 25, 0.1) 60%,
    transparent 100%
  );
}

.ind-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: #fff;
}

.ind-slide-label h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.ind-slide-label p {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}

.ind-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.ind-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.ind-ctrl-btn:hover {
  background: var(--dark);
  color: #fff;
}

.ind-ctrl-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.ind-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}



    @media (max-width: 768px) {
  .divisions-stats {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .div-stat {
    min-width: 200px; /* forces horizontal scroll */
  }
}

.ind-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.ind-dot.active {
  background: var(--dark);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .ind-slide-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 576px) {
  .ind-slide-card {
    flex: 0 0 85%;
  }
}

/* ─── PARTNERS ─── */
.partners-section {
  padding: 60px;
  text-align: center;
}

.partners-section h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
}

.partner-logo {
  width: 50%;
  object-fit: contain;
  /* opacity: 0.5; */
  /* filter: grayscale(1); */
  /* transition: opacity 0.2s; */
}

.partner-logo:hover {
  opacity: 1;
  filter: none;
}

/* ─── SERVICES ACCORDION ─── */
.services-dark-section {
  background: rgb(25, 51, 71);
  color: #fff;
  padding: 80px 60px;
}

.custom-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.custom-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 28px 0;
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  filter: invert(1);
}

.custom-accordion .accordion-button.collapsed {
  color: rgba(255, 255, 255, 0.7);
}

.custom-accordion .accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.custom-accordion .accordion-collapse.show {
  max-height: 200px;
}

.custom-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.55);
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
}

/* ─── ONGOING PROJECTS / NEWS CARDS ─── */
.news-section {
  padding: 60px 40px;
}

/* ─── NEWS GRID ──────────────────────── */
#news-grid {
  padding: 80px var(--page-pad) 140px;
}

/* Featured / first card */
.news-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 48px;
  transition: box-shadow 0.3s;
}
.news-featured-img {
  overflow: hidden;
  background: #ddd9d3;
  min-height: 440px;
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-featured:hover .news-featured-img img {
  transform: scale(1.04);
}
.news-featured-body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}
.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  margin-right: 8px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.news-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.news-tag.tag-gold {
  border-color: var(--accent);
  color: var(--accent);
}

.news-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-title {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin: 24px 0 20px;
}
.featured-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 40px;
}
.read-more-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1.5px solid var(--dark);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  align-self: flex-start;
}
.read-more-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.read-more-link svg {
  width: 12px;
  height: 12px;
}

/* Standard card grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-3px);
}
.card-img {
  overflow: hidden;
  background: #ddd9d3;
  aspect-ratio: 16/10;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card:hover .card-img img {
  transform: scale(1.05);
}
.card-body-inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.card-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}
.card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}

/* Date badge like the screenshot */
.date-box {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  display: inline-block;
  min-width: 52px;
}
.date-box .day {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}
.date-box .month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-top: 2px;
}

/* No results */
.no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.no-results.show {
  display: block;
}
.no-results p {
  font-size: 16px;
  margin-top: 12px;
}
/* ─── FOOTER ─── */
.wings-footer {
  background: #050505;
  font-family: "Manrope", sans-serif;
  padding: 60px 64px 36px;
  position: relative;
  overflow: hidden;
}

.wings-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(174, 136, 38, 0.08) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.wings-footer-top {
  display: grid;
  grid-template-columns: 280px 1fr auto auto;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.wf-brand p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  max-width: 230px;
}

.wf-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  background: transparent;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.wf-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.wf-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.wf-nav a {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.wf-nav a:hover {
  color: #fff;
}

.wf-legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.wf-legal a {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.wf-legal a:hover {
  color: #fff;
}

.wf-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wf-contact a,
.wf-contact span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.wf-contact a:hover {
  color: #fff;
}

.wings-footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 44px 0 28px;
  position: relative;
  z-index: 1;
}

.wings-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.wf-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wf-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.wf-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

.wf-back-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  background: none;
  border: none;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
  transition: color 0.18s;
}

.wf-back-top:hover {
  color: #fff;
}

/* ─── FADE UP ─── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .navbar-wrap {
    padding: 16px 24px;
  }

  .nav-center {
    display: none;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-top-row {
    flex-direction: column;
    gap: 20px;
  }

  .about-section,
  .industries-section,
  .services-dark-section,
  .news-section,
  .partners-section {
    padding: 60px 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-featured-img {
    min-height: 260px;
  }

  .wings-footer {
    padding: 44px 32px 28px;
  }

  .wings-footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-stat-col {
    width: 100%;
  }

  .hero-stat {
    min-width: unset;
    width: fit-content;
  }

  .wings-footer-top {
    grid-template-columns: 1fr;
  }
}

.port-section {
  padding: 50px 60px;
  font-family: "Manrope", sans-serif;
  background: #fff;
}

.port-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 40px;
}

.port-header-left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: #0e100f;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.port-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
  max-width: 320px;
}

.port-header-right p {
  font-size: 14px;
  color: #6b6560;
  line-height: 1.7;
  text-align: right;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0e100f;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  transition: background 0.2s;
}

.explore-btn:hover {
  background: #333;
}

.explore-btn svg {
  transition: transform 0.2s;
}

.explore-btn:hover svg {
  transform: translateX(3px);
}

.port-track-wrap {
  position: relative;
  overflow: hidden;
}

.port-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.port-slide {
  flex: 0 0 75%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-height: 420px;
  flex-shrink: 0;
}

.port-card {
  background: #f7f5f0;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*border: 1px solid #e6e1da;*/
  transition: background 0.3s;
  border-radius: 12px;
}

.port-card:hover {
  background: #eeeae3;
}

.port-card-logo {
  margin-bottom: auto;
}

.port-card-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.port-card-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #0e100f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.port-card-logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}

.port-card-logo-name {
  font-size: 15px;
  font-weight: 700;
  color: #0e100f;
  letter-spacing: -0.01em;
}

.port-card-logo-sub {
  font-size: 10px;
  color: #9a9490;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.port-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0e100f;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.port-card-desc {
  font-size: 13px;
  color: #6b6560;
  line-height: 1.75;
  font-style: italic;
}

.port-center {
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}

.port-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.port-center:hover img {
  transform: scale(1.04);
}

.port-center-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 25, 0.45) 0%,
    transparent 50%
  );
}

.port-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.port-progress {
  flex: 1;
  height: 2px;
  background: #e6e1da;
  border-radius: 2px;
  margin-right: 32px;
  overflow: hidden;
}

.port-progress-bar {
  height: 100%;
  background: #0e100f;
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.port-nav {
  display: flex;
  gap: 10px;
}

.port-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e6e1da;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #0e100f;
}

.port-nav-btn:hover {
  background: #0e100f;
  border-color: #0e100f;
  color: #fff;
}

.port-nav-btn:hover svg {
  stroke: #fff;
}

.port-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.port-nav-btn svg {
  stroke: #0e100f;
  transition: stroke 0.2s;
}

.port-nav-btn:hover svg {
  stroke: #fff;
}

.port-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.port-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e6e1da;
  cursor: pointer;
  transition: all 0.3s;
}

.port-dot.active {
  background: #0e100f;
  width: 20px;
  border-radius: 3px;
}

.port-pill {
  display: inline-block;
  background: #fff;
  color: #2f2f2f;
  padding: 5px 20px;
  border-radius: 20px;
  border: 1px solid #575757;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
}

@media (max-width: 900px) {
  .port-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .port-center {
    min-height: 240px;
  }

  .port-section {
    padding: 60px 24px;
  }
}

/* ── FINAL CTA STRIP ────────────────────────────────────────────────── */
.final-cta {
  padding: 72px 56px;
  text-align: center;
  /* background: linear-gradient(135deg, #f7f8fc 0%, #fff 100%); */
  background-image: url("https://i.pinimg.com/736x/d8/58/fd/d858fd7489df5d4711b3bb5df8f35203.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-radius: 20px;
}

.final-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.final-cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 15px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-navy {
  background: #2f2f2f;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-navy:hover {
  background: #2a2b2b;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #363636;
  border: 1px solid #2f2f2f;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-outline:hover {
  background: #252525;
  color: #fff;
  border-color: #2b2c2d;
}

.consult-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.consult-overlay.active {
  opacity: 1;
  visibility: visible;
}

.consult-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.consult-modal {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 52px 48px 44px;
  max-width: 720px;
  width: 92%;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.consult-overlay.active .consult-modal {
  transform: translateY(0) scale(1);
}

.consult-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e6e1da;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #0e100f;
}

.consult-close:hover {
  background: #0e100f;
  border-color: #0e100f;
  color: #fff;
}

.consult-header {
  text-align: center;
  margin-bottom: 36px;
}

.consult-badge {
  display: inline-block;
  background: #f7f5f2;
  color: #6b6560;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid #e6e1da;
}

.consult-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #0e100f;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.2;
}

.consult-header p {
  font-size: 14px;
  color: #6b6560;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

.consult-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.consult-card {
  position: relative;
  border: 1.5px solid #e6e1da;
  border-radius: 16px;
  padding: 32px 24px 28px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
  overflow: hidden;
}

.consult-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(208, 167, 65, 0.06) 0%,
    rgba(208, 167, 65, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: 16px;
}

.consult-card:hover {
  border-color: #d0a741;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(208, 167, 65, 0.12);
}

.consult-card:hover::before {
  opacity: 1;
}

.consult-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.consult-card-icon.general {
  background: linear-gradient(135deg, #0e100f, #2a2a2a);
}

.consult-card-icon.aam {
  background: linear-gradient(135deg, #d0a741, #b8912e);
}

.consult-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
}

.consult-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0e100f;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.consult-card p {
  font-size: 13px;
  color: #6b6560;
  line-height: 1.65;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.consult-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0e100f;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition:
    color 0.2s,
    gap 0.2s;
}

.consult-card:hover .consult-card-btn {
  color: #d0a741;
  gap: 10px;
}

.consult-card-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.2s;
}

.consult-footer-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #9a9490;
  line-height: 1.6;
}

.consult-footer-note svg {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 4px;
  stroke: #d0a741;
  fill: none;
}

/* ── Confirmation Toast ── */
.consult-toast {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 10001;
  background: #0e100f;
  color: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.consult-toast.show {
  transform: translateX(0);
}

.consult-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0a741, #b8912e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-toast-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}

.consult-toast-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}

.consult-toast-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.55;
}

.consult-toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.consult-toast-close:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .consult-cards {
    grid-template-columns: 1fr;
  }

  .consult-modal {
    padding: 36px 24px 28px;
  }

  .consult-toast {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
}
