* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --gold: #4FA3A0;
  --gold-light: #6BB8B5;
  --gold-pale: #C8E7E5;
  --dark: #0A1419;
  --dark-2: #111D28;
  --dark-3: #1A2B38;
  --mid: #4A6B7D;
  --light: #F5F8FA;
  --white: #FFFFFF;
  --text-muted: #7E95A5;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
}

html {
  scroll- smooth
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 20, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79, 163, 160, 0.15)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.nav-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: var(--gold)
}

.nav-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white)
}

.nav-brand span {
  color: var(--gold)
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s
}

.nav-links a:hover {
  color: var(--gold)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px
}

.btn-nav {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s
}

.btn-nav:hover {
  background: var(--gold-light)
}

/* DROPDOWN MENU */
.nav-links li {
  position: relative
}

.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 20, 25, 0.95);
  border: 1px solid rgba(79, 163, 160, 0.3);
  backdrop-filter: blur(12px);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  padding: 12px 0;
  border-radius: 4px;
  margin-top: 4px
}

.nav-links .dropdown li {
  display: block
}

.nav-links .dropdown a {
  padding: 10px 20px;
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s
}

.nav-links .dropdown a:hover {
  color: var(--gold)
}

.dropdown-parent:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 0
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden
}

.hero-left {
  padding: 140px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(79, 163, 160, 0.4);
  margin-bottom: 40px;
  width: fit-content
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold)
}

.hero-badge span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold)
}

.hero-title {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em
}

.hero-title em {
  font-style: italic;
  color: var(--gold)
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.8
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center
}

.btn-primary {
  padding: 16px 40px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px)
}

.btn-ghost {
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold)
}

.hero-stat-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px
}

.hero-right {
  position: relative;
  overflow: hidden
}

.hero-img-container {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1a23 0%, #152c38 100%)
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 30%)
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-pattern {
  width: 100%;
  height: 100%;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px
}

.hero-cert {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: rgba(79, 163, 160, 0.1);
  border: 1px solid rgba(79, 163, 160, 0.3);
  padding: 20px 24px;
  text-align: center
}

.hero-cert-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-cert-text {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.4
}

.floating-card {
  position: absolute;
  top: 48px;
  right: 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(79, 163, 160, 0.2);
  padding: 16px 20px;
  min-width: 200px
}

.fc-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px
}

.fc-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white)
}

.fc-sub {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px
}

/* SECTIONS */
section {
  padding: 120px 80px
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px
}

.section-title {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px
}

.section-title em {
  font-style: italic;
  color: var(--gold)
}

.section-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.9
}

/* SERVICES */
.services {
  background: var(--dark-2)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.06)
}

.service-card {
  background: var(--dark-2);
  padding: 48px 40px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s
}

.service-card:hover {
  background: var(--dark-3)
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(79, 163, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5
}

.service-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 12px
}

.service-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8
}

.service-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(79, 163, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s
}

.service-card:hover .service-arrow {
  opacity: 1
}

.service-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none
}

/* JOURNEY */
.journey {
  background: var(--dark);
  overflow: hidden
}

.journey-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0
}

.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: all 0.3s;
  cursor: pointer
}

.journey-step:hover {
  background: rgba(79, 163, 160, 0.03)
}

.journey-step-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  opacity: 0.5;
  padding-top: 4px;
  letter-spacing: 0.06em
}


.journey-step-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px
}

.journey-step-badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(79, 163, 160, 0.3);
  padding: 3px 10px
}

.journey-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 560px
}

.journey-visual {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center
}

.journey-timeline {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent)
}

/* GALLERY */
.gallery {
  background: var(--dark-2)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 64px
}

.gallery-item {
  background: var(--dark-3);
  overflow: hidden;
  cursor: pointer;
  position: relative
}


.gallery-item img {
  transition: transform 0.3s;
}

.gallery-item :hover img {
  transform: scale(1.05);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2
}

.gallery-inner {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10212c, #1a3d4d)
}

.gallery-item:first-child .gallery-inner {
  aspect-ratio: auto;
  height: 100%
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.gallery-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px
}

.gallery-placeholder {
  font-family: var(--serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.15);
  text-align: center
}

.gallery-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--dark);
  padding: 120px 80px
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  position: relative
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1
}

.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px
}

.t-star {
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
}

.t-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-style: italic
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark)
}

.t-name {
  font-size: 14px;
  font-weight: 500
}

.t-meta {
  font-size: 12px;
  color: var(--text-muted)
}

/* TRUST */
.trust {
  background: var(--dark-2);
  padding: 80px
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06)
}

.trust-item {
  background: var(--dark-2);
  padding: 48px 32px;
  text-align: center
}

.trust-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1
}

.trust-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.04em
}

/* CONTACT */
.contact {
  background: var(--dark);
  padding: 120px 80px
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start
}

.form-group {
  margin-bottom: 24px
}

.form-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  transition: border 0.2s;
  outline: none
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold)
}

.form-select {
  appearance: none;
  cursor: pointer
}

.form-textarea {
  min-height: 120px;
  resize: vertical
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px
}

.form-submit:hover {
  background: var(--gold-light)
}


.contact-info-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px
}

.contact-info-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 48px;
  line-height: 1.8
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: border-color 0.2s
}

.contact-channel:hover {
  border-color: var(--gold)
}

.channel-icon {
  width: 40px;
  height: 40px;
  background: rgba(79, 163, 160, 0.1);
  border: 1px solid rgba(79, 163, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.channel-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5
}

.channel-name {
  font-size: 14px;
  font-weight: 500
}

.channel-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px
}

