:root {
  --navy: #061018;
  --navy-mid: #0c1f35;
  --navy-light: #152d4d;
  --steel: #3d6a9e;
  --ocean: #1a9bb8;
  --ocean-glow: rgba(26, 155, 184, 0.35);
  --accent: #d4af37;
  --accent-light: #f0d060;
  --accent-glow: rgba(212, 175, 55, 0.25);
  --light: #eef3fa;
  --text-muted: #8ba3c4;
  --white: #ffffff;
  --glass: rgba(12, 31, 53, 0.65);
  --glass-border: rgba(212, 175, 55, 0.18);
  --header-height: 108px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 12px;
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.45);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--light);
  background: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}
@keyframes rotate-cw {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float-wave {
  0%,
  100% {
    transform: translateY(-20px) scaleX(1);
  }
  50% {
    transform: translateY(20px) scaleX(1.05);
  }
}
/* Logo Ring & Glow */
@keyframes pulse-ring {
  0% {
    width: 220px;
    height: 220px;
    opacity: 0.3;
  }
  50% {
    width: 280px;
    height: 280px;
    opacity: 0.15;
  }
  100% {
    width: 220px;
    height: 220px;
    opacity: 0.3;
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.text-muted {
  color: var(--text-muted) !important;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(6, 16, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
  transform: translateY(0);
}
.site-header.scrolled {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  background: rgba(6, 16, 24, 0.96);
}
.site-header.scroll-hide {
  transform: translateY(calc(-100% - 1px));
}
.site-header.scroll-show {
  transform: translateY(0);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  justify-content: flex-start;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  justify-content: flex-end;
}
.nav-right a {
  color: var(--white);
  text-decoration: none;
}
.nav-right .call-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
.nav-right .bi {
  font-size: 2rem;
  color: var(--accent);
}
.nav-link {
  color: rgba(238, 243, 250, 0.85);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 0.9rem;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width var(--transition), left var(--transition);
}
.nav-link:hover {
  color: var(--accent-light);
}
.nav-link:hover::after {
  width: 50%;
  left: 25%;
}
.nav-link.active {
  color: var(--accent-light);
}
.nav-link.active::after {
  width: 50%;
  left: 25%;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
}
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
  z-index: 1100;
}
.dropdown-menu-inner {
  background: linear-gradient(145deg, rgba(21, 45, 77, 0.98), rgba(6, 16, 24, 0.98));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.dropdown-menu-inner::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(21, 45, 77, 0.98);
  border-left: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
}
.dropdown-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0.75rem 0.75rem;
  font-weight: 600;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  color: var(--light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.dropdown-item i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}
.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-light);
  transform: translateX(4px);
}
.logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 0 1.25rem;
}
.logo-center:hover .logo-ring {
  box-shadow: 0 0 30px var(--accent-glow);
  transform: scale(1.05);
}
.logo-center img {
  height: 70px;
  width: auto;
}
.logo-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.logo-text {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-toggle {
  display: none;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--accent);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
}
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--ocean-glow) 0%, transparent 60%), linear-gradient(180deg, rgba(6, 16, 24, 0.5) 0%, rgba(6, 16, 24, 0.92) 100%);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 920px;
}
.parallax-layer {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}
.hero .tagline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--accent-light);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero p.lead {
  font-size: 1.12rem;
  color: var(--text-white);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 640px;
}
.page-hero {
  min-height: 50vh;
  padding-top: calc(var(--header-height) + 2rem);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}
