/* ============================================================
   SKYRA USA — style.css
   ============================================================ */
:root {
  --navy: #0f1f3c;
  --navy-hover: #192f52;
  --navy-dark: #0a141f;
  --navy-medium: #1a2f50;
  --gold: #d4af37;
  --gold-light: #fff9e6;
  --gold-dark: #a68729;
  --gold-hover: #e8c84a;
  --white: #ffffff;
  --bg-light: #f8f7f3;
  --bg-medium: #eceae1;
  --border: #d1cebc;
  --text-primary: #3f3d38;
  --text-secondary: #6b6860;
  --text-muted: #b8b5aa;
  --success: #2e7d32;
  --success-bg: #e8f5e9;
  --error: #c62828;
  --error-bg: #ffebee;
  --ff-heading: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15, 31, 60, 0.07);
  --shadow-md: 0 6px 24px rgba(15, 31, 60, 0.11);
  --shadow-lg: 0 20px 60px rgba(15, 31, 60, 0.16);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.28);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--ff-body);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);
  line-height: 1.15;
  font-weight: 600;
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}
h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.gold-line {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin: 0.85rem 0 1.75rem;
  border-radius: 2px;
}
.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.required {
  color: var(--gold);
  margin-left: 2px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after {
  opacity: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid transparent;
}
.btn-navy:hover {
  background: var(--navy-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.78rem;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* TOP BAR */
.top-bar {
  background: var(--navy-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.top-bar-item svg {
  color: var(--gold);
}
.top-bar-divider {
  color: rgba(255, 255, 255, 0.15);
}
.top-bar-right .top-bar-item {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 20, 31, 0.97);
  backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand {
  font-family: var(--ff-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-text .tagline {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: 0.75rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
}
.mobile-menu .mobile-link {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.mobile-menu .mobile-link:hover {
  color: var(--gold);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 18% 55%,
      rgba(212, 175, 55, 0.09) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 15%,
      rgba(26, 47, 80, 0.8) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  right: -8%;
  bottom: -15%;
  width: 58%;
  height: 130%;
  background: linear-gradient(135deg, var(--navy-medium) 0%, var(--navy) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.45;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 2rem 7rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 100px;
  padding: 0.38rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.4);
  }
}
.hero h1 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.hero-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-stat-card:hover {
  background: rgba(212, 175, 55, 0.07);
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateX(5px);
}
.hero-stat-icon {
  width: 46px;
  height: 46px;
  background: rgba(212, 175, 55, 0.11);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.hero-stat-info .num {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-info .desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--white);
  clip-path: ellipse(52% 100% at 50% 100%);
  z-index: 1;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.4rem 1rem;
  flex: 1;
  min-width: 160px;
}
.trust-strip-divider {
  width: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}
.ts-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ts-text {
  display: flex;
  flex-direction: column;
}
.ts-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.ts-text span {
  font-size: 0.73rem;
  color: var(--text-secondary);
  margin-top: 1px;
}

/* ABOUT */
.about {
  background: var(--white);
  padding: 8rem 0;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0.88;
}
.about-img-main .placeholder-text {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.22);
  letter-spacing: 0.25em;
  position: relative;
  z-index: 1;
}
.about-img-overlay {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.9rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-img-overlay .big-num {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-img-overlay .big-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 31, 60, 0.65);
  margin-top: 3px;
}
.about-content h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.about-content p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.about-highlight:hover {
  background: var(--gold-light);
  transform: translateX(3px);
}
.about-highlight-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlight-text {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* VALUES */
.values {
  background: var(--navy);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.values::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.055) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.values-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.values-sub {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.value-card:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
}
.value-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}
.value-card p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  line-height: 1.85;
}
.value-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.value-stat-num {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.value-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* SERVICES */
.services {
  background: var(--bg-light);
  padding: 8rem 0;
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-intro {
  max-width: 580px;
  margin: 0.85rem auto 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-num {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(218, 175, 55, 1);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.service-icon {
  font-size: 1.9rem;
  margin-bottom: 0.9rem;
}
.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}
.service-features {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-features li {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-link:hover {
  gap: 0.7rem;
}
/* Prices */
.payment {
  background: var(--bg-light);
  padding: 8rem 0;
  position: relative;
}
.payment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}
.payment-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.payment-header h2 {
  color: var(--navy);
}
.payment-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.payment-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin: 2.5rem auto;
  max-width: 800px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-item .trust-icon {
  font-size: 1.1rem;
}
.trust-item strong {
  color: var(--text-primary);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.price-card.featured {
  border: 2px solid var(--gold);
  background: var(--navy);
  transform: translateY(-12px);
}
.price-card.featured:hover {
  transform: translateY(-18px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}
.featured-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.4rem;
  background: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.price-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.price-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.price-card.featured h3 {
  color: var(--white);
}
.price-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.price-card.featured .price-card-desc {
  color: rgba(255, 255, 255, 0.55);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}
.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.price-card.featured .price-currency {
  color: var(--gold);
}
.price-number {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-card.featured .price-number {
  color: var(--gold);
}
.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.4);
}
.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}
.price-card.featured .price-divider {
  background: rgba(255, 255, 255, 0.1);
}
.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.price-card.featured .price-feature {
  color: rgba(255, 255, 255, 0.8);
}
.price-feature-check {
  width: 18px;
  height: 18px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card.featured .price-feature-check {
  background: rgba(212, 175, 55, 0.2);
}
.btn-pay {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* WHY CHOOSE US — GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.why-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.why-item-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.why-item h4 {
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.35;
}

/* CTA BANNER */
.cta-banner {
  background-color: #0f1f3c; /* hard fallback — never inherit body background */
  background: linear-gradient(
    135deg,
    #0f1f3c 0%,
    #1a2f50 60%,
    #1e3a6e 100%
  );
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
/* Always hardcode text colors inside CTA banner — dark background never changes */
.cta-banner-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.cta-banner-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.7;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}

/* GALLERY */
.gallery-section {
  background: var(--navy-dark);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
}
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-header h2 {
  color: var(--white);
}
.gallery-header p {
  color: rgba(255, 255, 255, 0.52);
  margin-top: 0.85rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.8;
}
.carousel-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  height: 500px;
  position: relative;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.22);
}
.slide-placeholder .slide-icon {
  font-size: 2.8rem;
}
.slide-placeholder .slide-label {
  font-size: 0.88rem;
  letter-spacing: 0.07em;
}
.slide-placeholder .slide-hint {
  font-size: 0.72rem;
  opacity: 0.6;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(10, 20, 31, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn.prev {
  left: 1.1rem;
}
.carousel-btn.next {
  right: 1.1rem;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.carousel-caption {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.04em;
}
.carousel-counter {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}
.gallery-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.gallery-feature {
  text-align: center;
  padding: 1.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.11);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.gallery-feature:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.24);
  transform: translateY(-4px);
}
.gallery-feature-icon {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}
.gallery-feature h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.gallery-feature p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

/* CONTACT */
.contact {
  background: var(--navy);
  padding: 8rem 0;
}
.contact-header {
  margin-bottom: 3.5rem;
}
.contact-intro {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-top: 0.85rem;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.contact-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-detail:first-child {
  padding-top: 0;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-text small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 3px;
}
.contact-detail-text a {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-detail-text a:hover {
  color: var(--gold);
}
.contact-response-time {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.crt-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.crt-text {
  display: flex;
  flex-direction: column;
}
.crt-text strong {
  font-size: 0.83rem;
  color: var(--white);
}
.crt-text span {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 2px;
}
.contact-social-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.75rem;
}
.social-links {
  display: flex;
  gap: 0.6rem;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}
.form-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.form-header h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-family: var(--ff-body);
  transition: var(--transition);
  outline: none;
}
.form-control::placeholder {
  color: var(--text-muted);
}
.form-control:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 31, 60, 0.07);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.select-wrap {
  position: relative;
}
.select-wrap .form-control {
  appearance: none;
  padding-right: 2.5rem;
}
.select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--navy);
  margin-top: 2px;
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.form-check label a {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 500;
}
.form-check label a:hover {
  color: var(--gold-dark);
}
.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--navy-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  display: none;
  line-height: 1.5;
}
.form-status.success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(46, 125, 50, 0.2);
}
.form-status.error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid rgba(198, 40, 40, 0.18);
}

/* FOOTER */
.footer-top {
  background: var(--navy-dark);
  padding: 5rem 0 3.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.9rem;
}
.brand-name {
  font-family: var(--ff-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.brand-name span {
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.85;
  max-width: 250px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-list svg {
  color: var(--gold);
  flex-shrink: 0;
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.22);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.22);
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: var(--gold);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 500;
}
.back-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 8rem 2rem 6rem;
  }
  .hero-right {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .top-bar-right {
    display: none;
  }
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-actions {
    justify-content: center;
  }
  .gallery-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .payment-trust-bar {
    border-radius: var(--radius-md);
    gap: 1rem;
    padding: 0.8rem 1.25rem;
  }
}
@media (max-width: 600px) {
  .about,
  .values,
  .services,
  .gallery-section,
  .contact {
    padding: 5rem 0;
  }
  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .gallery-features {
    grid-template-columns: 1fr 1fr;
  }
  .carousel-slide {
    height: 280px;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .trust-strip-inner {
    flex-direction: column;
  }
  .trust-strip-divider {
    display: none;
  }
  .trust-strip-item {
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .contact-form-wrap {
    padding: 1.75rem;
  }
  .cta-banner {
    padding: 3rem 0;
  }
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .cta-banner-text {
    width: 100%;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }
  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .top-bar {
    display: none;
  }
  /* Payment page responsive */
  .payment {
    padding: 4rem 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .price-card {
    padding: 1.75rem 1.5rem;
  }
  .price-card.featured {
    transform: translateY(0);
  }
  .price-card.featured:hover {
    transform: translateY(-5px);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .why-item {
    padding: 1.25rem 0.75rem;
  }
  .why-item h4 {
    font-size: 0.78rem;
  }
  .payment-trust-bar {
    border-radius: var(--radius-sm);
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
  }
}

/* ============================================================
   DARK MODE SYSTEM
   ============================================================ */
.dark-mode body,
.dark-mode {
  --bg-light: #0b111e;
  --bg-medium: #111a2e;
  --border: #1e293b;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --white: #060b13;
  background: var(--white);
  color: var(--text-primary);
}

/* Override sections with light backgrounds to dark */
.dark-mode .services,
.dark-mode .payment,
.dark-mode .policy-page {
  background: var(--bg-light);
}

.dark-mode .trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.dark-mode .trust-strip-item {
  color: var(--text-primary);
}
.dark-mode .ts-text strong {
  color: var(--gold);
}
.dark-mode .ts-text span {
  color: var(--text-secondary);
}

.dark-mode .about {
  background: var(--white);
}

/* Force dark text elements to light text in dark mode */
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode .about-content h2,
.dark-mode .service-card h3,
.dark-mode .payment-header h2,
.dark-mode .price-card h3,
.dark-mode .form-header h3,
.dark-mode .pay-header h1,
.dark-mode .pay-card-title,
.dark-mode .pay-summary h3,
.dark-mode .policy-section h2,
.dark-mode .policy-summary h2 {
  color: var(--text-primary) !important;
}

/* Form overrides in dark mode */
.dark-mode .form-control:focus,
.dark-mode .pf-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Policy specific overrides */
.dark-mode .policy-summary {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--text-primary);
}
.dark-mode .policy-summary li {
  color: var(--text-primary);
}
.dark-mode .policy-table td {
  background: var(--white);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}
.dark-mode .policy-table tr:nth-child(even) td {
  background: var(--bg-light);
}

.dark-mode .badge-full {
  background: rgba(46, 125, 50, 0.2);
  color: #81c784;
}
.dark-mode .badge-partial {
  background: rgba(230, 81, 0, 0.2);
  color: #ffb74d;
}
.dark-mode .badge-none {
  background: rgba(198, 40, 40, 0.2);
  color: #e57373;
}

/* THEME TOGGLE COMPONENT */
.theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: var(--transition);
}
.theme-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.06);
}

/* Toggle Sun/Moon displays */
.dark-mode .theme-toggle .moon-icon {
  display: none;
}
.dark-mode .theme-toggle .sun-icon {
  display: block;
  color: var(--gold);
}
html:not(.dark-mode) .theme-toggle .sun-icon,
body:not(.dark-mode) .theme-toggle .sun-icon {
  display: none;
}
html:not(.dark-mode) .theme-toggle .moon-icon,
body:not(.dark-mode) .theme-toggle .moon-icon {
  display: block;
}

/* Nav specific positioning */
.nav-links li.theme-li {
  display: flex;
  align-items: center;
}