/* LANGUAGES */
.lang-bar {
  background: rgba(79, 163, 160, 0.08);
  border-top: 1px solid rgba(79, 163, 160, 0.15);
  border-bottom: 1px solid rgba(79, 163, 160, 0.15);
  padding: 16px 80px;
  display: flex;
  align-items: center;
  gap: 32px
}

.lang-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted)
}

.lang-list {
  display: flex;
  gap: 24px;
  list-style: none
}

.lang-list li {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0.7
}

.lang-list li:first-child {
  opacity: 1
}

.lang-list li:hover {
  opacity: 1
}

/* FOOTER */
footer {
  background: var(--dark-2);
  padding: 64px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px
}

.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px
}

.footer-brand span {
  color: var(--gold)
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px
}

.footer-heading {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s
}

.footer-links a:hover {
  color: var(--white)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted)
}

.footer-cert {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(79, 163, 160, 0.3);
  padding: 6px 16px
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s
}

.whatsapp-btn:hover {
  transform: scale(1.1)
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white
}

/* LANG TOGGLE */
.lang-toggle {
  display: flex;
  gap: 8px
}

.lang-btn {
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans)
}

.lang-btn.active,
.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* CERT BANNER */
.cert-banner {
  background: linear-gradient(90deg, rgba(79, 163, 160, 0.1), rgba(79, 163, 160, 0.05));
  border-top: 1px solid rgba(79, 163, 160, 0.2);
  border-bottom: 1px solid rgba(79, 163, 160, 0.2);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px
}

.cert-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5
}

.cert-item span {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7)
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.6
  }
}

.hero-left>* {
  animation: fadeUp 0.7s ease both
}

.hero-badge {
  animation-delay: 0.1s
}

.hero-title {
  animation-delay: 0.2s
}

.hero-sub {
  animation-delay: 0.3s
}

.hero-actions {
  animation-delay: 0.4s
}

.hero-stats {
  animation-delay: 0.5s
}

/* Scroll-reveal base states */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1)
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1)
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.5s ease, transform 0.5s ease
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1)
}

.float-animation {
  animation: float 3s ease-in-out infinite
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite
}

/* ═══════════════════════════════════════════════════
   BLOG — SHARED
═══════════════════════════════════════════════════ */

.blog-cat-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(79, 163, 160, 0.4);
  padding: 4px 12px;
  margin-bottom: 16px
}

.blog-cat-tag--overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 20, 25, 0.75);
  backdrop-filter: blur(4px);
  margin-bottom: 0;
  border-color: rgba(79, 163, 160, 0.5)
}

.blog-cat-tag--sm {
  font-size: 9px;
  padding: 3px 8px;
  margin-bottom: 6px
}

.blog-meta-date,
.blog-meta-read {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em
}

.blog-meta-sep {
  color: rgba(79, 163, 160, 0.4);
  font-size: 12px
}

/* ═══════════════════════════════════════════════════
   BLOG LISTING PAGE
═══════════════════════════════════════════════════ */

/* Page Hero */
.blog-page-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.blog-page-hero__inner {
  max-width: 720px
}

.blog-page-hero__title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px
}

.blog-page-hero__title em {
  font-style: italic;
  color: var(--gold)
}

.blog-page-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 560px
}

/* Featured Post */
.blog-featured-section {
  padding: 80px 80px 0
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px;
  text-decoration: none;
  transition: border-color 0.3s
}

.blog-featured-card:hover {
  border-color: rgba(79, 163, 160, 0.4)
}

.blog-featured-img {
  aspect-ratio: 4/3;
  overflow: hidden
}

.blog-featured-img-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1a23 0%, #1a3d4d 50%, #0f2a35 100%);
  transition: transform 0.5s ease
}

.blog-featured-card:hover .blog-featured-img-bg {
  transform: scale(1.04)
}

.blog-featured-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px
}

.blog-featured-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin-bottom: 20px
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.blog-read-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s
}

.blog-featured-card:hover .blog-read-link {
  letter-spacing: 0.16em
}

/* Filter Row */
.blog-grid-section {
  padding: 64px 80px 80px
}

.blog-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.blog-filter-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark)
}

/* Blog Cards Grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px
}

.blog-cards-grid--3 {
  grid-template-columns: repeat(3, 1fr)
}

.blog-card {
  display: flex;
  flex-direction: column
}

.blog-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 20px;
  text-decoration: none
}

.blog-card-img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease
}

.blog-card-img-wrap:hover .blog-card-img {
  transform: scale(1.05)
}

.blog-card-img--a {
  background: linear-gradient(135deg, #0d1a23, #1a3d4d)
}

.blog-card-img--b {
  background: linear-gradient(135deg, #0f2030, #1a3a50)
}

.blog-card-img--c {
  background: linear-gradient(135deg, #152030, #2a4a5a)
}

.blog-card-img--d {
  background: linear-gradient(135deg, #1a1a2e, #2d4a6a)
}

.blog-card-img--e {
  background: linear-gradient(135deg, #0a1a20, #1a3530)
}

.blog-card-img--f {
  background: linear-gradient(135deg, #1a0d28, #2a3a5a)
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 12px
}

.blog-card-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s
}

.blog-card-title a:hover {
  color: var(--gold)
}

.blog-card-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8
}

.blog-load-wrap {
  text-align: center;
  margin-top: 56px
}

/* Newsletter */
.blog-newsletter {
  background: rgba(79, 163, 160, 0.07);
  border-top: 1px solid rgba(79, 163, 160, 0.15);
  border-bottom: 1px solid rgba(79, 163, 160, 0.15);
  padding: 56px 80px
}

.blog-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 900px
}

.blog-newsletter__title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2
}

.blog-newsletter__title em {
  font-style: italic;
  color: var(--gold)
}

.blog-newsletter__form {
  display: flex;
  gap: 12px
}

