/* ==========================================================================
   GyanDark Trading — Design System
   ========================================================================== */

:root {
  --color-navy: #082b63;
  --color-navy-dark: #051c42;
  --color-royal: #1f76d2;
  --color-gold: #e8a034;
  --color-gold-light: #f4c778;
  --color-mist: #f8f9fb;
  --color-ink: #0b1220;
  --color-footer: #05122b;
  --color-white: #ffffff;

  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --container-max: 1280px;
  --header-height: 84px;

  --shadow-sm: 0 2px 10px -2px rgba(8, 43, 99, 0.08);
  --shadow-md: 0 12px 30px -10px rgba(8, 43, 99, 0.15);
  --shadow-lg: 0 20px 50px -12px rgba(8, 43, 99, 0.25);
  --shadow-gold: 0 8px 30px -8px rgba(232, 160, 52, 0.6);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-mist);
  color: var(--color-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 0.9rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin: 0;
  font-weight: 800;
  color: var(--color-navy);
}

p {
  margin: 0;
}

::selection {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-mist);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--color-royal), var(--color-navy));
  border-radius: 999px;
}

/* ---- Layout utilities ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 6rem 0;
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }
}

.section-lg {
  padding: 7.5rem 0;
}

.bg-white {
  background: var(--color-white);
}
.bg-mist {
  background: var(--color-mist);
}
.bg-navy {
  background: var(--color-navy-dark);
}

.bg-gradient-navy {
  background: linear-gradient(135deg, #051c42 0%, #082b63 45%, #1f76d2 100%);
}

.text-gradient-gold {
  background: linear-gradient(90deg, #f4c778, #e8a034 55%, #c97f1e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.relative {
  position: relative;
}

/* ---- Section heading ---- */
.section-heading {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-heading.center {
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-royal);
}
.section-heading.light .eyebrow {
  color: var(--color-gold-light);
}
.section-heading .eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}
.section-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-heading.light h2 {
  color: var(--color-white);
}
.section-heading p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.6);
}
.section-heading.light p {
  color: rgba(255, 255, 255, 0.7);
}

.section-head-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .section-head-row {
    flex-direction: row;
    align-items: flex-end;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-royal);
  white-space: nowrap;
  transition: color 0.25s;
}
.link-arrow:hover {
  color: var(--color-navy);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.8rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -8px rgba(232, 160, 52, 0.75);
}
.btn-secondary {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 8px 30px -10px rgba(8, 43, 99, 0.6);
}
.btn-secondary:hover {
  background: var(--color-navy-dark);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
}
.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px -4px rgba(5, 28, 66, 0.25);
  transition: transform 0.3s;
}
.logo:hover .logo-badge {
  transform: scale(1.04);
}
.logo-badge img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
@media (min-width: 1100px) {
  .nav-links {
    display: flex;
  }
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  transition: color 0.25s;
}
.scrolled .nav-link {
  color: rgba(8, 43, 99, 0.8);
}
.nav-link:hover {
  color: var(--color-white);
}
.scrolled .nav-link:hover {
  color: var(--color-royal);
}
.nav-link.active {
  color: var(--color-gold);
}
.scrolled .nav-link.active {
  color: var(--color-royal);
}

/* ---- Nav dropdown (desktop mega-menu) ---- */
.nav-item {
  position: relative;
  display: inline-flex;
}
.nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-caret {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 560px;
  max-width: 90vw;
  background: var(--color-white);
  border-radius: 1.1rem;
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 60;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem;
}
.nav-dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.65rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-grid a:hover {
  background: var(--color-mist);
  color: var(--color-royal);
}
.nav-dropdown-grid a i {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--color-royal);
}
.nav-dropdown-viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(8, 43, 99, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-royal);
}
.nav-dropdown-viewall:hover {
  color: var(--color-navy);
}

