/* ===================================================================
   UEFC — Light Premium Theme
   =================================================================== */

/* ── Global color overrides ── */
:root {
  --background-color: #ffffff;
  --default-color: #4a4a5a;
  --heading-color: #12121e;
  --accent-color: #c9a144;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #ffffff;
  --nav-hover-color: #c9a144;
  --nav-mobile-background-color: #12121e;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #4a4a5a;
  --nav-dropdown-hover-color: #c9a144;
}

body {
  background-color: #ffffff;
  color: #4a4a5a;
}

/* ===================================================================
   Section titles — replace pill badge with clean typographic style
   =================================================================== */
.section-title {
  text-align: center;
  padding-bottom: 56px;
  position: relative;
}

/* Override the pill-badge from main.css */
.section-title h2 {
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
  color: #c9a144 !important;
  display: block !important;
  margin-bottom: 0.75rem !important;
  font-family: var(--nav-font) !important;
}

/* Thin decorative line between label and title */
.section-title h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #c9a144;
  margin: 0.6rem auto 0;
  opacity: 0.6;
}

.section-title p {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: #12121e !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  font-family: var(--heading-font) !important;
}

.description-title {
  color: #c9a144;
}

/* ===================================================================
   Header
   =================================================================== */
.header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.5s ease !important;
}

.scrolled .header {
  background: rgba(18, 18, 30, 0.98) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25) !important;
  border-bottom: 1px solid rgba(201, 161, 68, 0.15) !important;
}

/* ===================================================================
   Hero — stays dark
   =================================================================== */
#hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 12, 22, 0.68) 0%,
    rgba(12, 12, 22, 0.45) 40%,
    rgba(12, 12, 22, 0.82) 100%
  );
  z-index: 2;
}

#hero .container {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 161, 68, 0.12);
  border: 1px solid rgba(201, 161, 68, 0.4);
  color: #c9a144;
  font-family: var(--nav-font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

#hero h2 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

#hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.countdown-item { text-align: center; }

.countdown-item span {
  display: block;
  font-family: var(--nav-font);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #c9a144;
  line-height: 1;
  background: rgba(201, 161, 68, 0.1);
  border: 1px solid rgba(201, 161, 68, 0.25);
  border-radius: 8px;
  padding: 14px 10px;
  min-width: 72px;
}

.countdown-item label {
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  display: block;
  font-family: var(--nav-font);
}

/* Hero CTA */
.btn-get-started {
  display: inline-block;
  padding: 14px 42px;
  background: linear-gradient(135deg, #c9a144 0%, #a07830 100%);
  color: #fff !important;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.btn-get-started:hover {
  background: linear-gradient(135deg, #ddb555 0%, #c9a144 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 161, 68, 0.35);
  color: #fff !important;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  animation: hero-bounce 2.5s ease-in-out infinite;
  transition: color 0.3s;
}

.hero-scroll:hover { color: #c9a144; }
.hero-scroll i { font-size: 1.4rem; }

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ===================================================================
   Stats strip
   =================================================================== */
.stats-section {
  background: #f9f7f2;
  border-top: 1px solid rgba(201, 161, 68, 0.2);
  border-bottom: 1px solid rgba(201, 161, 68, 0.2);
  padding: 3.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(201, 161, 68, 0.25);
}

@media (max-width: 575px) {
  .stat-item + .stat-item::before { display: none; }
}

.stat-number {
  font-family: var(--nav-font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #c9a144;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a9aaa;
  display: block;
  margin-top: 8px;
  font-family: var(--nav-font);
}

/* ===================================================================
   About
   =================================================================== */
#about {
  padding: 90px 0;
  background: #ffffff;
}

#about p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: #6a6a7a;
  max-width: 740px;
  margin: 0 auto;
}

/* ===================================================================
   Editions / Gallery
   =================================================================== */
#editions {
  padding: 90px 0;
  background: #f9f7f2;
}

.edition-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.edition-tab {
  background: #fff;
  border: 1px solid #e0ddd6;
  color: #9a9aaa;
  font-family: var(--nav-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
}

.edition-tab.active,
.edition-tab:hover {
  background: #c9a144;
  border-color: #c9a144;
  color: #fff;
}

.edition-content { display: none; }
.edition-content.active { display: block; }

.edition-description {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.85;
  color: #6a6a7a;
}

/* Masonry gallery */
.gallery-masonry {
  columns: 4;
  column-gap: 5px;
  margin-bottom: 3rem;
}

@media (max-width: 991px) { .gallery-masonry { columns: 3; } }
@media (max-width: 575px)  { .gallery-masonry { columns: 2; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(18, 18, 30, 0.45);
}

.gallery-overlay i {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Laureats */
.laureats-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
}

.laureats-label {
  font-family: var(--nav-font);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a144;
  margin-bottom: 1rem;
  display: block;
}

.laureats-wrap img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #e8e4db;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* ===================================================================
   Partners / Features
   =================================================================== */
#features {
  padding: 90px 0;
  background: #ffffff;
}

#features p {
  color: #6a6a7a;
  line-height: 1.85;
  margin-bottom: 1rem;
}

#features strong {
  color: #12121e;
}

/* ===================================================================
   Call to Action — stays dark
   =================================================================== */
#call-to-action {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

#call-to-action > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

#call-to-action h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #c9a144;
  margin-bottom: 1.25rem;
}