.blog-newsletter__input {
  flex: 1
}

.blog-newsletter__btn {
  white-space: nowrap;
  padding: 14px 28px
}

/* ═══════════════════════════════════════════════════
   BLOG DETAIL PAGE
═══════════════════════════════════════════════════ */

/* Article Hero */
.article-hero-section {
  background: var(--dark-2);
  padding: 120px 80px 0;
  border-bottom: 1px solid rgba(79, 163, 160, 0.1)
}

.article-hero-inner {
  max-width: 860px;
  padding-bottom: 40px
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px
}

.article-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s
}

.article-breadcrumb a:hover {
  color: var(--gold)
}

.article-hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px
}

.article-hero-title em {
  font-style: italic;
  color: var(--gold)
}

.article-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07)
}

.article-author-row {
  display: flex;
  align-items: center;
  gap: 14px
}

.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  flex-shrink: 0
}

.article-author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white)
}

.article-author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px
}

.article-hero-info {
  display: flex;
  align-items: center;
  gap: 8px
}

.article-dot {
  color: rgba(79, 163, 160, 0.4)
}

.article-cover-wrap {
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 40px;
  aspect-ratio: 21/7;
  overflow: hidden
}

.article-cover-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1520 0%, #0d2535 40%, #1a3a4d 100%)
}

/* Article Layout */
.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  padding: 72px 80px;
  max-width: 1200px;
  margin-inline: auto;
  align-items: start
}

/* Article Body */
.article-body {
  min-width: 0
}

.article-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.article-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 20px
}

.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--white);
  margin: 48px 0 16px;
  line-height: 1.2
}

.article-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin: 28px 0 10px
}

.article-blockquote {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding: 16px 0 16px 28px;
  margin: 40px 0;
  line-height: 1.6
}

.article-figure {
  margin: 40px 0
}

.article-figure-bg {
  width: 100%;
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, #0d1a23, #1a3d4d, #0f2a35);
  margin-bottom: 12px
}

.article-figure figcaption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.03em
}

.article-cta-panel {
  background: var(--dark-2);
  border: 1px solid rgba(79, 163, 160, 0.2);
  border-left: 3px solid var(--gold);
  padding: 40px;
  margin-top: 56px
}

.article-cta-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin: 8px 0 12px
}

.article-cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 24px
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.sidebar-widget {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px
}

.sidebar-widget--cta {
  border-color: rgba(79, 163, 160, 0.25)
}

.sidebar-widget-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px
}

.sidebar-author-block {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.sidebar-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  flex-shrink: 0
}

.sidebar-author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px
}

.sidebar-author-bio {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7
}

.sidebar-proc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(79, 163, 160, 0.05);
  border: 1px solid rgba(79, 163, 160, 0.15);
  text-decoration: none;
  transition: border-color 0.2s
}

.sidebar-proc-card:hover {
  border-color: var(--gold)
}

.sidebar-proc-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(79, 163, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sidebar-proc-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold)
}

.sidebar-proc-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--white)
}

.sidebar-proc-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px
}

.sidebar-proc-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0
}

.sidebar-posts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0
}

.sidebar-posts-list li+li {
  border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.sidebar-posts-list li a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  transition: color 0.2s
}

.sidebar-posts-list li a p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 4px;
  transition: color 0.2s
}

.sidebar-posts-list li a:hover p {
  color: var(--gold)
}

.sidebar-post-date {
  font-size: 11px;
  color: var(--text-muted)
}

.sidebar-cta-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 16px
}

.sidebar-cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s
}

.sidebar-cta-wa:hover {
  color: #25D366
}

.sidebar-cta-wa svg {
  width: 18px;
  height: 18px;
  fill: #25D366;
  flex-shrink: 0
}

/* Related Posts */
.related-posts-section {
  background: var(--dark-2);
  padding: 80px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.related-posts-section .section-title {
  margin-bottom: 48px
}

/* ═══════════════════════════════════════════════════
   BLOG RESPONSIVE
═══════════════════════════════════════════════════ */

@media(max-width:1024px) {
  nav {
    padding: 0 24px
  }

  .hamburger {
    display: flex
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 20, 25, 0.98);
    backdrop-filter: blur(12px);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(79, 163, 160, 0.15);
    list-style: none;
    padding: 0
  }

  .lang-toggle {
    margin: 12px 0;
  }

  .nav-links.active {
    max-height: 100vh;
    z-index: 99;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(79, 163, 160, 0.1)
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 12px
  }

  .nav-links .dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(79, 163, 160, 0.05);
    border: none;
    backdrop-filter: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding: 0;
    border-radius: 0;
    margin-top: 0
  }

  .dropdown-parent:hover .dropdown,
  .dropdown-parent.active .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 8px 0
  }

  .nav-links .dropdown a {
    padding: 10px 40px
  }

  .nav-cta {
    right: 0;
    width: calc(100% - 48px);
    border-top: 1px solid rgba(79, 163, 160, 0.15);
    padding: 12px 24px;
    gap: 0;
    flex-direction: column
  }

  .btn-nav {
    width: 100%
  }

  .hero {
    grid-template-columns: 1fr
  }

  .hero-right {
    display: none
  }

  .hero-left {
    padding: 100px 24px 64px
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  section {
    padding: 60px 24px
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr
  }

  .contact-inner {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .journey-header {
    grid-template-columns: 1fr
  }

  .testimonials,
  .contact,
  .trust,
  footer,
  .cert-banner,
  .lang-bar {
    padding: 20px 20px;
  }

  .cert-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .lang-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .lang-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    width: 100%;
  }

  /* Blog responsive — tablet */
  .blog-page-hero,
  .blog-featured-section,
  .blog-grid-section,
  .blog-newsletter,
  .related-posts-section {
    padding-left: 24px;
    padding-right: 24px
  }

  .blog-page-hero {
    padding-top: 100px;
    padding-bottom: 48px
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px
  }

  .blog-cards-grid,
  .blog-cards-grid--3 {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .blog-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .blog-newsletter__form {
    flex-direction: column
  }

  .article-hero-section {
    padding: 100px 24px 0
  }

  .article-layout-grid {
    grid-template-columns: 1fr;
    padding: 48px 24px
  }

  .article-sidebar {
    position: static
  }

  .related-posts-section {
    padding-top: 56px;
    padding-bottom: 56px
  }

  .blog-filter-row {
    gap: 6px
  }
}

@media(max-width:640px) {

  .blog-cards-grid,
  .blog-cards-grid--3 {
    grid-template-columns: 1fr
  }

  .article-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .article-cover-wrap {
    aspect-ratio: 16/9
  }
}

/* ═══════════════════════════════════════════════════
   HERO SLIDER (index2)
═══════════════════════════════════════════════════ */

.hero-slider-wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark)
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.slide-bg-1 {
  background: linear-gradient(135deg, #0A1419 0%, #0d1f2c 60%, #122535 100%)
}

.slide-bg-2 {
  background: linear-gradient(135deg, #0A1419 0%, #111D28 60%, #0f2030 100%)
}

.slide-bg-3 {
  background: linear-gradient(135deg, #0A1419 0%, #1a1a2e 60%, #152030 100%)
}

.slide-left {
  position: relative;
  z-index: 2;
  padding: 140px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.slide-right {
  position: relative;
  overflow: hidden;
  z-index: 1
}

.slide-result-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.slide-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45
}

.slide-result-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 40%)
}

.slide-result-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: rgba(79, 163, 160, 0.12);
  border: 1px solid rgba(79, 163, 160, 0.35);
  backdrop-filter: blur(8px);
  padding: 20px 28px;
  text-align: center
}

