:root {
  --gold: #C9A227;
  --gold-light: #E8D48B;
  --gold-dark: #A8861E;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --silver: #8A8A8A;
  --cream: #FAFAF8;
  --white: #FFFFFF;
  --border: #E8E6E1;
  --shadow: rgba(44, 44, 44, 0.08);
  --shadow-gold: rgba(201, 162, 39, 0.15);
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



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

/* Keep content visible if AOS CDN/JS fails (common on some hosts) */
html:not(.aos-enabled) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal-light);
  background: var(--cream);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 680px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.gold-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: translateX(-100%);
}

.gold-line.line-drawn::after {
  animation: goldShimmer 1.2s ease forwards;
}

@keyframes goldShimmer {
  to { transform: translateX(100%); }
}

/* ---- Buttons ---- */
.btn-nnc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-nnc-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-gold);
}

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

.btn-nnc-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow);
}

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

.btn-nnc-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- Navbar ---- */
.navbar-nnc {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  z-index: 1050;
}

.navbar-nnc.scrolled {
  padding: 0.5rem 0;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px var(--shadow);
}

.navbar-nnc .navbar-brand img {
  height: 52px;
  transition: height var(--transition);
}

.navbar-nnc.scrolled .navbar-brand img { height: 44px; }

.navbar-nnc .nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  padding: 0.5rem 1.1rem !important;
  position: relative;
}

.navbar-nnc .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}

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

.navbar-nnc .nav-link:hover::after,
.navbar-nnc .nav-link.active::after { width: 60%; }

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus { box-shadow: none; }

/* ---- Hero Banner ---- */
.hero-banner {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAFAF8 0%, #F5F3EE 50%, #EDE9E0 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-5%, 5%) scale(1.1); opacity: 1; }
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  animation: floatShape 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 400px; height: 400px;
  top: 10%; right: 5%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 250px; height: 250px;
  bottom: 15%; right: 25%;
  animation-delay: -5s;
  border-color: rgba(201, 162, 39, 0.1);
}

.hero-shape:nth-child(3) {
  width: 150px; height: 150px;
  top: 30%; right: 40%;
  animation-delay: -10s;
}

.hero-shape:nth-child(4) {
  width: 80px; height: 80px;
  top: 60%; left: 10%;
  animation-delay: -3s;
  background: rgba(201, 162, 39, 0.03);
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(5deg); }
  50% { transform: translate(-10px, 20px) rotate(-3deg); }
  75% { transform: translate(15px, 10px) rotate(2deg); }
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 40%; left: 25%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { top: 60%; left: 10%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { top: 30%; right: 30%; animation-delay: 0.5s; }
.hero-particles span:nth-child(5) { top: 70%; right: 20%; animation-delay: 1.5s; }
.hero-particles span:nth-child(6) { top: 50%; right: 45%; animation-delay: 2.5s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-30px); }
}

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

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-title .gold-text { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--silver);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-buttons {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
}

.hero-visual {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInRight 1s ease forwards 0.6s;
}

.hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hero-icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}

.hero-icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-gold);
  border-color: var(--gold-light);
}

.hero-icon-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.hero-icon-card span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  position: relative;
  padding: 170px 0 100px;
  background: linear-gradient(160deg, #FFFFFF 0%, #F8F6F1 45%, #F0EBE0 100%);
  overflow: hidden;
}

.page-header-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  z-index: 3;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-header-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 20%, transparent 75%);
}

.page-header-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.12), transparent 65%);
  animation: pageHeaderGlow 8s ease-in-out infinite alternate;
}

@keyframes pageHeaderGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(-3%, 2%) scale(1.05); opacity: 1; }
}

.page-header .hero-shapes { opacity: 0.65; }

.page-header-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.page-header-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 7s ease-in-out infinite;
}

.page-header-particles span:nth-child(1) { top: 25%; left: 8%; animation-delay: 0s; }
.page-header-particles span:nth-child(2) { top: 55%; left: 18%; animation-delay: 1.2s; }
.page-header-particles span:nth-child(3) { top: 35%; right: 22%; animation-delay: 0.6s; }
.page-header-particles span:nth-child(4) { top: 70%; right: 12%; animation-delay: 2s; }

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-header .page-breadcrumb {
  background: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.78rem;
}

.page-header .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
  margin: 0 1rem;
  padding: 0;
  float: none;
  opacity: 0.55;
}

.page-header .breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: color var(--transition);
}

.page-header .breadcrumb-item a i {
  font-size: 0.68rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.page-header .breadcrumb-item a:hover {
  color: var(--gold-dark);
}

.page-header .breadcrumb-item a:hover i {
  transform: translateX(-2px);
}

.page-header .breadcrumb-item.active {
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.14), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.08);
}

.page-header-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.page-header h1 {
  font-size: clamp(2.1rem, 5vw, 2.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.page-header-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--silver);
  line-height: 1.85;
  max-width: 720px;
  margin: 0;
}

.page-header-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-light) 50%, transparent 95%);
}

.page-header-accent-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px 2px 0 0;
}

.page-header .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