.header-cta {
  display: none;
}
@media (min-width: 1100px) {
  .header-cta {
    display: inline-flex;
  }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--color-white);
  transition: color 0.3s;
}
.scrolled .mobile-toggle {
  color: var(--color-navy);
}
@media (min-width: 1100px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle .icon-close {
  display: none;
}
.mobile-toggle.is-open .icon-menu {
  display: none;
}
.mobile-toggle.is-open .icon-close {
  display: block;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  transition: max-height 0.35s var(--ease);
}
@media (min-width: 1100px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.is-open {
  max-height: 1400px;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu .nav-link {
  color: rgba(8, 43, 99, 0.8);
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
}
.mobile-menu .nav-link:hover {
  background: var(--color-mist);
  color: var(--color-royal);
}
.mobile-menu .btn {
  margin-top: 0.5rem;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
}
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}
.mobile-dropdown-toggle .nav-caret {
  transition: transform 0.3s var(--ease);
}
.mobile-nav-item.open .mobile-dropdown-toggle .nav-caret {
  transform: rotate(180deg);
}
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.mobile-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.25rem 0.25rem 0.5rem 1rem;
}
.mobile-dropdown-inner a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(8, 43, 99, 0.7);
}
.mobile-dropdown-inner a:hover {
  background: var(--color-mist);
  color: var(--color-royal);
}
.mobile-dropdown-inner a i {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-royal);
}
.mobile-dropdown-inner .mobile-viewall {
  margin-top: 0.35rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(8, 43, 99, 0.08);
  font-weight: 700;
  color: var(--color-royal);
}

/* ==========================================================================
   Page Hero (interior pages)
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 9rem 0 4rem;
}
@media (min-width: 640px) {
  .page-hero {
    min-height: 58vh;
  }
}
.page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}
.page-hero .hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(232, 160, 52, 0.15), transparent 45%);
}
.page-hero .container {
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover {
  color: var(--color-gold);
}
.breadcrumb .current {
  color: var(--color-white);
}
.page-hero h1 {
  max-width: 46rem;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.1;
  color: var(--color-white);
}
.page-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}
.page-hero .hero-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}
.page-hero .hero-desc {
  max-width: 40rem;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Hero (Homepage)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy-dark);
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
}
#heroParallax {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-navy-dark), rgba(5, 28, 66, 0.8) 50%, rgba(5, 28, 66, 0.4));
}
.hero-gradient-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #051c42 0%, #082b63 45%, #1f76d2 100%);
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(232, 160, 52, 0.25), transparent 50%);
}
.hero-content {
  position: relative;
  width: 100%;
  padding: 7rem 0 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}
.hero h1 {
  max-width: 50rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-white);
}
.hero-lead {
  max-width: 38rem;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 42rem;
  margin-top: 4rem;
}
@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hero-stat {
  border-left: 2px solid rgba(232, 160, 52, 0.6);
  padding-left: 1rem;
}
.hero-stat .stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--color-white);
}
.hero-stat .stat-label {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, transparent, var(--color-mist));
}

/* ==========================================================================
   Logo Marquee
   ========================================================================== */

.marquee-section {
  border-top: 1px solid rgba(8, 43, 99, 0.05);
  border-bottom: 1px solid rgba(8, 43, 99, 0.05);
  background: var(--color-white);
  padding: 2.5rem 0;
}
.marquee-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.4);
  margin-bottom: 1.5rem;
}
.marquee-viewport {
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: marquee 32s linear infinite;
}
.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  color: rgba(8, 43, 99, 0.25);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   About Preview (split)
   ========================================================================== */

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.about-photo-wrap {
  position: relative;
  max-width: 32rem;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 14rem;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  display: none;
}
@media (min-width: 640px) {
  .about-badge {
    display: block;
  }
}
.about-badge .big {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--color-navy);
}
.about-badge p {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(11, 18, 32, 0.6);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 640px) {
  .check-list {
    grid-template-columns: 1fr 1fr;
  }
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(11, 18, 32, 0.7);
}
.check-list svg {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

/* ==========================================================================
   Cards: Services / Industries
   ========================================================================== */

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card-service {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.1rem;
  border: 1px solid rgba(8, 43, 99, 0.05);
  background: var(--color-white);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}
.card-service:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #051c42 0%, #082b63 45%, #1f76d2 100%);
  color: var(--color-white);
  transition: transform 0.35s var(--ease);
}
.card-service:hover .card-icon {
  transform: scale(1.1) rotate(3deg);
}
.card-service h3 {
  margin-top: 1.25rem;
  font-size: 1.1rem;
}
.card-service p {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.6);
}
.card-service .learn-more {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-royal);
  opacity: 0;
  transition: opacity 0.3s;
}
.card-service:hover .learn-more {
  opacity: 1;
}