.srb-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px
}

.srb-value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1
}

.srb-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px
}

.slide-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px
}

.slide-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4
}

.slide-title {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em
}

.slide-title em {
  font-style: italic;
  color: var(--gold)
}

.slide-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: 44px
}

.slide-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.slide-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.07)
}

.slide-stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold)
}

.slide-stat-lbl {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 64px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px
}

.slider-dots {
  display: flex;
  gap: 8px
}

.slider-dot {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s
}

.slider-dot.active {
  background: var(--gold);
  width: 40px
}

.slider-arrows {
  display: flex;
  gap: 8px
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: rgba(255, 255, 255, 0.6)
}

.slider-arrow:hover {
  border-color: var(--gold);
  background: rgba(79, 163, 160, 0.1);
  color: var(--gold)
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5
}

/* ═══════════════════════════════════════════════════
   PROCEDURES LISTING PAGE
═══════════════════════════════════════════════════ */

.proc-page-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.proc-page-hero__inner {
  max-width: 720px
}

.proc-page-hero__title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px
}

.proc-page-hero__title em {
  font-style: italic;
  color: var(--gold)
}

.proc-page-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 560px
}

.proc-category-section {
  padding: 80px 80px 40px
}

.proc-category-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.15);
  display: flex;
  align-items: center;
  gap: 12px
}

.proc-category-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold)
}

.proc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05)
}

.proc-card {
  background: var(--dark-2);
  padding: 40px 36px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer
}

.proc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s
}

.proc-card:hover {
  background: var(--dark-3)
}

.proc-card:hover::after {
  transform: scaleX(1)
}

.proc-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(79, 163, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px
}

.proc-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5
}

.proc-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px
}

.proc-card-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 20px
}

.proc-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.proc-meta-chip {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(79, 163, 160, 0.25);
  padding: 3px 10px
}

.proc-card-arrow {
  border: 1px solid rgba(79, 163, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  padding: 1em;
}

.proc-card:hover .proc-card-arrow {
  opacity: 1
}

.proc-card-arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none
}

/* ═══════════════════════════════════════════════════
   PROCEDURE DETAIL PAGE
═══════════════════════════════════════════════════ */

.pd-hero {
  background: var(--dark-2);
  padding: 120px 80px 0;
  border-bottom: 1px solid rgba(79, 163, 160, 0.1)
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px
}

.pd-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s
}

.pd-breadcrumb a:hover {
  color: var(--gold)
}

.pd-breadcrumb span {
  color: rgba(79, 163, 160, 0.4)
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 60px
}

.pd-hero-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(79, 163, 160, 0.35);
  padding: 4px 14px;
  margin-bottom: 20px
}

.pd-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px
}

.pd-hero-title em {
  font-style: italic;
  color: var(--gold)
}

.pd-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin-bottom: 36px
}

.pd-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap
}

.pd-quick-stats {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.pd-qs-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02)
}

.pd-qs-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(79, 163, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pd-qs-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5
}

.pd-qs-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px
}

.pd-qs-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--white)
}

/* Detail layout */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  padding: 72px 80px;
  max-width: 1280px;
  margin-inline: auto;
  align-items: start
}

.pd-main {
  min-width: 0
}

.pd-section-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.pd-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  margin-bottom: 18px
}

.pd-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0
}

.pd-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.pd-step-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  opacity: 0.5;
  padding-top: 3px
}

.pd-step-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 6px
}

.pd-step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8
}

/* Package Box */
.pd-package-box {
  background: var(--dark-2);
  border: 1px solid rgba(79, 163, 160, 0.2);
  border-left: 3px solid var(--gold);
  padding: 36px;
  margin: 40px 0
}

.pd-package-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 6px
}

.pd-package-sub {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px
}

.pd-package-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px
}

.pd-package-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7)
}

