/* ============================================================
   NEXORA INTERNATIONAL — COMPONENTS
   Buttons, Header, Footer, Nav, Cards, Forms
   ============================================================ */


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
  min-width: 44px;
  min-height: 44px;
}

/* Primary: Gold fill */
.btn--primary {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--primary:active {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--primary:active {
  background-color: var(--gold);
}

.btn--primary:disabled,
.btn--primary[aria-disabled="true"] {
  background-color: var(--gray-200);
  border-color: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  transform: none;
}

/* Secondary: Navy fill */
.btn--secondary {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--secondary:active {
  background-color: var(--navy-mid);
  border-color: var(--navy-mid);
}

.btn--secondary:active {
  background-color: var(--navy-mid);
}

/* Outline Navy */
.btn--outline {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:active {
  background-color: var(--navy);
  color: var(--white);
}

/* Outline White (for navy sections) */
.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-white:active {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* Ghost text link style */
.btn--text {
  padding: 0;
  background: none;
  border: none;
  color: var(--navy);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  
}

.btn--text:active {
  color: var(--gold);
  gap: var(--sp-3);
}

.btn--text--light { color: var(--white); }
.btn--text--light:active { color: var(--gold-light); }

/* Loading state */
.btn--loading {
  pointer-events: none;
  
}

.btn--loading::after {
  content: '...';
  display: inline-block;
  margin-left: var(--sp-1);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
}

.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-100);
  
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--sp-8);
}

/* Logo — text treatment (user will replace with image) */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}


.site-logo__image {
  display: block;
  height: 48px;
  width: auto;
}


.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo__name {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-logo__name span {
  color: var(--gold);
}

.site-logo__sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 2px;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  
  white-space: nowrap;
}

.main-nav__link:active,
.main-nav__link.active {
  color: var(--navy);
}

.main-nav__link.active::after {
  content: '';
  display: block;
  height: 2px;
  background-color: var(--gold);
  position: absolute;
  bottom: 0;
  left: var(--sp-4);
  right: var(--sp-4);
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background-color: var(--white);
  overflow-y: auto;
  z-index: 850;
  border-top: 1px solid var(--gray-100);
  padding: var(--sp-6) var(--gutter) var(--sp-8);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__link {
  display: block;
  padding: var(--sp-4) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-100);
  
}

.mobile-nav__link:active,
.mobile-nav__link.active {
  color: var(--navy);
}

.mobile-nav__cta {
  margin-top: var(--sp-8);
}

@media (max-width: 1024px) {
  .main-nav,
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
}


.site-footer {
  background-color: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding-top: var(--sp-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: clamp(var(--sp-8), 4vw, var(--sp-16));
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand__desc {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-top: var(--sp-4);
  max-width: 34ch;
}

.footer-logo__name {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-logo__name span { color: var(--gold); }

.footer-logo__sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

.footer-gold-rule {
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--gold);
  margin-top: var(--sp-4);
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  
}

.footer-links a:active {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  
}

.footer-contact-item a:active { color: var(--gold-light); }



.footer-bottom {
  padding-block: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.40);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.40);
  
}

.footer-legal-links a:active {
  color: rgba(255,255,255,0.70);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


.service-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--gray-100);
}

.service-row:last-child {
  border-bottom: 1px solid var(--gray-100);
}

.service-row__number {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.service-row__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--sp-1);
}

.service-row__desc {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.65;
}


.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-8);
  position: relative;
}

.process-step:last-child { padding-bottom: 0; }

.process-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.process-step__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step__line {
  flex: 1;
  width: 2px;
  background-color: var(--gray-200);
  margin-top: var(--sp-2);
}

.process-step:last-child .process-step__line { display: none; }

.process-step__content { padding-top: var(--sp-2); }

.process-step__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--sp-1);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.65;
}


.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,0.10);
}

.trust-item:last-child { border-right: none; }

.trust-item__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.trust-item__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-1);
  }

  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(4) { border-right: none; }
  .trust-item:last-child { grid-column: 1 / -1; border-right: none; }
}

@media (max-width: 480px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
}


.career-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}

.career-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.career-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 30, 71, 0.90) 0%, transparent 55%);
}

.career-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6);
}

.career-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.career-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}


.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}

.form-label span[aria-hidden="true"] { color: #C0392B; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--charcoal);
  background-color: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  
    border-color var(--transition-base),
    box-shadow var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
}

.form-control::placeholder { color: var(--gray-400); }

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(6, 43, 99, 0.08);
}

.form-control.is-error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-control.is-valid {
  border-color: #27AE60;
}

.form-error {
  display: none;
  font-size: var(--text-xs);
  color: #C0392B;
  margin-top: var(--sp-1);
  font-weight: 500;
}

.form-error.visible { display: block; }

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6276' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

@media (max-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* Form status messages */
.form-status {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--sp-4);
}

.form-status.success {
  display: block;
  background-color: #EAFAF1;
  border: 1.5px solid #27AE60;
  color: #1A6B3A;
}

.form-status.error {
  display: block;
  background-color: #FDEDEC;
  border: 1.5px solid #E74C3C;
  color: #922B21;
}


.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
}

.industry-item__icon {
  width: 36px;
  height: 36px;
  color: var(--navy);
}

.industry-item__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background-color: var(--navy);
  padding-block: clamp(var(--sp-12), 8vw, var(--sp-20));
  position: relative;
  overflow: hidden;
}

/* Subtle world-map watermark */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' width='1200' height='600'%3E%3Cellipse cx='600' cy='300' rx='580' ry='280' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='600' cy='300' rx='400' ry='200' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cline x1='20' y1='300' x2='1180' y2='300' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3Cline x1='600' y1='20' x2='600' y2='580' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  display: block;
}

.page-hero__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.03em;
}

.page-hero__desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.7;
}

/* Gold accent line */
.page-hero .gold-rule {
  margin-bottom: var(--sp-6);
}

/* ===========================
   SPLIT SECTION (image + content)
   =========================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
}

.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }

.split-section__image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) clamp(var(--sp-8), 6vw, var(--sp-16));
}

.split-section__content--navy {
  background-color: var(--navy);
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .split-section__image { min-height: 280px; }
}


.cta-banner {
  background-color: var(--navy);
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-20));
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to right, transparent, rgba(200, 148, 26, 0.06));
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-8);
  align-items: center;
}

.cta-banner__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.cta-banner__desc {
  color: rgba(255,255,255,0.70);
  font-size: var(--text-lg);
  max-width: 55ch;
}

@media (max-width: 768px) {
  .cta-banner__inner {
    grid-template-columns: 1fr;
  }
}


.destination-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.destination-tab {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  background-color: var(--white);
}

.destination-tab:active {
  border-color: var(--navy);
  color: var(--navy);
}

.destination-tab.active {
  border-color: var(--navy);
  background-color: var(--navy);
  color: var(--white);
}

.destination-info {
  display: none;
}

.destination-info.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.destination-info__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.destination-info__region {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  display: block;
}

.destination-info__desc {
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

.destination-services {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.destination-service {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
}

.destination-service::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .destination-info.active {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   SPLIT SECTION (image + content)
   =========================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-section--reverse .split-section__image {
  order: -1;
}

.split-section__content {
  padding: clamp(var(--sp-10), 8vw, var(--sp-20));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--off-white);
}

.split-section__content--navy {
  background-color: var(--navy);
}

.split-section__image {
  position: relative;
  overflow: hidden;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section__image {
    min-height: 300px;
    order: -1 !important;
  }

  .split-section--reverse .split-section__image {
    order: -1;
  }
}


.gold-rule--center {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--gold);
  margin: 0 auto var(--sp-6);
}



