/* ==========================================================================
   FOXC GROUP — Ultra-Premium Dark Luxury Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Core Color Palette */
  --bg-dark: #07070f;
  --bg-card: rgba(18, 20, 36, 0.65);
  --bg-card-hover: rgba(25, 28, 50, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Gold Theme Accents */
  --gold-primary: #D4AF37;
  --gold-light: #F5D77F;
  --gold-dark: #997A15;
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #997A15 100%);
  --gold-glow: 0 0 35px rgba(212, 175, 55, 0.35);

  /* Division Theme Accents */
  --emerald-accent: #10B981;
  --emerald-gradient: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
  --emerald-glow: 0 0 45px rgba(16, 185, 129, 0.35);

  --blue-accent: #38BDF8;
  --blue-gradient: linear-gradient(135deg, #7DD3FC 0%, #38BDF8 50%, #0284C7 100%);
  --blue-glow: 0 0 45px rgba(56, 189, 248, 0.35);

  --violet-accent: #A855F7;
  --violet-gradient: linear-gradient(135deg, #E9D5FF 0%, #A855F7 50%, #7E22CE 100%);
  --violet-glow: 0 0 45px rgba(168, 85, 247, 0.35);

  /* Text Colors */
  --text-main: #FFFFFF;
  --text-muted: #D1D5DB;
  --text-gold: #E5C365;

  /* Fonts */
  --font-serif: 'Cormorant Garamond', 'Cinzel', Georgia, serif;
  --font-heading: 'Cinzel', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-signature: 'Bonheur Royale', cursive, Georgia, serif;

  /* Layout Constants */
  --header-height: 90px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-pill: 50px;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-main);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-emerald { color: var(--emerald-accent) !important; }
.text-blue { color: var(--blue-accent) !important; }
.text-violet { color: var(--violet-accent) !important; }
.text-gold-champagne { color: #F3E5AB !important; }

p, .text-muted, .small.text-muted, .text-light-muted {
  color: #E2E8F0 !important;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
}

.value-card p,
.team-card p,
.testimonial-card p,
.cta-box p {
  color: #E2E8F0 !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #07070f !important;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 14px 32px;
  border-radius: var(--border-radius-pill);
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  color: #000 !important;
}

.btn-buy-now {
  background: linear-gradient(135deg, #FFF0B3 0%, #D4AF37 50%, #997A15 100%);
  color: #050507 !important;
  font-weight: 800;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 15px 36px;
  border-radius: var(--border-radius-pill);
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 25px rgba(243, 229, 171, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-buy-now:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 45px rgba(212, 175, 55, 0.8), 0 0 40px rgba(243, 229, 171, 0.7);
  color: #000 !important;
}

.btn-outline-gold {
  background: transparent;
  color: var(--text-main) !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-outline-gold:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light) !important;
  box-shadow: var(--gold-glow);
}

/* Standardized Harmonious Book Action Buttons */
.book-actions-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.book-actions-group a,
.book-actions-group .btn-gold,
.book-actions-group .btn-emerald,
.book-actions-group .btn-outline-gold,
.book-actions-group .btn-buy-now {
  height: 46px;
  padding: 0 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-emerald {
  background: var(--emerald-gradient);
  color: #07070f !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--border-radius-pill);
  border: none;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: var(--emerald-glow);
}

.btn-blue {
  background: var(--blue-gradient);
  color: #07070f !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--border-radius-pill);
  border: none;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: var(--blue-glow);
}

.btn-violet {
  background: var(--violet-gradient);
  color: #07070f !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--border-radius-pill);
  border: none;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-violet:hover {
  transform: translateY(-2px);
  box-shadow: var(--violet-glow);
}

/* --------------------------------------------------------------------------
   3. Navbar Component
   -------------------------------------------------------------------------- */
.navbar-custom {
  height: var(--header-height);
  background: rgba(7, 7, 15, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar-custom.scrolled {
  background: rgba(7, 7, 15, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-main);
  margin-left: 12px;
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px !important;
  position: relative;
  transition: all 0.3s ease;
}

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

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

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

/* --------------------------------------------------------------------------
   4. Hero Section & Canvas
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 50%, rgba(20, 24, 55, 0.5) 0%, var(--bg-dark) 70%);
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

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

.welcome-badge {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.welcome-badge::before,
.welcome-badge::after {
  content: '◆';
  font-size: 0.6rem;
  color: var(--gold-primary);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text-gold);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.hero-desc {
  max-width: 540px;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Sphere Portal Container */
.portal-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.portal-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.portal-orb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 80px rgba(245, 215, 127, 0.4));
  animation: orbFloat 6s ease-in-out infinite, orbPulse 8s linear infinite;
}

.portal-floor-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.5) 0%, rgba(56, 189, 248, 0.3) 40%, transparent 80%);
  filter: blur(15px);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes orbPulse {
  0%, 100% { filter: drop-shadow(0 0 50px rgba(56, 189, 248, 0.4)) drop-shadow(0 0 90px rgba(168, 85, 247, 0.3)); }
  50% { filter: drop-shadow(0 0 70px rgba(16, 185, 129, 0.5)) drop-shadow(0 0 110px rgba(212, 175, 55, 0.4)); }
}

/* --------------------------------------------------------------------------
   5. Divisions Section
   -------------------------------------------------------------------------- */
.divisions-section {
  padding: 120px 0;
  position: relative;
}

.section-tag {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 80px;
}

.division-block {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 70px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.division-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* Division Color Themes */
.division-books {
  border-color: rgba(243, 229, 171, 0.35);
  box-shadow: 0 10px 35px rgba(243, 229, 171, 0.08);
}
.division-books:hover {
  border-color: rgba(243, 229, 171, 0.75);
  box-shadow: 0 20px 55px rgba(243, 229, 171, 0.25);
}

.division-ride {
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 10px 35px rgba(56, 189, 248, 0.08);
}
.division-ride:hover {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 20px 55px rgba(56, 189, 248, 0.2);
}

.division-perfumes {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 35px rgba(16, 185, 129, 0.08);
}
.division-perfumes:hover {
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow: 0 20px 55px rgba(16, 185, 129, 0.25);
}

.division-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.division-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.division-block:hover .division-img {
  transform: scale(1.04);
}

.division-content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.division-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 20px;
  width: fit-content;
}

.num-emerald { background: rgba(16, 185, 129, 0.15); color: var(--emerald-accent); border: 1px solid rgba(16, 185, 129, 0.3); }
.num-blue { background: rgba(56, 189, 248, 0.15); color: var(--blue-accent); border: 1px solid rgba(56, 189, 248, 0.3); }
.num-violet { background: rgba(168, 85, 247, 0.15); color: var(--violet-accent); border: 1px solid rgba(168, 85, 247, 0.3); }
.num-gold-champagne { background: rgba(243, 229, 171, 0.15); color: #F3E5AB; border: 1px solid rgba(243, 229, 171, 0.35); }

.division-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.division-subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--text-gold);
}

.division-desc {
  font-size: 1rem;
  margin-bottom: 35px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-info h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #FFF;
}

.feature-info p {
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   6. Experience & Counter Stats
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 80px 0;
  background: rgba(18, 20, 36, 0.4);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  margin-bottom: 100px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Why FOXC / Core Values
   -------------------------------------------------------------------------- */
.values-section {
  padding: 80px 0 120px;
}

.value-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 50px 35px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

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

.value-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 25px;
}

.value-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

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

/* --------------------------------------------------------------------------
   9. Call To Action Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 120px 0;
}

.cta-box {
  background: radial-gradient(circle at center, rgba(30, 35, 70, 0.8) 0%, rgba(7, 7, 15, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gold-glow);
}

.cta-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: 20px;
}

.cta-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   10. Footer Component
   -------------------------------------------------------------------------- */
.footer-custom {
  background: #040409;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 90px 0 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 15px;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 25px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-pill);
  padding: 12px 20px;
  color: #FFF;
  font-size: 0.85rem;
  flex-grow: 1;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--gold-primary);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold-primary);
  color: #07070f;
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --------------------------------------------------------------------------
   11. Leadership & Team Section
   -------------------------------------------------------------------------- */
.font-signature {
  font-family: var(--font-signature) !important;
  color: var(--gold-light);
  font-size: 2.4rem;
  line-height: 1.2;
}

.team-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: var(--gold-glow);
}

.team-img-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  background: radial-gradient(circle at center, rgba(30, 35, 65, 0.7) 0%, rgba(8, 9, 20, 0.98) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.team-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img {
  transform: scale(1.03);
}

.signature-img {
  max-height: 45px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  margin-top: 10px;
}

.team-card p {
  color: #c0c5d8 !important;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FOOTER STYLES (.footer-custom)
   -------------------------------------------------------------------------- */
.footer-custom {
  background: #05060b;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 0 35px;
  position: relative;
  z-index: 10;
}

.footer-heading {
  font-family: var(--font-cinzel, 'Cinzel', serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-primary, #D4AF37);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #C8C8C8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-light, #F5D77F);
  transform: translateX(4px);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #C8C8C8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold-primary, #D4AF37);
  color: #07070f;
  border-color: var(--gold-primary, #D4AF37);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 10px 20px;
  color: #FFF;
  font-size: 0.88rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--gold-primary, #D4AF37);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.footer-bottom {
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: #A0A5B5;
}