.pd-package-item-icon {
  width: 20px;
  height: 20px;
  background: rgba(79, 163, 160, 0.15);
  border: 1px solid rgba(79, 163, 160, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.pd-package-item-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5
}

.pd-package-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px
}

/* Sidebar sticky */
.pd-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.pd-form-box {
  background: var(--dark-2);
  border: 1px solid rgba(79, 163, 160, 0.2);
  padding: 32px
}

.pd-form-box-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 6px
}

.pd-form-box-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7
}

/* ═══════════════════════════════════════════════════
   LOGISTICS PAGE
═══════════════════════════════════════════════════ */

.logistics-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.logistics-section {
  padding: 80px 80px 40px
}

.logistics-intro {
  max-width: 620px;
  margin-bottom: 56px
}

.logistics-intro p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin-top: 16px
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px
}

.hotel-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: border-color 0.3s
}

.hotel-card:hover {
  border-color: rgba(79, 163, 160, 0.35)
}

.hotel-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d1a23, #1a3d4d);
  overflow: hidden;
  position: relative
}

.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.5s ease, opacity 0.3s
}

.hotel-card:hover .hotel-img img {
  transform: scale(1.04);
  opacity: 0.9
}

.hotel-stars {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 3px
}

.hotel-star-icon {
  width: 10px;
  height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
}

.hotel-body {
  padding: 28px
}

.hotel-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 6px
}

.hotel-location {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px
}

.hotel-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 20px
}

.hotel-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.hotel-amenity {
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 10px
}

/* VIP Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px
}

.fleet-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: border-color 0.3s
}

.fleet-card:hover {
  border-color: rgba(79, 163, 160, 0.35)
}

.fleet-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0f1e28, #1a3040);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.5s ease
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.05)
}

.fleet-vip-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10, 20, 25, 0.75);
  border: 1px solid rgba(79, 163, 160, 0.4);
  backdrop-filter: blur(4px);
  padding: 4px 10px
}

.fleet-body {
  padding: 22px 24px
}

.fleet-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 6px
}

.fleet-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75
}

/* Service Flow */
.logistics-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px
}

.flow-step {
  background: var(--dark-2);
  padding: 36px 28px;
  text-align: center
}

.flow-step-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px
}

.flow-step-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 8px
}

.flow-step-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75
}

/* ═══════════════════════════════════════════════════
   BEFORE / AFTER GALLERY PAGE
═══════════════════════════════════════════════════ */

.ba-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.ba-filter-section {
  padding: 48px 80px 0
}

.ba-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.ba-filter-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s
}

.ba-filter-btn:hover,
.ba-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark)
}

.ba-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 80px 80px
}

.ba-case-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: border-color 0.3s
}

.ba-case-card:hover {
  border-color: rgba(79, 163, 160, 0.3)
}

.ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative
}

.ba-img {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #0d1a23, #1a3d4d);
  overflow: hidden;
  position: relative
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ba-img-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 8px
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  opacity: 0.5;
  z-index: 2
}

.ba-case-body {
  padding: 24px
}

.ba-case-cat {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px
}

.ba-case-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px
}

.ba-case-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin-bottom: 16px
}

.ba-case-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.ba-chip {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 10px
}

.ba-disclaimer {
  padding: 32px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  text-align: center;
  line-height: 1.75
}

/* ═══════════════════════════════════════════════════
   SHARED RESPONSIVE — new pages
═══════════════════════════════════════════════════ */

@media(max-width: 1024px) {
  .hero-slide {
    grid-template-columns: 1fr
  }

  .slide-right {
    display: none
  }

  .slide-left {
    padding: 100px 24px 80px
  }

  .slider-controls {
    left: 24px;
    bottom: 24px
  }

  .proc-page-hero,
  .logistics-hero,
  .ba-hero,
  .pd-hero {
    padding: 100px 24px 48px
  }

  .proc-category-section,
  .logistics-section,
  .ba-filter-section {
    padding: 48px 24px 0
  }

  .ba-cases-grid {
    padding: 0 24px 48px
  }

  .ba-cases-grid,
  .proc-cards-grid,
  .hotels-grid {
    grid-template-columns: 1fr 1fr
  }

  .fleet-grid,
  .logistics-flow {
    grid-template-columns: 1fr 1fr
  }

  .pd-layout {
    grid-template-columns: 1fr;
    padding: 48px 24px
  }

  .pd-sidebar {
    position: static
  }

  .pd-hero {
    padding: 120px 24px 0
  }

  .pd-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media(max-width: 640px) {

  .proc-cards-grid,
  .hotels-grid,
  .fleet-grid,
  .logistics-flow,
  .ba-cases-grid {
    grid-template-columns: 1fr
  }

  .slide-stat-row {
    flex-direction: column;
    gap: 20px
  }
}

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */

.about-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px
}

.about-hero-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  margin-bottom: 18px
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05)
}

.about-pillar {
  background: var(--dark-2);
  padding: 28px 24px;
  text-align: center
}

.about-pillar-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1
}

.about-pillar-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px
}

/* Why Us */
.why-section {
  padding: 100px 80px
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px
}

.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s
}

.why-card:hover {
  border-color: rgba(79, 163, 160, 0.3)
}

.why-card-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.08;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(79, 163, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px
}

.why-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5
}

.why-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px
}

.why-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8
}

/* Team */
.team-section {
  background: var(--dark-2);
  padding: 100px 80px
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px
}

.team-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.3s
}

.team-card:hover {
  border-color: rgba(79, 163, 160, 0.3)
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #0d1a23, #1a3d4d);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s ease
}

.team-card:hover .team-card-photo img {
  transform: scale(1.04)
}

.team-card-photo-placeholder {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: rgba(79, 163, 160, 0.25)
}

