/* ==========================================================================
   Standing Slovakia — Main Stylesheet
   Corporate & Elegant | Deep Navy · Gold · Blue
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --color-navy:       #001025;
  --color-navy-mid:   #001a3a;
  --color-navy-light: #002555;
  --color-gold:       #FEF969;
  --color-gold-dark:  #c9a227;
  --color-gold-hover: #ffe600;
  --color-blue:       #028BE1;
  --color-blue-dark:  #0170b8;
  --color-white:      #ffffff;
  --color-light:      #f4f6fa;
  --color-light-mid:  #eaecf2;
  --color-text:             #e8eaf0;
  --color-text-muted:       #9aa3b8;
  --color-text-muted-light: #5e6472;
  --color-border:           rgba(254, 249, 105, 0.15);
  --color-card-bg:    #ffffff;
  --color-overlay:    rgba(0, 16, 37, 0.85);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(254, 249, 105, 0.2);
  --shadow-glow: 0 0 0 1px rgba(254,249,105,0.25), 0 16px 48px rgba(0,0,0,0.4), 0 0 40px rgba(254,249,105,0.1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1200px;
  --section-pad:   90px;
  --section-pad-sm: 60px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #2d3142;
  background: var(--color-navy);
  line-height: 1.7;
  opacity: 0;
  animation: bodyFadeIn 0.5s ease 0.1s forwards;
}

@keyframes bodyFadeIn {
  to { opacity: 1; }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: inherit;
}

p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--color-navy);
  color: var(--color-text);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(254,249,105,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.section--dark .container {
  position: relative;
  z-index: 1;
}

.section--light {
  background: #0d2040;
  position: relative;
}

.section--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(254,249,105,0.025) 0px,
    rgba(254,249,105,0.025) 1px,
    transparent 1px,
    transparent 18px
  );
  pointer-events: none;
  z-index: 0;
}

.section--light .container {
  position: relative;
  z-index: 1;
}

.section--navy-mid {
  background: var(--color-navy-mid);
  color: var(--color-text);
}

.section--white {
  background: #081a30;
  position: relative;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* --------------------------------------------------------------------------
   5. Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header--left {
  text-align: left;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  color: var(--color-navy);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section--dark .section-title,
.section--navy-mid .section-title,
.section--white .section-title,
.section--light .section-title {
  color: var(--color-gold);
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-blue), transparent);
  box-shadow: 0 0 10px rgba(254, 249, 105, 0.5);
  margin: 14px auto 0;
  transition: width var(--transition-slow);
}

.section-header--left .section-title::after {
  margin-left: 0;
}

.section-header:hover .section-title::after,
.section-header--left:hover .section-title::after {
  width: 100px;
}

.section-desc {
  font-size: 1.05rem;
  color: #5a6072;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 12px;
}

.section--dark .section-desc,
.section--navy-mid .section-desc {
  color: var(--color-text-muted);
}

/* Text on dark white/light sections — ensure readability */
.section--light,
.section--white {
  color: var(--color-text);
}
.section--light .text-muted,
.section--white .text-muted,
.section--light p,
.section--white p,
.section--white .card-text,
.section--light .section-desc,
.section--white .section-desc,
.section--light .service-detail-card p,
.section--light .service-detail-card ul li {
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
  border: 2px solid var(--color-gold);
  box-shadow: 0 4px 20px rgba(254, 249, 105, 0.25);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(254, 249, 105, 0.45);
  color: var(--color-navy);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-blue {
  background: var(--color-blue);
  color: var(--color-white);
  border: 2px solid var(--color-blue);
}

.btn-blue:hover {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(2, 139, 225, 0.3);
}

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 16, 37, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base);
  animation: headerSlideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#site-header.scrolled {
  background: rgba(0, 16, 37, 0.96);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(254,249,105,0.12);
  border-bottom-color: rgba(254, 249, 105, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--transition-base), filter var(--transition-base);
}