#call-to-action p { color: rgba(255, 255, 255, 0.65); }

/* Pay / Buy buttons */
.pay-btn,
.buy-btn {
  display: inline-block;
  padding: 14px 42px;
  background: linear-gradient(135deg, #c9a144 0%, #a07830 100%);
  color: #fff !important;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.25rem;
}

.pay-btn:hover,
.buy-btn:hover {
  background: linear-gradient(135deg, #ddb555 0%, #c9a144 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 161, 68, 0.3);
}

/* ===================================================================
   Prizes — Ultra-Modern 3D Trading Cards
   =================================================================== */
#team {
  padding: 120px 0;
  background: radial-gradient(circle at center, #ffffff 0%, #f9f7f2 100%);
  overflow: hidden;
}

.prizes-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Podium Layout ── */
.prizes-podium {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Equal heights */
  gap: 2rem;
  margin-bottom: 4rem;
}

.prizes-podium .prize-card {
  flex: 1;
}

@media (max-width: 991px) {
  .prizes-podium { flex-direction: column; align-items: center; }
  .prizes-podium .prize-card { width: 100%; max-width: 450px; }
  
  /* Enforce chronological order on mobile (1st, 2nd, 3rd) */
  .prize-gold { order: 1; }
  .prize-silver { order: 2; }
  .prize-bronze { order: 3; }
}

/* ── Secondary Layout ── */
.prizes-secondary {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Equal heights */
  gap: 2rem;
  flex-wrap: wrap;
}

/* ── The Card ── */
.prize-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 3rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
}

/* Ranking Badge (Floating) */
.prize-rank-badge {
  position: absolute;
  top: -25px;
  right: -15px;
  width: 70px;
  height: 70px;
  background: #12121e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 10;
  border: 3px solid #fff;
}

.trophy-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  filter: drop-shadow(0 0 10px rgba(201, 161, 68, 0.4));
}

/* Glare Effect */
.glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%), 
    rgba(255,255,255,0.4) 0%, 
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 5;
  border-radius: inherit;
}

.prize-card:hover .glare {
  opacity: 1;
}

.prize-card .prize-badge,
.prize-card h4,
.prize-card .prize-list {
  /* No lift needed without 3D */
}

.prize-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(18, 18, 30, 0.05);
  color: #12121e;
  font-family: var(--nav-font);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.prize-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #12121e;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.prize-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.prize-list li {
  font-size: 0.9rem;
  color: #4a4a5a;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.prize-list li:last-child { border-bottom: none; }