.team-card-specialty {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 20, 25, 0.92), transparent);
  padding: 40px 20px 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold)
}

.team-card-body {
  padding: 24px
}

.team-card-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 4px
}

.team-card-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px
}

.team-card-bio {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin-bottom: 16px
}

.team-card-certs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.team-cert-tag {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 8px
}

/* Certifications */
.certs-section {
  padding: 100px 80px
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px
}

.cert-detail-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  transition: border-color 0.3s
}

.cert-detail-card:hover {
  border-color: rgba(79, 163, 160, 0.3)
}

.cert-detail-logo {
  height: 72px;
  display: flex;
  align-items: center;
  margin-bottom: 24px
}

.cert-detail-logo img {
  max-height: 56px;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s
}

.cert-detail-card:hover .cert-detail-logo img {
  opacity: 1
}

.cert-detail-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 6px
}

.cert-detail-abbr {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px
}

.cert-detail-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8
}

/* ═══════════════════════════════════════════════════
   PACKAGES PAGE
═══════════════════════════════════════════════════ */

.pkg-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.pkg-section {
  padding: 80px 80px 40px
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.pkg-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s
}

.pkg-card:hover {
  border-color: rgba(79, 163, 160, 0.35);
  transform: translateY(-4px)
}

.pkg-card--featured {
  border-color: rgba(79, 163, 160, 0.4);
  background: linear-gradient(160deg, var(--dark-3), var(--dark-2))
}

.pkg-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 16px;
  font-weight: 500
}

.pkg-card-header {
  padding: 36px 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.pkg-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(79, 163, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.pkg-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5
}

.pkg-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 6px
}

.pkg-card-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7
}

.pkg-card-body {
  padding: 24px 32px;
  flex: 1
}

.pkg-includes-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px
}

.pkg-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px
}

.pkg-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5
}

.pkg-check {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(79, 163, 160, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(79, 163, 160, 0.08)
}

.pkg-check svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5
}

.pkg-card-footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.pkg-stay-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  margin-bottom: 16px
}

/* Custom package CTA */
.pkg-custom {
  background: rgba(79, 163, 160, 0.06);
  border: 1px solid rgba(79, 163, 160, 0.2);
  border-left: 3px solid var(--gold);
  padding: 48px;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center
}

.pkg-custom-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 8px
}

.pkg-custom-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 520px
}

.pkg-custom-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0
}

/* ═══════════════════════════════════════════════════
   HEALTH TOURISM PAGE
═══════════════════════════════════════════════════ */

.ht-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.ht-what-section {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.ht-what-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  margin-bottom: 18px
}

.ht-what-visual {
  background: linear-gradient(135deg, #0d1a23, #1a3d4d);
  border: 1px solid rgba(79, 163, 160, 0.15);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-image: linear-gradient(135deg, #0d1a23, #1a3d4d)
}

.ht-stat-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05)
}

.ht-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1
}

.ht-stat-lbl {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px
}

/* Istanbul Guide */
.istanbul-section {
  background: var(--dark-2);
  padding: 100px 80px
}

.istanbul-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px
}

.istanbul-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px;
  transition: border-color 0.3s
}

.istanbul-card:hover {
  border-color: rgba(79, 163, 160, 0.25)
}

.istanbul-card-icon {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1
}

.istanbul-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px
}

.istanbul-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS PAGE
═══════════════════════════════════════════════════ */

.test-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.test-rating-bar {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
  padding: 36px 48px;
  background: rgba(79, 163, 160, 0.06);
  border: 1px solid rgba(79, 163, 160, 0.15);
  flex-wrap: wrap
}

.test-rating-score {
  text-align: center
}

.test-rating-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1
}

.test-rating-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 8px 0
}

.test-rating-count {
  font-size: 12px;
  color: var(--text-muted)
}

.test-rating-breakdown {
  flex: 1;
  min-width: 200px
}

.test-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px
}

.test-bar-lbl {
  font-size: 11px;
  color: var(--text-muted);
  width: 48px;
  flex-shrink: 0
}

.test-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden
}

.test-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px
}

.test-bar-pct {
  font-size: 11px;
  color: var(--text-muted);
  width: 36px;
  text-align: right;
  flex-shrink: 0
}

.test-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0
}

.test-platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 180px
}

.test-platform-logo {
  font-size: 18px
}

.test-platform-name {
  font-size: 12px;
  font-weight: 500
}

.test-platform-score {
  font-size: 11px;
  color: var(--gold);
  margin-top: 1px
}

/* Testimonial cards — extended */
.test-section {
  padding: 80px 80px 40px
}

.test-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.test-card-full {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column
}

.test-card-full::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--serif);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1
}

.test-card-platform {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.test-card-text {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
  margin-bottom: 28px
}

.test-card-proc {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(79, 163, 160, 0.2);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 20px
}

.test-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.test-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  flex-shrink: 0
}

.test-card-name {
  font-size: 14px;
  font-weight: 500
}

.test-card-meta {
  font-size: 12px;
  color: var(--text-muted)
}

/* ═══════════════════════════════════════════════════
   CONSULTATION PAGE
═══════════════════════════════════════════════════ */

.consult-page-hero {
  background: var(--dark-2);
  padding: 140px 80px 80px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.12)
}

.consult-page-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  padding: 80px 80px;
  align-items: start
}

.consult-page-form-wrap {
  background: var(--dark-2);
  border: 1px solid rgba(79, 163, 160, 0.18);
  padding: 48px
}

.consult-page-form-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 6px
}

.consult-page-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7
}

.consult-step-divider {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 0 16px;
  border-top: 1px solid rgba(79, 163, 160, 0.15);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px
}

.consult-step-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(79, 163, 160, 0.1)
}

.consult-page-info {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.consult-info-block {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px
}

.consult-info-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px
}