.card-industry {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
}
.card-industry:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}
.card-industry .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 160, 52, 0.15);
  color: var(--color-gold-light);
}
.card-industry:hover .card-icon {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}
.card-industry h3 {
  font-size: 1rem;
  color: var(--color-white);
}
.card-industry p {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Why Choose Us (timeline)
   ========================================================================== */

.why-timeline {
  position: relative;
  margin-top: 4rem;
}
.why-timeline .spine {
  display: none;
}
@media (min-width: 1024px) {
  .why-timeline .spine {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, rgba(8, 43, 99, 0.15), transparent);
  }
}
.why-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .why-row {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding: 2rem 0;
    position: relative;
  }
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1.1rem;
  transition: background 0.3s;
}
.why-item:hover {
  background: var(--color-mist);
}
@media (min-width: 1024px) {
  .why-item {
    padding: 0;
  }
  .why-item:hover {
    background: transparent;
  }
  .why-row.reverse .why-item:first-child {
    grid-column: 1;
    justify-self: end;
    text-align: right;
    flex-direction: row-reverse;
  }
  .why-row:not(.reverse) .why-item:first-child {
    grid-column: 2;
  }
}
.why-item .card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.why-item h3 {
  font-size: 1.05rem;
}
.why-item p {
  margin-top: 0.35rem;
  max-width: 22rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.6);
}
.why-dot {
  display: none;
}
@media (min-width: 1024px) {
  .why-dot {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 2px solid var(--color-gold);
    background: var(--color-white);
  }
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */

.process-wrap {
  position: relative;
  margin-top: 5rem;
}
.process-line-track,
.process-line-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 2px;
  display: none;
}
@media (min-width: 1024px) {
  .process-line-track,
  .process-line-fill {
    display: block;
  }
}
.process-line-track {
  background: rgba(8, 43, 99, 0.1);
}
.process-line-fill {
  background: linear-gradient(to right, var(--color-royal), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left center;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
  }
}
.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.process-step.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .process-step {
    align-items: center;
    text-align: center;
  }
}
.process-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 2px solid var(--color-white);
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.process-node .num {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-size: 0.62rem;
  font-weight: 700;
}
.process-step h3 {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.process-step p {
  margin-top: 0.35rem;
  max-width: 11rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(11, 18, 32, 0.55);
}

/* ==========================================================================
   Stats Counter
   ========================================================================== */

.stats-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.stats-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-block .stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
}
.stat-block .stat-label {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

/* ==========================================================================
   Testimonials (Swiper)
   ========================================================================== */

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1.1rem;
  background: var(--color-white);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 43, 99, 0.05);
}
.testimonial-card .quote-icon {
  color: var(--color-gold);
}
.testimonial-card .quote-text {
  margin-top: 1rem;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.7);
}
.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--color-gold);
  margin-top: 1.5rem;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(8, 43, 99, 0.05);
  margin-top: 1rem;
  padding-top: 1rem;
}
.testimonial-person img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-royal), var(--color-navy));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.testimonial-person .name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
}
.testimonial-person .role {
  font-size: 0.75rem;
  color: rgba(11, 18, 32, 0.5);
}
.swiper {
  padding-bottom: 1rem !important;
}
.swiper-pagination-bullet {
  background: var(--color-navy);
  opacity: 0.2;
  transition: all 0.25s;
}
.swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: var(--color-gold);
  opacity: 1;
}

/* ==========================================================================
   News cards
   ========================================================================== */

