/* ============================================================
   global.css — VasPar Technologies
   Shared across every page: variables, reset, nav, footer,
   buttons, layout helpers, animations, utilities
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-lt:     #E8C96A;
  --gold-dk:     #8B6914;
  --gold-rgb:    201, 168, 76;
  --cream:       #FFFDF5;
  --white:       #FFFFFF;
  --off-white:   #FAF7EE;
  --dark:        #0D0B07;
  --dark-2:      #1A1507;
  --text:        #2A2010;
  --text-muted:  #7A6840;
  --border:      rgba(201, 168, 76, 0.22);
  --border-soft: rgba(201, 168, 76, 0.12);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.18);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.07);
  --radius:      18px;
  --radius-sm:   10px;
  --radius-xs:   6px;
  --nav-h:       72px;
  --transition:  0.28s ease;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  padding-top: var(--nav-h);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Scroll Progress Bar ───────────────────────────────────── */
#scrollBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Noise Texture Overlay ─────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* ── Typography Utilities ──────────────────────────────────── */
.gold-italic {
  color: var(--gold);
  font-style: italic;
}

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

/* ── Section Label ─────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

a#f-phone {
  display: none;
}  

/* ── Section Title & Desc ──────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 18px;
}

.section-title strong {
  font-weight: 700;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.76;
  max-width: 580px;
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  background-color: var(--off-white);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 18px;
  margin-top: 12px;
}

.page-hero-title strong {
  font-weight: 700;
}

.page-hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.76;
  max-width: 580px;
  font-weight: 300;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.1);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(var(--gold-rgb), 0.32);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.42);
}

.btn-gold:active {
  transform: translateY(0);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dk);
  background: rgba(var(--gold-rgb), 0.05);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 12.5px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

/* ── Chip / Tag ────────────────────────────────────────────── */
.chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold-dk);
}

/* ── Filter Bar ────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px 0 0;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.22s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ── Loading / Spinner ─────────────────────────────────────── */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 80px 0;
  color: var(--text-muted);
  font-size: 14px;
  grid-column: 1 / -1;
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Toast Notification ────────────────────────────────────── */
.toast-notification {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  z-index: 99999;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-deep);
  pointer-events: none;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-notification.error {
  background: #b91c1c;
}

/* ── Back to Top ───────────────────────────────────────────── */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-family: var(--font-body);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 6px 20px rgba(var(--gold-rgb), 0.4);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

#btt.visible {
  opacity: 1;
  pointer-events: all;
}

#btt:hover {
  transform: translateY(-3px);
}

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(var(--gold-rgb), 0.07), transparent);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 52px);
  color: #fff;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 18px;
}

.cta-band h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--dark);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.mq-dot {
  color: var(--gold-dk);
  font-size: 14px;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-h);
  transition: background 0.38s ease, box-shadow 0.38s ease, height 0.38s ease;
}

#mainNav.scrolled {
  background: rgba(255, 253, 245, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-gold);
  height: 62px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 3px 12px rgba(var(--gold-rgb), 0.36);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.nav-brand-icon img {
  height: 40px;   /* adjust as needed */
  width: auto;
}

.nav-brand:hover .nav-brand-icon {
  transform: rotate(-6deg) scale(1.06);
}

.nav-brand-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.4px;
  white-space: nowrap;
  text-shadow: 1px 1px 1px #000000;
}

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

/* Nav links */
.nav-links-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links-list a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 13px;
  border-radius: var(--radius-xs);
  transition: color 0.22s;
  position: relative;
  text-decoration: none;
}

.nav-links-list a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: left 0.28s, right 0.28s;
}

.nav-links-list a:hover,
.nav-links-list a.active {
  color: var(--gold-dk);
}

.nav-links-list a:hover::after,
.nav-links-list a.active::after {
  left: 13px;
  right: 13px;
}

.nav-cta-link {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk)) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(var(--gold-rgb), 0.32);
}

.nav-cta-link::after {
  display: none !important;
}

.nav-cta-link:hover {
  box-shadow: 0 6px 22px rgba(var(--gold-rgb), 0.44) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

/* Mobile nav overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 11, 7, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.38s ease;
}

.nav-mobile-overlay.open {
  transform: translateX(0);
}

.nav-mobile-overlay a {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 7px 0;
  transition: color 0.22s;
}

.nav-mobile-overlay a:hover {
  color: var(--gold);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 5%;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-mobile-close:hover {
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

   #mainFooter{
    background: var(--dark);
  padding: 72px 5% 36px;
  position: relative;
   }
.footer-bg {
   position: absolute;
  background-position: bottom;
  background-size: 100%;
  background-color: #000;
  background-size: cover;
  animation: spin 2s linear infinite;
  display:none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#mainFooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  max-width: 1240px;
  margin: 0 auto 52px;
}

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

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.82;
  margin: 14px 0 22px;
}

.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.871);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.22s;
  text-decoration: none;
  cursor: pointer;
  font-size: 22px;
  margin-right: 0px;
  transition: 0.3s ease;

}

.footer-social-btn:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.14);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}


.footer-grid a,.footer-brand-desc,.footer-links-list a{
  color:rgb(255, 255, 255);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

.footer-copy strong {
  color: var(--gold);
}




.fa-instagram{
  color: #fe52a2;
  font-size: 20px;
  transition: 0.3s ease;

}

.fa-linkedin-in{

  color: #42b6ff;
  font-size: 20px;
  transition: 0.3s ease;
}

.fa-facebook-f{
  color: #0066ff;
  font-size: 20px;
  transition: 0.3s ease;
}

.fa-twitter{
  color: #0099ff;
  font-size: 20px;
  transition: 0.3s ease;

}

.spark {
  position: absolute;
  width: 20px;
  height: 30px;
  background: #ffc400;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px #d4af37, 0 0 20px #d4af37;
  animation: sparkleFade 2.0s ease-out forwards;
}

@keyframes sparkleFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) translateY(-20px);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Global
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 960px) {
  .nav-links-list { display: none; }
  .nav-hamburger { display: flex; }
  :root { --nav-h: 66px; }
}

@media (max-width: 768px) {
  .section { padding-top: 72px; padding-bottom: 72px; }
  .cta-band { padding: 64px 5%; }
  .page-hero { padding: 64px 0 48px; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .cta-band-btns { flex-direction: column; align-items: stretch; }
  .cta-band-btns .btn { justify-content: center; }
  .section { padding-top: 56px; padding-bottom: 56px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .container { padding-left: 16px; padding-right: 16px; }
  #btt { bottom: 16px; right: 16px; width: 40px; height: 40px; }
  .nav-mobile-overlay a { font-size: 30px; }
}