/* ---- Sections ---- */
.section-padding { padding: 100px 0; }

.section-bg-white { background: var(--white); }
.section-bg-cream { background: var(--cream); }
.section-bg-light { background: #F5F3EE; }

/* ---- Info Cards ---- */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44, 44, 44, 0.04);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height var(--transition);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px var(--shadow);
  border-color: transparent;
}

.info-card:hover::before { height: 100%; }

.info-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(201,162,39,0.05));
  border-radius: 4px;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.info-card:hover .card-icon {
  background: var(--gold);
  transform: scale(1.05);
}

.info-card .card-icon i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: color var(--transition);
}

.info-card:hover .card-icon i { color: var(--white); }

.info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--silver);
  margin: 0;
}

/* ---- Feature Box ---- */
.feature-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-box:last-child { border-bottom: none; }

.feature-box:hover { padding-left: 1rem; }

.feature-box .feature-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  min-width: 60px;
}

.feature-box h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-box p { font-size: 0.95rem; color: var(--silver); margin: 0; }

/* ---- Brand Showcase ---- */
.brand-showcase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(44, 44, 44, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.brand-showcase:hover {
  box-shadow: 0 12px 45px rgba(44, 44, 44, 0.09);
  transform: translateY(-2px);
}

.brand-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.brand-showcase::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.04), transparent 70%);
  pointer-events: none;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ---- Transparency Section ---- */
.transparency-block {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3D3D3D 100%);
  color: rgba(255,255,255,0.85);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.transparency-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(201,162,39,0.08), transparent 70%);
}

.transparency-block h2 { color: var(--white); }
.transparency-block .gold-line { background: var(--gold); }
.transparency-block p { color: rgba(255,255,255,0.75); }

/* ---- Disclaimer Box ---- */
.disclaimer-box {
  background: #FFF9F0;
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  border-radius: 0 4px 4px 0;
}

.disclaimer-box h4 { color: var(--gold-dark); margin-bottom: 0.75rem; }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, #F5F0E6 0%, #EDE6D6 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Contact ---- */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
  box-shadow: 0 2px 16px rgba(44, 44, 44, 0.04);
}

.contact-info-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px var(--shadow);
}

.contact-info-card i {
  color: var(--gold);
  font-size: 1.25rem;
  width: 40px;
}

.contact-form .form-control {
  background: #FAFAF8;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--shadow-gold);
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

/* ---- Legal Pages ---- */
.legal-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3rem;
  box-shadow: 0 4px 35px rgba(44, 44, 44, 0.06);
  position: relative;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 2px 2px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: var(--charcoal-light);
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* ---- Journey Steps ---- */
.journey-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 70px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--border));
}

.journey-step .step-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.journey-step:hover .step-num {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.journey-step h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.journey-step p { font-size: 0.95rem; color: var(--silver); margin: 0; }

/* ---- Company Info Table ---- */
.info-list { list-style: none; padding: 0; margin: 0; }

.info-list li {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.info-list li:last-child { border-bottom: none; }

.info-list .info-label {
  font-weight: 600;
  color: var(--charcoal);
  min-width: 200px;
  font-size: 0.9rem;
}

.info-list .info-value {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* ---- Services List ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.service-item:hover {
  background: var(--white);
  box-shadow: 0 4px 15px var(--shadow);
  transform: translateX(5px);
}

.service-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ---- Footer ---- */
.footer-nnc {
  background: linear-gradient(180deg, #2C2C2C 0%, #242424 100%);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
  position: relative;
}

.footer-nnc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}

.footer-nnc h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nnc a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
  width: 16px;
}

.footer-nav li { margin-bottom: 0.55rem; }

.footer-nav a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}

.footer-nav a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
  order: 2;
}

.footer-nav a:hover {
  padding-left: 4px;
  color: var(--gold);
}

.footer-brand .footer-logo {
  /* height: 48px; */
  margin-bottom: 1rem;
  /* padding: 0.5rem 1rem; */
  /* background: rgba(255, 255, 255, 0.95); */
  /* border-radius: 6px; */
  /* display: inline-block; */
}

.footer-links a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.85rem;
}

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

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 1040;
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .hero-banner { min-height: auto; padding: 140px 0 60px; }
  .hero-visual { margin-top: 3rem; }
  .section-padding { padding: 70px 0; }
  .info-list .info-label { min-width: 140px; }
  .page-header { padding: 140px 0 70px; }
}

@media (max-width: 767.98px) {
  .hero-icon-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-icon-card { padding: 1.25rem; }
  .legal-content { padding: 1.5rem; }
  .brand-showcase { padding: 2rem; }
  .journey-step { gap: 1.25rem; }
  .page-header .page-breadcrumb { font-size: 0.7rem; }
  .page-header .breadcrumb-item + .breadcrumb-item::before { margin: 0 0.65rem; }
  .page-header .breadcrumb-item.active { padding: 0.3rem 0.75rem; }
  .navbar-nnc .nav-link::after {
    display: none;
}
.btn-nnc {
    width: 100%;
    text-align: center;
    display: inline-block;
}








}

ol.breadcrumb.page-breadcrumb {
    display: none;
}