.consult-info-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.2
}

.consult-info-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8
}

.consult-steps-mini {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0
}

.consult-step-mini {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.consult-step-mini:last-child {
  border-bottom: none
}

.consult-step-mini-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 1px
}

.consult-step-mini-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6
}

/* ═══════════════════════════════════════════════════
   SHARED RESPONSIVE — new pages (2nd batch)
═══════════════════════════════════════════════════ */

@media(max-width: 1024px) {

  .about-hero-grid,
  .ht-what-section,
  .pkg-custom {
    grid-template-columns: 1fr
  }

  .why-grid,
  .team-grid,
  .certs-grid,
  .test-grid-full {
    grid-template-columns: 1fr 1fr
  }

  .pkg-grid {
    grid-template-columns: 1fr
  }

  .istanbul-grid {
    grid-template-columns: 1fr
  }

  .about-hero,
  .pkg-hero,
  .ht-hero,
  .test-hero,
  .consult-page-hero {
    padding: 100px 24px 48px
  }

  .why-section,
  .team-section,
  .certs-section,
  .pkg-section,
  .istanbul-section,
  .test-section {
    padding: 56px 24px
  }

  .consult-page-layout {
    grid-template-columns: 1fr;
    padding: 48px 24px
  }

  .consult-page-info {
    position: static
  }

  .consult-page-form-wrap {
    padding: 28px 24px
  }

  .test-rating-bar {
    padding: 24px
  }

  .pkg-custom {
    padding: 28px 24px;
    gap: 24px
  }

  .pkg-custom-actions {
    flex-direction: row
  }
}

@media(max-width: 640px) {

  .why-grid,
  .team-grid,
  .certs-grid,
  .test-grid-full {
    grid-template-columns: 1fr
  }

  .about-pillars {
    grid-template-columns: 1fr 1fr
  }

  .test-rating-bar {
    flex-direction: column;
    gap: 28px
  }

  .ht-what-visual {
    grid-template-columns: 1fr 1fr
  }
}

/* ── CONSULTATION FORM ADDITIONS ────────────────────────── */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label-note {
  font-weight: 300;
  font-size: 11px;
  opacity: .6;
  margin-left: 4px;
}

.form-radio-group {
  display: flex;
  gap: 24px;
  margin-top: 6px;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.form-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s;
}

.form-radio-label input[type="radio"]:checked+.form-radio-custom {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 4px var(--gold);
}

.form-file-area {
  border: 1.5px dashed rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}

.form-file-area:hover,
.form-file-area.drag-over {
  border-color: var(--gold);
  background: rgba(79, 163, 160, .04);
}

.form-file-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form-file-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.form-file-inner svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: .7;
}

.form-file-inner span {
  font-size: 13px;
  color: var(--muted);
}

.form-file-inner small {
  font-size: 11px;
  opacity: .5;
}

.form-consent {
  margin-top: 8px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-custom {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, .2);
  background: transparent;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color .2s, background .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-checkbox-label input[type="checkbox"]:checked+.form-checkbox-custom {
  border-color: var(--gold);
  background: var(--gold);
}

.form-checkbox-label input[type="checkbox"]:checked+.form-checkbox-custom::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.form-link {
  color: var(--gold);
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: .08em;
  margin-top: 8px;
}

.form-privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  opacity: .5;
  margin-top: 12px;
  justify-content: center;
}

.form-privacy-note svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Consultation sidebar additions */
.consult-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
}

.consult-wa-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.consult-trust-block {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 24px;
}

.consult-trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.consult-trust-stat {
  text-align: center;
}

.consult-trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
}

.consult-trust-lbl {
  font-size: 10px;
  color: var(--muted);
  opacity: .6;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Consultation step divider additions */
.consult-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  opacity: .4;
  font-weight: 300;
  min-width: 36px;
}

.consult-step-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  opacity: .7;
}

/* Responsive */
@media (max-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr
  }

  .form-radio-group {
    flex-direction: column;
    gap: 12px
  }

  .consult-trust-stats {
    grid-template-columns: 1fr 1fr
  }
}

/* ── Dropdown Navigation — Teal ── */
.nav-links li.has-dropdown {
  position: relative;
}

.nav-chevron {
  font-size: 0.6em;
  opacity: 0.5;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.22s ease;
  vertical-align: middle;
}

.has-dropdown:hover>a .nav-chevron {
  transform: rotate(180deg);
}

/* Invisible hover bridge — closes the gap so mouse never leaves the hover zone */
.nav-links>li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 16px;
  background: transparent;
}

/* ── Level-1 dropdown ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(79, 163, 160, 0.18);
  border-radius: 10px;
  padding: 8px;
  min-width: 240px;
  z-index: 9000;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  box-shadow: 0 20px 48px rgba(79, 163, 160, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  /* delay on hide gives mouse time to reach the panel */
  transition: opacity 0.18s ease 0.1s, transform 0.18s ease 0.1s;
}

.has-dropdown:hover>.nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  /* no delay on show */
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
}

.nav-dropdown li {
  list-style: none;
  position: relative;
}

.nav-dropdown>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 0.83rem;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  color: #4FA3A0aa;
}

.nav-dropdown>li>a:hover {
  background: rgba(79, 163, 160, 0.08);
  color: #4FA3A0;
}

/* ── Level-2 nested submenu ── */
.has-subdrop {
  position: relative;
}

/* Bridge so mouse can reach the submenu without it closing */
.has-subdrop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 12px;
  height: 100%;
  background: transparent;
}

