/* ============================
   GLINTY – Kustom Styles
   glinty.ink
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold:        #c8a84b;
  --gold-light:  #e8d5a0;
  --gold-dim:    rgba(200, 168, 75, 0.18);
  --dark:        #0c0c14;
  --dark-2:      #12121e;
  --dark-3:      #1b1b2e;
  --dark-card:   #161624;
  --border:      rgba(200, 168, 75, 0.22);
  --text:        #f0ece4;
  --text-muted:  #9090a8;
  --white:       #ffffff;
  --radius:      12px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { font-size: 17px; color: var(--text-muted); }

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

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

.gold { color: var(--gold); }
.italic { font-style: italic; }

/* ---- NAVBAR ---- */
.glint-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.glint-nav.scrolled {
  background: rgba(12, 12, 20, 0.97);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text) !important;
}

.nav-brand span { color: var(--gold); }

.glint-nav .nav-link {
  color: var(--text-muted) !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.4rem 1rem !important;
  transition: color var(--transition);
  position: relative;
}

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

.glint-nav .nav-link:hover { color: var(--text) !important; }
.glint-nav .nav-link:hover::after { width: 60%; }

.btn-nav {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600;
  padding: 0.55rem 1.6rem !important;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.btn-nav:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}
.btn-nav::after { display: none !important; }

.navbar-toggler {
  border-color: var(--border) !important;
  color: var(--text) !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAATElEQVR42mNk+A9QDwABigFkUdCvkQAAAABJRU5ErkJggg==") !important;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg) brightness(0.9);
}

/* Mobile menu dropdown background */
@media (max-width: 991px) {
  .glint-nav .navbar-collapse {
    background: rgba(12, 12, 20, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-top: 0.8rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  }

  .glint-nav .nav-link {
    padding: 0.7rem 0.5rem !important;
    border-bottom: 1px solid rgba(200, 168, 75, 0.08);
    color: var(--text) !important;
  }

  .glint-nav .nav-link:last-child {
    border-bottom: none;
  }

  .glint-nav .nav-link::after {
    display: none;
  }

  .glint-nav .btn-nav {
    margin-top: 0.6rem;
    display: block;
    text-align: center;
  }
}

/* ---- HERO ---- */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.28);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,20,0.85) 0%,
    rgba(12,12,20,0.4) 50%,
    rgba(12,12,20,0.7) 100%
  );
}

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

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(240, 236, 228, 0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.stat-item {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}

/* ---- BUTTONS ---- */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 0.83rem 2.2rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  letter-spacing: 0.5px;
}

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

/* ---- SECTIONS ---- */
.section-padded {
  padding: 7rem 0;
}

.section-dark { background-color: var(--dark); }
.section-darker { background-color: var(--dark-2); }
.section-card-bg { background-color: var(--dark-3); }

.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0 2rem;
}

.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ---- ABOUT ---- */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  filter: brightness(0.9);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about-badge-text {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}

.feature-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

/* ---- SERVICES ---- */
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: var(--gold);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter var(--transition);
}

.service-card:hover .service-card-img { filter: brightness(0.95); }

.service-card-body {
  padding: 1.8rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 1.2rem;
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.service-card p { font-size: 16px; }

/* ---- HOW IT WORKS ---- */
.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  margin-bottom: 3rem;
}

.process-step:last-child { margin-bottom: 0; }

.process-line {
  position: absolute;
  left: 27px;
  top: 54px;
  width: 1px;
  height: calc(100% + 1rem);
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step:last-child .process-line { display: none; }

.process-num {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: var(--dark-card);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process-content h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.process-content p { font-size: 16px; }

.process-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.process-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.process-image-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(12,12,20,0.92);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  backdrop-filter: blur(8px);
}

/* ---- TECHNOLOGY ---- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.tech-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
}

.tech-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: var(--dark-3);
}

.tech-item i {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.tech-item span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.tech-showcase-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 420px;
  display: block;
  filter: brightness(0.88);
}

/* ---- BENEFITS ---- */
.benefit-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: rgba(200,168,75,0.5);
  background: var(--dark-3);
}