.page-hero .tagline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--accent-light);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.breadcrumb-hero {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb-hero a {
  color: var(--accent);
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--accent-glow);
  color: var(--navy);
}
.btn-outline-gold {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid rgba(212, 175, 55, 0.6);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-left: 0.75rem;
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}
.section {
  padding: 5rem 0;
  position: relative;
}
.section-dark {
  background: linear-gradient(180deg, rgba(6, 16, 24, 0.35), #041056);
}
.section-mid {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.section-light {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3fa 100%);
  color: var(--navy);
}
.section-light .section-subtitle {
  color: #5a6d85;
}
.section-light .feature-card {
  background: var(--white);
  border-color: #e2e8f0;
  box-shadow: 0 8px 30px rgba(6, 16, 24, 0.06);
}
.section-light .feature-card p {
  color: #5a6d85;
}
.section-light .glass-card {
  background: var(--white);
  border-color: #e2e8f0;
  box-shadow: 0 8px 30px rgba(6, 16, 24, 0.06);
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 1rem;
}
.section-title.center::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1rem auto 0;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  font-weight: 300;
}
.feature-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--ocean));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--ocean));
  opacity: 0;
  transition: opacity var(--transition);
}
.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-lg);
}
.glass-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--ocean), var(--steel));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px var(--ocean-glow);
}
.stats-strip {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stat-box {
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}
.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--glass-border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.about-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}
.about-nav-pills .nav-link {
  color: var(--light);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  margin-bottom: 0.5rem;
  border-radius: 10px;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
}
.about-nav-pills .nav-link::after {
  display: none;
}
.about-nav-pills .nav-link .num {
  width: 28px;
  height: 28px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.about-nav-pills .nav-link:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(26, 155, 184, 0.1));
  border-color: var(--accent);
  color: var(--accent-light);
}
.about-nav-pills .nav-link.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(26, 155, 184, 0.1));
  border-color: var(--accent);
  color: var(--accent-light);
}
.about-block {
  padding: 5rem 0;
  scroll-margin-top: calc(var(--header-height) + 2rem);
  border-bottom: 1px solid var(--glass-border);
}
.about-block:last-child {
  border-bottom: none;
}
.about-intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.cert-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.cert-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.cert-card i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}
.cert-card strong {
  display: block;
  color: var(--light);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.cert-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.location-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--glass-border);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--ocean));
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 320px;
  background: var(--navy-mid);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
}
.info-panel {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  height: 100%;
}
.info-panel h4 {
  font-family: var(--font-display);
  color: var(--accent-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.investor-hero-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(26, 155, 184, 0.08));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 70px;
  line-height: 1;
}
.job-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all var(--transition);
}
.job-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.job-card h5 {
  font-family: var(--font-display);
  color: var(--accent-light);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.job-tag {
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-muted);
}
.contact-form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--light);
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
}
.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--light);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--light);
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
}
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--light);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.hero-slider {
  height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
  display: block;
}
.hero-carousel {
  position: relative;
}
.hero-carousel .carousel-item {
  height: calc(100vh - var(--header-height));
  display: block;
  position: relative;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.62) contrast(1.05);
}
.hero-overlay-brand {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 24, 0.35), #041056);
  z-index: 2;
}
.hero-slide-layout {
  position: relative;
  z-index: 3;
  padding: 5rem 0;
}
.hero-slide-text {
  color: var(--light);
}
.hero-slide-text h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-slide-text .lead {
  max-width: 640px;
  color: rgba(238, 243, 250, 0.92);
}
.hero-slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-logo-img {
  width: 180px;
  max-width: 40vw;
  height: auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
}
.hero-carousel-control {
  opacity: 0;
  background: transparent;
  border: none;
  color: var(--light);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 60px;
}
.hero-carousel-control .hero-control-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.hero-slider:hover .hero-carousel-control {
  opacity: 1;
}
.hero-slide-counter {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  color: var(--light);
  font-weight: 700;
  background: rgba(0, 0, 0, 0.22);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
}
.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 5;
  color: var(--light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contact-info-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}