.nav-subdropdown {
  position: absolute;
  top: -8px;
  left: calc(100% + 6px);
  background: #fff;
  border: 1px solid rgba(79, 163, 160, 0.18);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  z-index: 9001;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  box-shadow: 0 20px 48px rgba(79, 163, 160, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: opacity 0.18s ease 0.08s, transform 0.18s ease 0.08s;
}

.has-subdrop:hover>.nav-subdropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
}

.nav-subdropdown li {
  list-style: none;
}

.nav-subdropdown li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.62);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-subdropdown li a:hover {
  background: rgba(79, 163, 160, 0.08);
  color: #4FA3A0;
}

.nav-subdrop-label {
  display: block;
  font-size: 0.57rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  padding: 4px 14px 6px;
  border-bottom: 1px solid rgba(79, 163, 160, 0.1);
  margin-bottom: 4px;
}

.nav-chevron-right {
  font-size: 0.7em;
  opacity: 0.4;
  margin-left: auto;
  padding-left: 8px;
}

/* ── Mobile accordion nav ── */
@media (max-width: 768px) {

  /* Kill hover bridges */
  .nav-links>li.has-dropdown::after {
    display: none;
  }

  .has-subdrop::after {
    display: none;
  }

  /* Chevron becomes accordion indicator */
  .nav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-parent .nav-chevron {
    margin-left: auto;
    padding-left: 12px;
    font-size: 0.85em;
    opacity: 0.45;
    transition: transform 0.28s ease;
  }

  .has-dropdown.acc-open>.nav-parent .nav-chevron {
    transform: rotate(180deg);
    opacity: 0.75;
  }

  /* Level-1 panels — collapsed by default */
  .has-dropdown>.nav-dropdown {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(79, 163, 160, 0.25);
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 14px;
    min-width: 0;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .has-dropdown.acc-open>.nav-dropdown {
    max-height: 800px;
  }

  /* Level-2 subpanels — collapsed by default */
  .has-subdrop>.nav-subdropdown {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(79, 163, 160, 0.15);
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 12px;
    min-width: 0;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .has-subdrop.acc-open>.nav-subdropdown {
    max-height: 600px;
  }

  /* Subdrop trigger row */
  .has-subdrop>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-chevron-right {
    transition: transform 0.25s ease;
    opacity: 0.4;
    font-size: 0.85em;
  }

  .has-subdrop.acc-open>a .nav-chevron-right {
    transform: rotate(90deg);
    opacity: 0.7;
  }

  .nav-dropdown>li>a,
  .nav-subdropdown li a {
    padding: 8px 10px;
    font-size: 0.82rem;
    rgba(200, 200, 200, 0.58);
    white-space: normal;
  }

  .nav-dropdown>li>a:hover,
  .nav-subdropdown li a:hover {
    background: transparent;
    color: #4FA3A0;
  }

  .nav-subdrop-label {
    padding: 8px 10px 4px;
  }
}

/* Teal — Certification Section */
.cert-section {
  padding: 80px 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.cert-eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0;
  opacity: .8;
}

.cert-logos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin: 44px 0 40px;
  flex-wrap: wrap;
}

.cert-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
}

.cert-logo-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px 24px;
  border: 1px solid rgba(79, 163, 160, .14);
  border-radius: 14px;
  background: rgba(79, 163, 160, .03);
  transition: border-color .25s, background .25s, transform .25s;
  cursor: default;
}

.cert-logo-wrap:hover {
  border-color: rgba(79, 163, 160, .35);
  background: rgba(79, 163, 160, .07);
  transform: translateY(-3px);
}

.cert-icon-abbr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 400;
  opacity: .7;
}

.cert-icon-svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
  opacity: .6;
  transition: opacity .25s;
}

.cert-logo-wrap:hover .cert-icon-svg {
  opacity: 1;
}

.cert-logo-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  opacity: .8;
  text-align: center;
  line-height: 1.3;
}

.cert-logo-sub {
  font-size: 10.5px;
  color: var(--muted);
  opacity: .5;
  text-align: center;
  line-height: 1.4;
}

.cert-logo-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .45;
}

.cert-compliance {
  max-width: 620px;
  margin: 0 auto;
  font-size: 11.5px;
  line-height: 1.9;
  color: var(--muted);
  opacity: .38;
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 32px;
}

@media (max-width: 1024px) {
  .cert-logo-item {
    min-width: 140px
  }
}

@media (max-width: 640px) {
  .cert-logos {
    gap: 10px
  }

  .cert-logo-item {
    min-width: calc(50% - 10px);
    max-width: none
  }

  .cert-inner {
    padding: 0 20px
  }

  .cert-icon-svg {
    width: 36px;
    height: 36px
  }
}

/* Teal — Consultation Form Additions */
.consult-group {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.consult-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.consult-group-title {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4FA3A0;
  margin-bottom: 16px;
  font-weight: 500;
}

.consult-radios {
  display: flex;
  gap: 28px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.consult-radio {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.65);
}

.consult-radio input[type="radio"] {
  accent-color: #4FA3A0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(79, 163, 160, 0.3);
  border-radius: 10px;
  padding: 32px 20px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  text-align: center;
  gap: 6px;
  color: rgba(0, 0, 0, 0.45);
  background: rgba(79, 163, 160, 0.02);
}

.file-drop:hover {
  border-color: #4FA3A0;
  background: rgba(79, 163, 160, 0.05);
}

.file-drop-icon {
  font-size: 1.4rem;
  color: #4FA3A0;
  opacity: 0.7;
}

.file-drop-text {
  font-size: 0.88rem;
}

.file-drop-sub {
  font-size: 0.72rem;
  opacity: 0.5;
}

.field-optional {
  font-size: 0.72rem;
  opacity: 0.45;
  font-weight: 400;
}

.form-compliance-note {
  font-size: 0.7rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.32);
  margin-top: 20px;
  text-align: center;
  font-style: italic;
}