/* =========================================
   RESET & BASE
   ========================================= */
@font-face {
  font-family: 'Bank Gothic';
  src: url('../fonts/Bank\ Gothic\ Light\ Regular.otf') format('opentype'),
       url('../fonts/BankGothicMediumBT.ttf') format('truetype');
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  padding-top: 73px; /* matches fixed header height — prevents content overlap */
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f7f9fa;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Bank Gothic', sans-serif;
  font-size: 1.80rem;
  font-weight: 700;
  color: #c0202f;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.scroll-progress-bar {
  position: fixed;
  top: 73px; /* fallback — JS recalculates this to match real header height */
  left: 0;
  height: 3px;
  width: 0%;
  background-color: #c0202f;
  z-index: 999;
  transition: width 0.1s ease-out;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #c0202f;
}

.nav-link.active {
  color: #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/hero-port.png');
  background-size: cover;
  background-position: center;
  padding: 0 24px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 20, 0.45) 0%,
    rgba(10, 15, 20, 0.55) 50%,
    rgba(10, 15, 20, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  color: #ffffff;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: #f0f0f0;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE — HEADER & HERO
   ========================================= */
@media (max-width: 900px) {
  body {
    padding-top: 64px;
  }

  .hero {
    min-height: calc(100vh - 64px);
  }

  .header-inner {
    padding: 12px 20px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .scroll-progress-bar {
    top: 64px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f7f9fa;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  }

  .main-nav.open {
    max-height: 320px;
  }

  .main-nav .nav-link {
    width: 100%;
    padding: 16px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-link.active {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background-color: rgba(192, 32, 47, 0.06);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .logo-text {
    font-size: 0.85rem;
  }

  .header-inner {
    padding: 10px 14px;
    gap: 8px;
  }

  .logo {
    gap: 8px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
/* =========================================
   SHARED SECTION UTILITIES
   ========================================= */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0202f;
  margin-bottom: 14px;
}

.eyebrow-light {
  color: #ff8a93;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 22px;
}

.section-lead {
  font-size: 1.05rem;
  color: #4a4a4a;
  margin-bottom: 16px;
  max-width: 640px;
}

.section-body {
  font-size: 1rem;
  color: #5c5c5c;
  margin-bottom: 28px;
  max-width: 640px;
}

/* Scroll reveal base state */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
   ABOUT US
   ========================================= */
.about {
  padding: 100px 0;
  background-color: #ffffff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-media-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-media:hover .about-media-frame img {
  transform: scale(1.05);
}

.about-media-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background-color: #c0202f;
  color: #ffffff;
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(192, 32, 47, 0.35);
}

.badge-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #c0202f;
}

.stat-label {
  font-size: 0.85rem;
  color: #6a6a6a;
  margin-top: 4px;
}

/* =========================================
   OUR AIM
   ========================================= */
.aim {
  position: relative;
  padding: 110px 0;
  background-image: url('../images/hero-port.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.aim-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 20, 0.88) 0%, rgba(10, 15, 20, 0.92) 100%);
}

.aim-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.aim-title {
  color: #ffffff;
  max-width: 720px;
  margin: 0 auto 18px;
}

.aim-lead {
  color: #d8d8d8;
  max-width: 680px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

.aim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.aim-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.aim-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(192, 32, 47, 0.5);
}

.aim-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(192, 32, 47, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.aim-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.aim-card p {
  color: #c6c6c6;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery {
  padding: 100px 0;
  background-color: #f7f9fa;
}

.gallery .section-inner {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-lead {
  margin: 0 auto;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  transform: translateY(8px);
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

/* =========================================
   OFFICE LOCATION
   ========================================= */
.location {
  padding: 100px 0;
  background-color: #ffffff;
}

.location-title {
  font-family: 'Bank Gothic', sans-serif;
}

.location .section-inner {
  text-align: center;
  margin-bottom: 50px;
}

.location .section-lead {
  margin: 0 auto;
}

.location-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.location-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #f7f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(192, 32, 47, 0.25);
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(192, 32, 47, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.contact-text p {
  font-size: 0.92rem;
  color: #5c5c5c;
  line-height: 1.5;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background-color: #14181c;
  color: #cfcfcf;
  padding-top: 70px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-about {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #a8a8a8;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfcfcf;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
  background-color: #c0202f;
  border-color: #c0202f;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.92rem;
  color: #a8a8a8;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-list li {
  font-size: 0.92rem;
  color: #a8a8a8;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #9a9a9a;
}

.back-to-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.back-to-top:hover {
  background-color: #c0202f;
  border-color: #c0202f;
  transform: translateY(-3px);
}

/* =========================================
   WHATSAPP FLOAT BUTTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

/* =========================================
   RESPONSIVE — NEW SECTIONS
   ========================================= */
@media (max-width: 1024px) {
  .aim-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 320px;
  }

  .location-map iframe {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media-frame img {
    height: 320px;
  }

  .about-media-badge {
    right: 16px;
    bottom: -20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.9rem;
  }

  .aim-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}