.contact-info-card:hover {
  border-color: var(--accent);
}
.contact-info-card .icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(26, 155, 184, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.site-footer {
  background: #030a10;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--accent);
}
.footer-wave {
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(26, 155, 184, 0.08));
  margin-bottom: 3rem;
}
.footer-brand h5 {
  font-family: var(--font-display);
  color: var(--accent-light);
  font-size: 1.35rem;
  margin: 1rem 0 0.75rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-logo-img {
  height: 52px;
}
.footer-heading {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 0.35rem 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--accent);
  font-size: 1.5rem;
  z-index: 2;
  opacity: 0.8;
}
.value-pill {
  text-align: center;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.value-pill:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.value-pill h5 {
  font-family: var(--font-display);
  margin-top: 1rem;
  font-size: 1.1rem;
}
.hero-slider-ui {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
}
.hero-slider-ui > * {
  pointer-events: auto;
}
.hero-highlight {
  color: var(--accent-light);
  font-weight: 700;
}
.hero-tagline {
  font-size: 0.9rem;
  color: var(--text-white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-logo-caption {
  font-size: 0.85rem;
  color: var(--text-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  font-weight: 500;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}
.hero-deco-gear {
  top: 5%;
  right: 8%;
  width: 280px;
  height: 280px;
  animation: rotate-cw 25s linear infinite;
}
.hero-deco-wave {
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 300px;
  animation: float-wave 6s ease-in-out infinite;
}
.hero-logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-ring 3s ease-out infinite;
}
.hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--ocean-glow) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(20px);
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
  cursor: pointer;
}
.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--accent-glow);
  color: var(--navy);
}
.btn-hero-outline {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid rgba(212, 175, 55, 0.6);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-hero-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}
.hero-stat {
  text-align: left;
  padding: 0;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.hero-stat span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--light);
  padding: 0.35rem 0;
}
.hero-features i {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-slide-current {
  font-weight: 700;
  font-family: "Courier New", monospace;
  color: var(--accent-light);
}
.hero-slide-sep {
  font-weight: 700;
  font-family: "Courier New", monospace;
  color: var(--text-muted);
}
.hero-slide-total {
  font-weight: 700;
  font-family: "Courier New", monospace;
  color: var(--accent-light);
}
@media (max-width: 991px) {
  .hero-slide-layout {
    padding: 3rem 0;
  }
  .hero-slide-text {
    text-align: center;
  }
  .hero-slide-visual {
    margin-top: 1rem;
  }
  .hero-logo-img {
    width: 140px;
  }
  .hero-carousel-control {
    width: 36px;
    height: 36px;
  }
  .hero-carousel-control .hero-control-inner {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .hero-carousel-indicators {
    gap: 3px;
  }
  .hero-carousel-indicators button {
    width: 8px;
    height: 8px;
    gap: 3px;
  }
  .hero-slide-counter {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    right: 12px;
    top: 12px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .hero-stat strong {
    font-size: 1.75rem;
  }
  .hero-cta {
    justify-content: center;
    gap: 0.75rem;
  }
  .btn-hero-primary {
    padding: 0.8rem 1.8rem;
    font-size: 0.72rem;
  }
  .btn-hero-outline {
    padding: 0.8rem 1.8rem;
    font-size: 0.72rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
  .hero-deco-gear {
    width: 200px;
    height: 200px;
  }
  .hero-deco-wave {
    width: 300px;
    height: 220px;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 1rem;
  }
  .nav-left {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    top: var(--header-height);
  }
  .nav-right {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .nav-right.open {
    top: auto;
    display: flex;
  }
  .nav-left.open {
    display: flex;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 100%;
    margin: 0.5rem 0 0;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .dropdown-menu-inner::before {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .btn-outline-gold {
    margin-left: 0;
    margin-top: 0.75rem;
  }
  .about-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  .stat-box:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 576px) {
  .hero-carousel .carousel-item {
    min-height: calc(70vh - var(--header-height));
  }
  .hero-slide-text {
    text-align: center;
  }
  .hero-slide-text h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    margin-bottom: 0.75rem;
  }
  .hero-slide-text .lead {
    font-size: 0.95rem;
    color: rgba(238, 243, 250, 0.85);
  }
  .parallax-section {
    background-attachment: scroll;
  }
  .hero-carousel-control {
    width: 28px;
    height: 28px;
    opacity: 0.6;
  }
  .hero-carousel-control:hover {
    opacity: 1;
  }
  .hero-carousel-control .hero-control-inner {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  .hero-carousel-indicators {
    gap: 2px;
    bottom: 12px;
  }
  .hero-carousel-indicators button {
    width: 6px;
    height: 6px;
  }
  .hero-carousel-indicators .active {
    box-shadow: 0 4px 12px var(--accent-glow);
  }
  .hero-slide-counter {
    display: none;
  }
  .hero-tagline {
    font-size: 0.8rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
  .hero-badge i {
    font-size: 0.8rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.5rem 0;
    justify-content: center;
    width: 100%;
  }
  .btn-hero-primary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
  }
  .btn-hero-outline {
    width: 100%;
    padding: 0.7rem 1.5rem;
    font-size: 0.7rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
  }
  .hero-stat {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
  }
  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .hero-stat strong {
    font-size: 1.5rem;
  }
  .hero-stat span {
    font-size: 0.7rem;
  }
  .hero-features {
    gap: 0.6rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
  }
  .hero-features li {
    gap: 0.6rem;
    padding: 0.25rem 0;
  }
  .hero-features i {
    font-size: 1rem;
  }
  .hero-slide-visual {
    margin-top: 1rem;
  }
  .hero-logo-img {
    width: 100px;
  }
  .hero-logo-ring {
    width: 150px;
    height: 150px;
  }
  .hero-logo-glow {
    width: 170px;
    height: 170px;
  }
  .hero-logo-showcase {
    gap: 0.4rem;
  }
  .hero-logo-caption {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
  .hero-scroll-indicator {
    font-size: 0.9rem;
    gap: 0.3rem;
    bottom: 10px;
  }
  .hero-scroll-indicator i {
    font-size: 1.2rem;
  }
  .hero-deco-gear {
    width: 120px;
    height: 120px;
    opacity: 0.08;
  }
  .hero-deco-wave {
    width: 200px;
    height: 150px;
    opacity: 0.08;
  }
}
@media (max-width: 480px) {
  .hero-carousel .carousel-item {
    min-height: calc(60vh - var(--header-height));
  }
  .hero-slide-layout {
    padding: 2rem 0;
  }
  .hero-slide-text h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin-bottom: 0.5rem;
  }
  .hero-slide-text .lead {
    font-size: 0.9rem;
    max-width: 100%;
    line-height: 1.6;
  }
  .hero-tagline {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }
  .hero-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }
  .hero-cta {
    gap: 0.5rem;
    margin: 1.25rem 0;
  }
  .btn-hero-primary {
    padding: 0.65rem 1.2rem;
    font-size: 0.65rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-hero-outline {
    padding: 0.65rem 1.2rem;
    font-size: 0.65rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-stats {
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
  .hero-stat strong {
    font-size: 1.25rem;
  }
  .hero-stat span {
    font-size: 0.65rem;
  }
  .hero-features {
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
  }
  .hero-features li {
    gap: 0.5rem;
    padding: 0.2rem 0;
  }
  .hero-features i {
    font-size: 0.9rem;
  }
  .hero-logo-img {
    width: 80px;
  }
  .hero-logo-ring {
    width: 120px;
    height: 120px;
    border-width: 1.5px;
  }
  .hero-logo-glow {
    width: 140px;
    height: 140px;
  }
  .hero-logo-caption {
    font-size: 0.65rem;
    margin-top: 0.4rem;
  }
  .hero-carousel-control {
    width: 24px;
    height: 24px;
  }
  .hero-carousel-control .hero-control-inner {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  .hero-carousel-indicators {
    gap: 1.5px;
    bottom: 10px;
  }
  .hero-carousel-indicators button {
    width: 5px;
    height: 5px;
  }
  .hero-scroll-indicator {
    font-size: 0.8rem;
    gap: 0.2rem;
    bottom: 8px;
  }
  .hero-scroll-indicator i {
    font-size: 1rem;
  }
  .hero-deco-gear {
    width: 100px;
    height: 100px;
    top: 8%;
    right: 5%;
    opacity: 0.05;
  }
  .hero-deco-wave {
    width: 150px;
    height: 120px;
    opacity: 0.05;
  }
}
