/*
 * Main Stylesheet — Premium B2B Brand
 * Component-based architecture, reusable patterns
 */

/* ============================================
   NAVBAR (Sticky, Glass, Animated)
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 249, 250, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.nav-logo img, .nav-logo .logo-icon {
  width: 50px; height: 50px;
}

.nav-menu {
  display: flex; gap: 2.5rem; align-items: center;
}

.nav-menu a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-main);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  height: 2px; width: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover { color: var(--navy-deep); }

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.mobile-menu-btn span {
  width: 24px; height: 2px;
  background: var(--navy-deep);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 200px; height: 370px;
  background: var(--navy-deep);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 6rem 2rem 2rem;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.4);
  border-left: 2px solid var(--gold);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--text-on-dark);
  font-weight: 500;
  padding: 0.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #152340 60%, #1a2e4a 100%);
  color: var(--text-on-dark);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/backgrounds/hero-pattern.svg');
  opacity: 0.12;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.1rem;
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.25);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-label .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: glowPulse 2s infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: var(--font-size-hero);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-area {
  position: relative;
}

.hero-image-area img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(0,0,0,0.3);
  object-fit: cover;
  width: 100%;
  height: 520px;
  transition: transform 0.6s ease;
}

.hero-image-area:hover img {
  transform: scale(1.01);
}

.hero-image-overlay {
  position: absolute;
  bottom: -1rem; left: -1rem;
  background: var(--navy-deep);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
  max-width: 320px;
}

.hero-image-overlay h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.hero-image-overlay p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--navy-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
}

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

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-padding { padding: 6rem 0; }
.section-padding-lg { padding: 9rem 0; }

.section-heading {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 36px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}

.section-heading h2 {
  font-family: var(--font-head);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================
   ABOUT / FEATURES
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 2rem; left: -2rem;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.feature-list {
  display: flex; flex-direction: column; gap: 1.25rem;
}

.feature-item {
  display: flex; gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--brown-deep));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.feature-item h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--navy-deep);
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-leather));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { opacity: 1; }

.service-card .card-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,155,60,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--navy-deep);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 0;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--navy-deep);
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-body {
  padding: 1.75rem;
  flex: 1;
  display: flex; flex-direction: column;
}

.product-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--navy-deep);
}

.product-body .meta-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 0.6rem 0 1rem;
}

.product-body .meta-row span {
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  color: var(--text-muted);
  font-weight: 500;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: auto;
}

.product-body .btn {
  margin-top: 1.25rem;
  width: 100%; justify-content: center;
}

/* ============================================
   MANUFACTURING PROCESS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.process-card .step-number {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--navy-deep), var(--brown-deep));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15,23,42,0.15);
}

.process-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.process-connector {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.process-connector .line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, var(--gold), var(--brown-leather));
  border-radius: 1px;
  max-width: 60px;
}

.process-connector span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ============================================
   INDUSTRIES / STATS
   ============================================ */
.stats-bar {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(200,155,60,0.08), transparent 60%);
  pointer-events: none;
}

.stat-item { text-align: center; position: relative; z-index: 1; }

.stat-item .number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================
   WHY US / FEATURES
   ============================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex; gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-deep), var(--brown-deep));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(15,23,42,0.12);
}

.why-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card .icon-box {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-deep), var(--brown-deep));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(15,23,42,0.12);
}

.industry-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-deep);
  text-align: left;
  background: none;
}

.faq-btn:hover { color: var(--brown-leather); }

.faq-btn .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-btn.active .icon {
  transform: rotate(45deg);
  background: var(--navy-deep);
  color: var(--gold);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}

.faq-body.open {
  max-height: 400px;
  padding: 0 0 1.25rem 0;
}

.faq-body p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(200,155,60,0.12);
  line-height: 0.5;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

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

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

.testimonial-author h5 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--navy-deep);
  margin-bottom: 0.1rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   NEWS / BLOG PLACEHOLDER
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-card img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.news-card:hover img { transform: scale(1.05); }

.news-card .body {
  padding: 1.5rem;
}

.news-card .date {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.news-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
  line-height: 1.35;
}

.news-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #152340 60%, #1a2e4a 100%);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,155,60,0.1), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: var(--font-size-h2);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-icon, .footer-brand img {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(15,23,42,0.2);
  object-fit: contain;
  background: transparent;
}

.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

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

.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { border-color: var(--gold); }

.footer-newsletter button {
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.25s ease;
}

.footer-newsletter button:hover { background: var(--gold-hover); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.footer-bottom .links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-left: 1.5rem;
  transition: color 0.2s ease;
}

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

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
}

.floating-cta a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, var(--gold), var(--brown-leather));
  color: #fff;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(200,155,60,0.35);
  transition: all 0.3s ease;
  animation: float 4s ease-in-out infinite;
}

.floating-cta a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(200,155,60,0.45);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 7rem; right: 2rem;
  z-index: 800;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,155,60,0.3);
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: all 0.35s ease;
}

.back-to-top.visible {
  opacity: 1; pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--navy-deep); font-weight: 500; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 0.5rem; color: var(--border-medium); }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-leather));
  z-index: 2000;
  width: 0%;
  transition: width 0.05s linear;
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, #E5E7EB 25%, #F8F9FA 50%, #E5E7EB 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ============================================
   REVEAL ANIMATIONS (Intersection Observer)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.9s ease forwards;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.9s ease forwards;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.9s ease forwards;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form { max-width: 720px; margin: 0 auto; }
.contact-form label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--navy-deep);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--border-medium); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem; color: var(--text-main);
  background: var(--bg-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,155,60,0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.product-filter {
    background: #121212;
    color: #fff;
    border: 1px solid #444;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-filter:hover {
    background: #2b2b2b;
}

.product-filter.active {
    background: #c59d5f;
    color: #111;
    border-color: #c59d5f;
}