.nav-logo:hover {
  opacity: 0.88;
  filter: drop-shadow(0 0 10px rgba(254, 249, 105, 0.3));
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.03em;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--color-navy-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  z-index: 100;
  overflow: hidden;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--transition-fast), color var(--transition-fast);
  border-left: 2px solid transparent;
}

.nav-dropdown a:hover {
  background: rgba(254,249,105,0.06);
  color: var(--color-gold);
  border-left-color: var(--color-gold);
}

.nav-dropdown a .dd-icon {
  width: 16px;
  height: 16px;
  color: var(--color-blue);
  flex-shrink: 0;
}

/* Chevron */
.chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base);
  color: var(--color-text-muted);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
  color: var(--color-gold);
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.hamburger-bar {
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-hamburger.open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -- Header element entrance animations (unified fade-down) -- */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-logo                          { animation: fadeDown 0.55s ease 0.4s  both; }
.nav-menu .nav-item:nth-child(1)   { animation: fadeDown 0.55s ease 0.5s  both; }
.nav-menu .nav-item:nth-child(2)   { animation: fadeDown 0.55s ease 0.58s both; }
.nav-menu .nav-item:nth-child(3)   { animation: fadeDown 0.55s ease 0.66s both; }
.nav-menu .nav-item:nth-child(4)   { animation: fadeDown 0.55s ease 0.74s both; }
.nav-cta                           { animation: fadeDown 0.55s ease 0.82s both; }
.nav-hamburger                     { animation: fadeDown 0.55s ease 0.5s  both; }

/* --------------------------------------------------------------------------
   8. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 45%, rgba(254, 249, 105, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(2, 139, 225, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(254, 249, 105, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 75% 75%, rgba(2, 139, 225, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0, 37, 85, 0.6) 0%, transparent 60%);
  animation: heroPulse 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroPulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.4;
}

/* Decorative grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(254,249,105,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,249,105,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 20px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-blue);
}

.hero-title {
  color: var(--color-gold);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(90deg, #ffffff 0%, #FEF969 30%, #ffffff 50%, #FEF969 70%, #ffffff 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 5s linear infinite;
}

@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (shorter than home) */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0 70px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(2,139,225,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(254,249,105,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(2,139,225,0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle grid on page hero */
.page-hero .page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(254,249,105,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,249,105,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.4;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb-sep {
  color: var(--color-border);
}

.page-hero-title {
  color: var(--color-gold);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--color-card-bg);
  border: 1px solid #e8eaf0;
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(254,249,105,0.2), 0 12px 40px rgba(0,0,0,0.15), 0 0 30px rgba(254,249,105,0.06);
  border-color: rgba(254,249,105,0.35);
}

.card:hover::before {
  transform: scaleY(1);
}

.card--dark {
  background: var(--color-navy-mid);
  border-color: var(--color-border);
  color: var(--color-text);
}

.card--dark:hover {
  border-color: rgba(254,249,105,0.35);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(2,139,225,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition-base);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-blue);
}

.card:hover .card-icon {
  background: rgba(254,249,105,0.1);
}

.card:hover .card-icon svg {
  color: var(--color-gold);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.card--dark .card-title {
  color: var(--color-gold);
}

.card-text {
  font-size: 0.92rem;
  color: #5a6072;
  line-height: 1.7;
}

.card--dark .card-text {
  color: var(--color-text-muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-top: 20px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.card-link:hover {
  gap: 10px;
  color: var(--color-gold-dark);
}

/* Feature tiles */
.feature-tile {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 249, 105, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-tile:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(254, 249, 105, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(254,249,105,0.15), 0 12px 40px rgba(0,0,0,0.3), 0 0 24px rgba(254,249,105,0.06);
}

.feature-tile .icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(254,249,105,0.25);
  background: linear-gradient(135deg, rgba(254,249,105,0.1), rgba(2,139,225,0.08));
  box-shadow: 0 0 0 1px rgba(254,249,105,0.08), 0 0 20px rgba(254,249,105,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.feature-tile .icon-ring svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
}

.feature-tile:hover .icon-ring {
  border-color: rgba(254,249,105,0.5);
  background: linear-gradient(135deg, rgba(254,249,105,0.18), rgba(2,139,225,0.15));
  box-shadow: 0 0 0 1px rgba(254,249,105,0.2), 0 0 30px rgba(254,249,105,0.15);
}

.feature-tile h4 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.feature-tile p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   10. Service Detail Cards
   -------------------------------------------------------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.service-detail-card {
  background: var(--color-white);
  border: 1px solid #e8eaf0;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.service-detail-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-blue));
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(254,249,105,0.15), 0 12px 40px rgba(0,0,0,0.12), 0 0 24px rgba(254,249,105,0.04);
  border-color: rgba(254,249,105,0.2);
}

.service-detail-card h3 {
  color: var(--color-navy);
  font-size: 1.2rem;
  margin-bottom: 14px;
  padding-left: 4px;
}

.service-detail-card p {
  font-size: 0.92rem;
  color: #5a6072;
  line-height: 1.75;
}

.service-detail-card ul {
  list-style: none;
  margin-top: 14px;
}

.service-detail-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #5a6072;
  padding: 5px 0;
}

.service-detail-card ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy-mid) 0%, #001830 50%, var(--color-navy) 100%);
  background-size: 200% 200%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: ctaGradientShift 8s ease infinite alternate;
}

@keyframes ctaGradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(254,249,105,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(2,139,225,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(254,249,105,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated particle dots in CTA */
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(254,249,105,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  animation: ctaParticleFloat 12s ease-in-out infinite alternate;
}

@keyframes ctaParticleFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* --------------------------------------------------------------------------
   12. Process Steps
   -------------------------------------------------------------------------- */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-blue), var(--color-gold), transparent);
  box-shadow: 0 0 8px rgba(254,249,105,0.4);
  opacity: 0.5;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(254,249,105,0.12), rgba(2,139,225,0.1));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(254,249,105,0.5);
  box-shadow: 0 0 0 4px rgba(254,249,105,0.06), 0 0 20px rgba(254,249,105,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   13. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
  padding: var(--section-pad) 0;
  background: #061629;
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid #e2e5ed;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item.open {
  border-color: rgba(254,249,105,0.4);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  background: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-gold-dark);
}

.faq-item.open .faq-question {
  color: var(--color-navy);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-blue);
  transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  color: #5a6072;
  line-height: 1.8;
  border-top: 1px solid #f0f2f7;
  padding-top: 16px;
}

/* --------------------------------------------------------------------------
   14. Contact Form
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(254,249,105,0.12);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}

.contact-info-card:hover {
  border-color: rgba(254,249,105,0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(254,249,105,0.15), 0 8px 32px rgba(0,0,0,0.3);
}

.contact-info-card .icon-box {
  width: 44px;
  height: 44px;
  background: rgba(254,249,105,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.contact-info-card h4 {
  color: var(--color-gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--color-gold);
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: #8a92a6;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a6072;
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-navy);
  background: var(--color-light);
  border: 1.5px solid #dde1ed;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(2,139,225,0.1);
  background: var(--color-white);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
}

.form-success svg {
  width: 52px;
  height: 52px;
  color: #22c55e;
  margin: 0 auto 16px;
}

.form-success h3 {
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-success p {
  color: #5a6072;
  font-size: 0.92rem;
}

.form-note {
  font-size: 0.8rem;
  color: #9aa3b8;
  margin-top: 12px;
}

/* Map placeholder */
.map-placeholder {
  background: var(--color-navy-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
}

.map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  margin: 0 auto 16px;
}

.map-placeholder h4 {
  color: var(--color-gold);
  margin-bottom: 8px;
}

.map-placeholder p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   15. Info / Stats Strip
   -------------------------------------------------------------------------- */
.stats-strip {
  background: var(--color-navy-mid);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(254,249,105,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px 16px;
  border-right: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.stat-item:hover {
  background: rgba(254,249,105,0.04);
  border-radius: var(--radius-md);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   16. Registration Card
   -------------------------------------------------------------------------- */
.reg-card {
  background: var(--color-navy-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reg-card-header {
  background: rgba(254,249,105,0.05);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reg-card-header svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
}

.reg-card-header h3 {
  font-size: 1rem;
  color: var(--color-gold);
}

.reg-card-body {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.reg-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reg-field-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.reg-field-value {
  font-size: 0.92rem;
  color: var(--color-text);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
#site-footer {
  background: var(--color-navy);
  border-top: 1px solid var(--color-border);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo-text .footer-logo-main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold);
}

.footer-logo-text .footer-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(254,249,105,0.05);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.footer-links a::before {
  content: '›';
  color: var(--color-gold);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-right a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-right a:hover {
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   18. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s 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.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   19. Utilities
   -------------------------------------------------------------------------- */
.text-gold    { color: var(--color-gold); }
.text-blue    { color: var(--color-blue); }
.text-white   { color: var(--color-white); }
.text-muted   { color: var(--color-text-muted); }
.text-center  { text-align: center; }
.text-navy    { color: var(--color-navy); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-divider {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
  box-shadow: 0 0 8px rgba(254, 249, 105, 0.4);
  margin: 16px 0;
}

.gold-divider--center {
  margin: 16px auto;
}

/* --------------------------------------------------------------------------
   Premium Glass Morphism System
   -------------------------------------------------------------------------- */

/* Glass card for DARK section backgrounds */
.glass-card {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(254, 249, 105, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(254, 249, 105, 0.25);
  box-shadow: 0 0 0 1px rgba(254,249,105,0.18), 0 16px 48px rgba(0,0,0,0.35), 0 0 30px rgba(254,249,105,0.07);
  transform: translateY(-4px);
}

/* Glass card for LIGHT/WHITE section backgrounds (now dark navy sections) */
.glass-card-light {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(254, 249, 105, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all var(--transition-base);
}

.glass-card-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(254,249,105,0.25);
  box-shadow: 0 0 0 1px rgba(254,249,105,0.18), 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(254,249,105,0.07);
  transform: translateY(-4px);
}

/* Hero floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(254,249,105,0.09) 0%, transparent 70%);
  top: 15%;
  right: 10%;
  animation-duration: 9s;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2,139,225,0.07) 0%, transparent 70%);
  bottom: 20%;
  right: 20%;
  animation-duration: 11s;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(254,249,105,0.06) 0%, transparent 70%);
  top: 50%;
  left: 55%;
  animation-duration: 13s;
  animation-delay: -6s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  33%       { transform: translateY(-18px) translateX(10px) scale(1.04); }
  66%       { transform: translateY(10px) translateX(-8px) scale(0.97); }
}

/* FAQ premium style */
.faq-item {
  background: var(--color-white);
  border: 1px solid #e2e5ed;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item.open {
  border-color: rgba(254,249,105,0.4);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 0 0 1px rgba(254,249,105,0.1);
}

/* Registration card glass upgrade */
.reg-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(254, 249, 105, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* --------------------------------------------------------------------------
   19b. Premium Dark Section Overrides
   White/light sections converted to rich deep navy — element overrides
   -------------------------------------------------------------------------- */

/* Section title gold on all dark sections */
.faq-section .section-title {
  color: var(--color-gold);
}

/* Card titles on formerly-white/light sections */
.section--white .card-title,
.section--light .card-title {
  color: var(--color-gold);
}
.section--white .card-text,
.section--light .card-text {
  color: var(--color-text-muted);
}

/* Service detail cards — dark glass treatment */
.section--white .service-detail-card,
.section--light .service-detail-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 249, 105, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.section--white .service-detail-card h3,
.section--light .service-detail-card h3 {
  color: var(--color-gold);
}
.section--white .service-detail-card p,
.section--light .service-detail-card p,
.section--white .service-detail-card ul li,
.section--light .service-detail-card ul li {
  color: var(--color-text-muted);
}
.section--white .service-detail-card:hover,
.section--light .service-detail-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(254, 249, 105, 0.22);
  box-shadow: 0 0 0 1px rgba(254,249,105,0.18), 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(254,249,105,0.07);
}

/* FAQ items — dark glass treatment */
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(254, 249, 105, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.faq-item.open {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(254, 249, 105, 0.3);
  box-shadow: 0 0 0 1px rgba(254,249,105,0.1), 0 4px 20px rgba(0,0,0,0.3);
}
.faq-question {
  color: var(--color-text);
}
.faq-question:hover {
  color: var(--color-gold);
}
.faq-item.open .faq-question {
  color: var(--color-gold);
}
.faq-answer-inner {
  color: var(--color-text-muted);
}

/* Inline-styled list items in rental/consulting cards — override via parent */
.section--white li,
.section--light li {
  color: var(--color-text-muted) !important;
}

/* Contact form inputs remain legible on dark bg */
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(254, 249, 105, 0.15);
  color: var(--color-text);
}
.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-blue);
  color: var(--color-text);
}
.contact-form label {
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-pad: 70px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--color-border); }
  .reg-card-body {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
    gap: 32px;
  }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  /* Nav mobile — hamburger visible, desktop menu hidden */
  .nav-hamburger { display: flex; }
  .nav-menu      { display: none; }
  .nav-cta       { display: none; }

  /* Grid layouts */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .stat-item:last-child { border-bottom: none; }

  .breadcrumb { display: none; }
}

/* --------------------------------------------------------------------------
   21. Privacy Policy Modal
   -------------------------------------------------------------------------- */
.pp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 30, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.pp-overlay.open {
  opacity: 1;
  visibility: visible;
}

body.modal-open {
  overflow: hidden;
}

.pp-modal {
  background: var(--color-navy-mid);
  border: 1px solid rgba(254, 249, 105, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(254,249,105,0.08);
  width: 100%;
  max-width: 740px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pp-overlay.open .pp-modal {
  transform: translateY(0) scale(1);
}

/* Header */
.pp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(254, 249, 105, 0.1);
  flex-shrink: 0;
}

.pp-modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin: 0;
}

.pp-modal-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.pp-modal-close:hover {
  color: var(--color-gold);
  background: rgba(254, 249, 105, 0.08);
}

.pp-modal-close svg {
  width: 18px;
  height: 18px;
}

/* Scrollable body */
.pp-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  scroll-behavior: smooth;
}

.pp-modal-body::-webkit-scrollbar {
  width: 5px;
}
.pp-modal-body::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}
.pp-modal-body::-webkit-scrollbar-thumb {
  background: rgba(254, 249, 105, 0.25);
  border-radius: 4px;
}
.pp-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(254, 249, 105, 0.45);
}

.pp-updated {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pp-modal-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-gold);
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(254, 249, 105, 0.1);
}

.pp-modal-body h3:first-of-type {
  margin-top: 0;
}

.pp-modal-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.pp-modal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.pp-modal-body ul li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.pp-modal-body strong {
  color: var(--color-text);
  font-weight: 600;
}

.pp-modal-body a {
  color: var(--color-blue);
  text-decoration: underline;
  text-decoration-color: rgba(2, 139, 225, 0.4);
  transition: color var(--transition-fast);
}

.pp-modal-body a:hover {
  color: var(--color-gold);
}

.pp-modal-body address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 8px;
}

/* Footer */
.pp-modal-footer {
  padding: 18px 28px;
  border-top: 1px solid rgba(254, 249, 105, 0.1);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* Footer trigger button style */
.footer-modal-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
  font-family: var(--font-body);
}

.footer-modal-btn:hover {
  color: var(--color-gold);
}

/* Mobile */
@media (max-width: 600px) {
  .pp-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .pp-modal {
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
  }

  .pp-modal-header {
    padding: 20px 20px 16px;
  }

  .pp-modal-body {
    padding: 20px;
  }

  .pp-modal-footer {
    padding: 14px 20px;
  }
}

/* --------------------------------------------------------------------------
   22. Cookie Consent Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--color-navy-mid);
  border-top: 1px solid rgba(254, 249, 105, 0.18);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 20px 0;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.cookie-banner-text strong {
  display: block;
  color: var(--color-text);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.cookie-banner-text p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  font-size: 0.84rem;
}

/* Footer reset button */
.cookie-reset-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}

.cookie-reset-btn:hover {
  color: var(--color-gold);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-banner-actions {
    justify-content: flex-end;
  }
}

/* --------------------------------------------------------------------------
   22. Off-Canvas Mobile Navigation
   -------------------------------------------------------------------------- */

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 30, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Panel */
.nav-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 88vw;
  height: 100%;
  background: var(--color-navy-mid);
  border-left: 1px solid rgba(254, 249, 105, 0.12);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav-offcanvas.open {
  transform: translateX(0);
}

/* Prevent body scroll when menu is open */
body.nav-open {
  overflow: hidden;
}

/* Panel header */
.nav-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(254, 249, 105, 0.1);
  flex-shrink: 0;
}
.nav-offcanvas-logo img {
  height: 68px;
  width: auto;
}
.nav-offcanvas-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-offcanvas-close:hover {
  color: var(--color-gold);
  background: rgba(254, 249, 105, 0.08);
}
.nav-offcanvas-close svg {
  width: 20px;
  height: 20px;
}