.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,168,75,0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.benefit-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.benefit-card p { font-size: 15px; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}

.testimonial-text {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-name {
  font-weight: 600;
  font-size: 16px;
  display: block;
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-muted);
}

.stars { color: var(--gold); font-size: 14px; margin-bottom: 1rem; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(200,168,75,0.5); }

.faq-question {
  width: 100%;
  background: var(--dark-card);
  color: var(--text);
  padding: 1.3rem 1.6rem;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--dark-3); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: all var(--transition);
}

.faq-item.open .faq-icon { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--dark-card);
  padding: 0 1.6rem;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

.faq-answer p { font-size: 16px; padding-top: 0.5rem; }

/* ---- CTA / CONTACT FORM ---- */
.contact-form-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.4rem; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-control-glint {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-control-glint::placeholder { color: rgba(144,144,168,0.5); }
.form-control-glint:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}

textarea.form-control-glint { resize: vertical; min-height: 130px; }

select.form-control-glint option { background: var(--dark-3); }

.form-check-glint {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.form-check-glint input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-check-glint label { font-size: 14px; color: var(--text-muted); line-height: 1.5; cursor: pointer; }

/* ---- POPUP ---- */
.glint-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}

.glint-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.glint-popup {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glint-popup-overlay.active .glint-popup { transform: scale(1) translateY(0); }

.popup-check {
  width: 70px;
  height: 70px;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--gold);
}

.glint-popup h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.glint-popup p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}

.popup-close-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.popup-close-btn:hover { background: var(--gold-light); }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: rgba(18,18,30,0.98);
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-text a { color: var(--gold); }

.btn-cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.btn-cookie-accept:hover { background: var(--gold-light); }

.btn-cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.58rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-cookie-reject:hover { color: var(--text); border-color: var(--text-muted); }

/* ---- FOOTER ---- */
.glint-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--gold); }

.footer-about {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.7rem; }

.footer-links a {
  font-size: 16px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
  min-width: 18px;
}

.footer-contact-item span {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(144,144,168,0.6);
  margin: 0;
}

.social-links { display: flex; gap: 0.8rem; }

.social-link {
  width: 38px;
  height: 38px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ---- CONTACTS PAGE ---- */
.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: border-color var(--transition);
}

.contact-info-card:hover { border-color: rgba(200,168,75,0.5); }

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 1.2rem;
}

/* ---- POLICY PAGES ---- */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.policy-content h3 {
  font-size: 1.25rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--gold-light);
}

.policy-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.policy-content ul li {
  font-size: 16px;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.policy-content ul li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ---- THANK YOU PAGE ---- */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 1rem 4rem;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.8rem;
  color: var(--gold);
}

/* ---- PAGE HEADER ---- */
.page-header {
  padding: 150px 0 70px;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb-custom { margin-top: 1rem; gap: 0.5rem; display: flex; align-items: center; justify-content: center; }
.breadcrumb-custom a { font-size: 14px; color: var(--text-muted); }
.breadcrumb-custom span { font-size: 14px; color: rgba(144,144,168,0.4); }
.breadcrumb-custom .current { font-size: 14px; color: var(--gold); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- UTILITIES ---- */
.text-gold { color: var(--gold) !important; }
.border-gold { border-color: var(--gold) !important; }
.bg-dark-card { background: var(--dark-card) !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .about-badge { left: 0; }
  .process-image img { min-height: 300px; }
}

@media (max-width: 767px) {
  .section-padded { padding: 4.5rem 0; }
  .hero-stats { margin-top: 3rem; }
  .about-badge { left: 0; }
  .contact-form-card { padding: 1.5rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-gold,
  .hero-cta .btn-outline-gold { text-align: center; }
}