.card-news {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.1rem;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 43, 99, 0.05);
  transition: box-shadow 0.3s;
}
.card-news:hover {
  box-shadow: var(--shadow-lg);
}
.card-news .news-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card-news .news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card-news:hover .news-img-wrap img {
  transform: scale(1.06);
}
.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 999px;
  background: rgba(8, 43, 99, 0.9);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  backdrop-filter: blur(4px);
}
.card-news-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.news-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(11, 18, 32, 0.45);
}
.card-news h3 {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.4;
}
.card-news:hover h3 {
  color: var(--color-royal);
}
.card-news p {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-news .read-more {
  margin-top: 1rem;
}

/* ==========================================================================
   News drawer
   ========================================================================== */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  pointer-events: none;
}
.drawer-overlay.is-open {
  pointer-events: auto;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 28, 66, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.drawer-overlay.is-open .drawer-backdrop {
  opacity: 1;
}
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(560px, 100vw);
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.drawer-overlay.is-open .drawer-panel {
  transform: translateX(0);
}
.drawer-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-white);
  color: rgba(11, 18, 32, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.drawer-close:hover {
  background: var(--color-mist);
  color: var(--color-navy);
}
.drawer-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.drawer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drawer-body {
  padding: 2rem 2.25rem 3rem;
}
.drawer-body .news-category {
  position: static;
  display: inline-block;
}
.drawer-body .news-date {
  margin-top: 1rem;
}
.drawer-body h2 {
  margin-top: 0.75rem;
  font-size: 1.6rem;
  line-height: 1.3;
}
.drawer-body .drawer-article p {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(11, 18, 32, 0.7);
}
.drawer-body .drawer-article p:first-of-type {
  margin-top: 1.5rem;
}
body.drawer-open {
  overflow: hidden;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.95;
}
.cta-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 85%, rgba(232, 160, 52, 0.2), transparent 50%);
}
.cta-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.cta-section h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--color-white);
}
.cta-section .lead {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top {
  padding: 4.5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-grid h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-about p {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s;
}
.footer-socials a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--color-gold);
}
.footer-links .view-all {
  font-weight: 600;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--color-white);
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form button {
  flex-shrink: 0;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 1.1rem;
  transition: background 0.25s;
}
.newsletter-form button:hover {
  background: var(--color-gold-light);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact svg {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}
.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 640px) {
  .footer-bottom .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer-legal-links a:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   Floating buttons
   ========================================================================== */

.float-btn {
  position: fixed;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.25s;
}
.whatsapp-btn {
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}
.back-to-top {
  bottom: 6rem;
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.85);
  transition: all 0.25s;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: var(--color-royal);
}

/* ==========================================================================
   Quote Modal
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.is-open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 28, 66, 0.7);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 34rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1.5rem;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  animation: modalIn 0.35s var(--ease);
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: rgba(11, 18, 32, 0.5);
  transition: all 0.25s;
}
.modal-close:hover {
  background: var(--color-mist);
  color: var(--color-navy);
}
.modal-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-royal);
}
.modal-box h3 {
  margin-top: 0.5rem;
  font-size: 1.6rem;
}
.modal-box .modal-desc {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: rgba(11, 18, 32, 0.6);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.form-field {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background: var(--color-mist);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
}
.form-field:focus {
  border-color: var(--color-royal);
  box-shadow: 0 0 0 3px rgba(31, 118, 210, 0.15);
}
textarea.form-field {
  resize: none;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.file-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(11, 18, 32, 0.2);
  background: var(--color-mist);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: rgba(11, 18, 32, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.file-field:hover {
  border-color: var(--color-royal);
  color: var(--color-royal);
}
.file-field input {
  display: none;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 0;
  text-align: center;
}
.form-success.is-visible {
  display: flex;
}
.form-success .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(31, 118, 210, 0.1);
  color: var(--color-royal);
}
.form-success h3 {
  font-size: 1.5rem;
}
.form-success p {
  max-width: 22rem;
  color: rgba(11, 18, 32, 0.6);
}

/* ==========================================================================
   Reveal animation fallback (if AOS unavailable)
   ========================================================================== */

[data-aos] {
  transition-property: transform, opacity;
}

/* ==========================================================================
   Misc components: mission/vision, values, history, leadership, gallery
   ========================================================================== */

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.mv-card {
  height: 100%;
  border-radius: 1.5rem;
  padding: 2.5rem;
}
.mv-card.light {
  background: var(--color-mist);
  border: 1px solid rgba(8, 43, 99, 0.05);
}
.mv-card.dark {
  background: linear-gradient(135deg, #051c42 0%, #082b63 45%, #1f76d2 100%);
}
.mv-card .card-icon {
  width: 56px;
  height: 56px;
}
.mv-card.dark .card-icon {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}
.mv-card h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}
.mv-card.dark h3 {
  color: var(--color-white);
}
.mv-card p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(11, 18, 32, 0.65);
}
.mv-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.value-card {
  height: 100%;
  border-radius: 1rem;
  background: var(--color-white);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 43, 99, 0.05);
}
.value-card .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.3rem;
  color: rgba(232, 160, 52, 0.3);
}
.value-card h3 {
  margin-top: 0.75rem;
  font-size: 1.1rem;
}
.value-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.6);
}