/* Menu list */
.nav-offcanvas-nav {
  flex: 1;
  padding: 12px 0;
}
.nav-offcanvas-menu {
  list-style: none;
  padding: 0 12px;
  margin: 0;
}
.nav-offcanvas-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-offcanvas-menu > li:last-child {
  border-bottom: none;
}
.nav-offcanvas-menu > li > a {
  display: block;
  padding: 15px 10px;
  color: var(--color-text);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.nav-offcanvas-menu > li > a:hover,
.nav-offcanvas-menu > li > a.active {
  color: var(--color-gold);
  padding-left: 18px;
}

/* Services sub-toggle */
.nav-offcanvas-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 10px;
  color: var(--color-text);
  font-size: 0.98rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.nav-offcanvas-sub-toggle:hover {
  color: var(--color-gold);
}
.nav-offcanvas-sub-toggle .chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.nav-offcanvas-has-sub.open .nav-offcanvas-sub-toggle {
  color: var(--color-gold);
}
.nav-offcanvas-has-sub.open .nav-offcanvas-sub-toggle .chevron {
  transform: rotate(180deg);
}

/* Sub-menu */
.nav-offcanvas-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}
.nav-offcanvas-has-sub.open .nav-offcanvas-sub {
  max-height: 320px;
}
.nav-offcanvas-sub li a {
  display: block;
  padding: 11px 10px 11px 26px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}
.nav-offcanvas-sub li a:hover,
.nav-offcanvas-sub li a.active {
  color: var(--color-gold);
}

/* CTA footer */
.nav-offcanvas-footer {
  padding: 18px 20px;
  border-top: 1px solid rgba(254, 249, 105, 0.1);
  flex-shrink: 0;
}
.nav-offcanvas-footer .btn {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   22. Print Styles
   -------------------------------------------------------------------------- */
@media print {
  #site-header,
  #site-footer,
  .hero-scroll,
  .nav-hamburger,
  .cta-banner,
  .hero-grid {
    display: none !important;
  }
  body { opacity: 1 !important; }
  .page-hero { min-height: auto; padding: 40px 0 20px; }
}