.prize-list li i { color: #c9a144; font-size: 1.1rem; }

/* ── Tiered Variants ── */

/* GOLD (#1) */
.prize-gold {
  min-height: 520px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255, 251, 230, 0.8));
  border: 1px solid rgba(201, 161, 68, 0.4);
}
.prize-gold .prize-rank-badge { background: #12121e; }
.prize-gold .prize-badge { background: #c9a144; color: #fff; }
.prize-gold h4 { font-size: 1.8rem; color: #c9a144; }
.prize-gold::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #c9a144, transparent, #c9a144);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.3;
}

/* SILVER (#2) */
.prize-silver {
  min-height: 460px;
  border: 1px solid rgba(180, 180, 180, 0.4);
}
.prize-silver .prize-rank-badge { background: linear-gradient(135deg, #b4b4b4, #888); }

/* BRONZE (#3) */
.prize-bronze {
  min-height: 460px;
  border: 1px solid rgba(205, 127, 50, 0.4);
}
.prize-bronze .prize-rank-badge { background: linear-gradient(135deg, #cd7f32, #9a5f25); }

/* Secondary Cards */
.prizes-secondary .prize-card {
  width: 380px;
  max-width: 100%;
}

/* Reflection Effect */
.prize-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: rgba(0,0,0,0.1);
  filter: blur(15px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  transition: transform 0.3s;
}

.prize-card:hover::before {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Responsive adjustments */

.footer .footer-top {
  border-top: none !important;
  padding-top: 60px;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 30px 0 !important;
  margin-top: 40px !important;
}

/* Partners background to white */
.partner-logos {
  background: #ffffff !important;
}

/* Call to Action: Lighter overlay and parallax (fixed) image */
.call-to-action {
  overflow: hidden;
  position: relative;
  clip-path: inset(0); /* Necessary for fixed image container */
}

.call-to-action img {
  position: fixed !important; /* Fixed background for parallax effect */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  background: rgba(0, 0, 0, 0.05) !important;
}

/* ===================================================================
   Footer Accessibility & Style Refinement
   =================================================================== */
.footer.dark-background,
.footer .copyright {
  background-color: #060606 !important; /* Uniform deep black for the entire footer */
}

.footer .footer-about p,
.footer .footer-contact p,
.footer .footer-links ul a,
.footer .copyright p {
  color: #ffffff !important; 
  opacity: 1 !important;
}

/* Phone & Email: Gold style by default */
.footer .footer-contact a {
  color: var(--accent-color) !important;
  font-weight: 600;
}

.footer .footer-contact a:hover {
  text-decoration: underline !important;
}

/* Social Icons: White background, gold icon by default */
.footer .social-links a {
  background: #ffffff !important;
  color: var(--accent-color) !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer .social-links a:hover {
  transform: translateY(-5px) rotate(360deg);
  background: var(--accent-color) !important;
  color: #ffffff !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 10px 20px rgba(201, 161, 68, 0.4);
}

.footer h4 {
  color: #ffffff !important;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
  margin-bottom: 20px !important;
  padding-bottom: 5px;
}

/* ===================================================================
   Pricing
   =================================================================== */
#pricing {
  padding: 90px 0;
  background: #ffffff;
}

.pricing-item.featured {
  background: #fffdf7;
  border: 1px solid #e8dfc8;
  border-top: 3px solid #c9a144;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(201, 161, 68, 0.1);
}

.pricing-item .icon {
  font-size: 2.5rem;
  color: #c9a144;
  margin-bottom: 1rem;
}

.pricing-item h4 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #12121e;
  margin-bottom: 1.5rem;
}

.pricing-item h4 sup {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9a144;
  vertical-align: super;
}

/* ===================================================================
   Partner logos — CSS marquee
   =================================================================== */
#partner-logos {
  padding: 60px 0;
  overflow: hidden;
  background: #f9f7f2;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%, black 8%, black 92%, transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%, black 8%, black 92%, transparent 100%
  );
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

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

.marquee-track img {
  height: 70px;
  width: auto;
  object-fit: contain;
  padding: 0 28px;
  filter: grayscale(0.3) opacity(0.7);
  transition: filter 0.35s;
  flex-shrink: 0;
}

.marquee-track img:hover { filter: grayscale(0) opacity(1); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================================================
   FAQ — Modern UX
   =================================================================== */
#faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9f7f2 0%, #ffffff 100%);
}

/* Search bar */
.faq-search-wrapper {
  max-width: 500px;
  margin: 2rem auto 0;
}

.search-box {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(201, 161, 68, 0.2);
  border-radius: 50px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.search-box:focus-within {
  border-color: #c9a144;
  box-shadow: 0 8px 25px rgba(201, 161, 68, 0.12);
  transform: translateY(-2px);
}

.search-box i {
  color: #c9a144;
  font-size: 1.1rem;
  margin-right: 12px;
}

.search-box input {
  border: none;
  background: transparent;
  width: 100%;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #4a4a5a;
  outline: none;
}

.search-box input::placeholder {
  color: #9a9aaa;
  font-weight: 300;
}

/* FAQ Items */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(201, 161, 68, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(201, 161, 68, 0.3);
}

.faq-item.faq-active {
  border-color: #c9a144;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(201, 161, 68, 0.08);
}

.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #12121e;
  padding: 1.15rem 4rem 1.15rem 1.75rem;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: all 0.3s;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.faq-item:hover h3 {
  color: #c9a144;
}

.faq-item.faq-active h3 {
  color: #c9a144;
  padding-bottom: 0.6rem;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 1.75rem;
  opacity: 0;
}

.faq-active .faq-content {
  max-height: 800px;
  padding-bottom: 1.25rem;
  opacity: 1;
}

.faq-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #6a6a7a;
  line-height: 1.8;
}

.faq-content ul {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.faq-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}

.faq-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c9a144;
  font-weight: bold;
}

.faq-content strong {
  color: #12121e;
  font-weight: 600;
}

/* Toggle icon */
.faq-toggle {
  position: absolute;
  right: 1.75rem;
  top: 1.15rem;
  width: 24px;
  height: 24px;
  background: rgba(201, 161, 68, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #c9a144;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
  background: #c9a144;
  color: #ffffff;
}

.faq-active .faq-toggle {
  transform: rotate(90deg);
  background: #c9a144;
  color: #ffffff;
}

/* FAQ Footer */
.faq-footer p {
  color: #9a9aaa;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.btn-faq-contact {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #c9a144;
  color: #c9a144;
  border-radius: 50px;
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-faq-contact:hover {
  background: #c9a144;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(201, 161, 68, 0.2);
  transform: translateY(-2px);
}

/* ===================================================================
   Contact
   =================================================================== */
#contact {
  padding: 90px 0;
  background: #ffffff;
}

.info-item {
  background: #fafaf8;
  border: 1px solid #ece8e0;
  border-radius: 10px;
  padding: 1.5rem;
  gap: 1.25rem;
  height: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
  align-items: flex-start !important;
}

.info-item:hover {
  border-color: #c9a144;
  box-shadow: 0 4px 20px rgba(201, 161, 68, 0.1);
}

.info-item i {
  font-size: 1.4rem;
  color: #c9a144;
  margin-top: 2px;
}

.info-item h3 {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a144;
  margin-bottom: 0.4rem;
  font-family: var(--nav-font);
  font-weight: 700;
}

.info-item p,
.info-item a {
  color: #6a6a7a;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.info-item a:hover { color: #c9a144; }

/* ===================================================================
   Footer — stays dark
   =================================================================== */
.footer {
  background: #0e0e1a !important;
  border-top: none;
}

.footer .sitename {
  color: #c9a144 !important;
  font-weight: 800;
  font-size: 1.5rem;
}

.footer-about p {
  color: #4a4a5e !important;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.footer h4 {
  color: rgba(240, 240, 250, 0.6) !important;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--nav-font);
}

.footer-links ul  { list-style: none !important; padding: 0 !important; }
.footer-links li  { margin-bottom: 0.6rem; }
.footer-links a   { color: #4a4a5e !important; font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: #c9a144 !important; }

.footer-contact p,
.footer-contact a { color: #4a4a5e !important; font-size: 0.88rem; }
.footer-contact a:hover { color: #c9a144 !important; }

.footer .social-links a {
  width: 36px !important; height: 36px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  color: #505062 !important;
  font-size: 0.9rem !important;
  transition: all 0.3s !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 6px !important;
}

.footer .social-links a:hover {
  background: rgba(201, 161, 68, 0.15) !important;
  border-color: rgba(201, 161, 68, 0.4) !important;
  color: #c9a144 !important;
}

.footer .copyright {
  color: #282834 !important;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

/* ===================================================================
   Utility
   =================================================================== */
.text-justify { text-align: justify; }

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