.history-list {
  position: relative;
  margin-top: 3.5rem;
  margin-left: 0.5rem;
}
.history-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(8, 43, 99, 0.1);
}
.history-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}
.history-item:last-child {
  margin-bottom: 0;
}
.history-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid var(--color-gold);
  background: var(--color-white);
}
.history-item .year {
  flex-shrink: 0;
  width: 4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-royal);
}
.history-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.65);
}

.leader-card {
  border-radius: 1.1rem;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 43, 99, 0.05);
  transition: box-shadow 0.3s;
}
.leader-card:hover {
  box-shadow: var(--shadow-lg);
}
.leader-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.leader-card:hover .leader-photo img {
  transform: scale(1.06);
}
.leader-body {
  padding: 1.25rem;
}
.leader-body h3 {
  font-size: 1rem;
}
.leader-body .role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-royal);
}
.leader-body p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.6);
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .presence-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.presence-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  border-radius: 1rem;
  padding: 1.5rem;
}
.presence-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 160, 52, 0.15);
  color: var(--color-gold-light);
}
.presence-card .value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-white);
}
.presence-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
}
.gallery-item {
  position: relative;
  min-height: 140px;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 28, 66, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ==========================================================================
   Service detail page
   ========================================================================== */

.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(11, 18, 32, 0.7);
}
.feature-list svg {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
  }
}
.contact-form-card {
  border-radius: 1.5rem;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 43, 99, 0.05);
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-size: 1.6rem;
}
.contact-form-card > p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(11, 18, 32, 0.55);
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.info-card {
  border-radius: 1rem;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 43, 99, 0.05);
  padding: 1.5rem;
}
.info-card .card-icon {
  width: 44px;
  height: 44px;
}
.info-card h4 {
  margin-top: 1rem;
  font-size: 0.85rem;
}
.info-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(11, 18, 32, 0.6);
}
.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  padding: 1.5rem;
  margin-top: 1.5rem;
  transition: background 0.25s;
}
.whatsapp-card:hover {
  background: rgba(37, 211, 102, 0.15);
}
.whatsapp-card .icon-circle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 1rem;
  background: #25d366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-card h4 {
  font-size: 0.85rem;
}
.whatsapp-card p {
  font-size: 0.85rem;
  color: rgba(11, 18, 32, 0.6);
}
.map-embed {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(8, 43, 99, 0.05);
  margin-top: 1.5rem;
}
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
.contact-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.contact-socials span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
}
.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--color-white);
  color: rgba(8, 43, 99, 0.6);
  border: 1px solid rgba(8, 43, 99, 0.1);
  transition: color 0.25s;
}
.contact-socials a:hover {
  color: var(--color-royal);
}

/* ==========================================================================
   Coming soon / Legal pages
   ========================================================================== */

.coming-soon-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.coming-soon-body .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(31, 118, 210, 0.1);
  color: var(--color-royal);
}
.coming-soon-body h2 {
  font-size: 1.8rem;
}
.coming-soon-body p {
  max-width: 28rem;
  color: rgba(11, 18, 32, 0.6);
}
.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.legal-content h2 {
  font-size: 1.3rem;
}
.legal-content p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(11, 18, 32, 0.65);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
}
@media (min-width: 900px) {
  .faq-categories {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
}
.faq-category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.faq-category-title .card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.faq-category-title h3 {
  font-size: 1.05rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: 0.9rem;
  background: var(--color-white);
  border: 1px solid rgba(8, 43, 99, 0.07);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open {
  border-color: rgba(31, 118, 210, 0.25);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-navy);
}
.faq-question .chevron {
  flex-shrink: 0;
  display: flex;
  color: var(--color-royal);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.62);
}
.faq-cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 4rem;
  border-radius: 1.25rem;
  background: var(--color-mist);
  border: 1px solid rgba(8, 43, 99, 0.06);
  padding: 2rem 2.25rem;
}
.faq-cta-banner h3 {
  font-size: 1.2rem;
}
.faq-cta-banner p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(11, 18, 32, 0.6);
}

/* ==========================================================================
   Utility
   ========================================================================== */

.text-center {
  text-align: center;
}
.mt-lg {
  margin-top: 2.5rem;
}
.hidden-mobile {
  display: none;
}
@media (min-width: 640px) {
  .hidden-mobile {
    display: inline-flex;
  }
}
