/* ── 01. DESIGN VARIABLES & RESET ── */
:root {
  /* Premium Palette */
  --bg-primary: hsl(0, 0%, 0%);
  --bg-secondary: hsl(0, 0%, 0%);
  --bg-glass: hsl(0, 0%, 0%);

  --gold-primary: hsl(43, 100%, 50%);
  --gold-glow: hsl(43, 100%, 65%);
  --gold-dark: hsl(40, 90%, 35%);
  --gold-light: hsl(45, 100%, 80%);

  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --text-dark: #121212;

  --border-glass: rgba(255, 223, 0, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── 02. TYPOGRAPHY ── */
h1,
h2,
h3,
.brand-title {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

p,
span,
a,
button {
  font-family: 'Inter', sans-serif;
}

/* Gold Gradient Text */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── 03. NAVIGATION NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.8rem 0;
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Group */
.logo-group {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.8rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.brand-tagline {
  color: var(--gold-primary);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

/* Menu links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold-primary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Language Selector Widget */
.lang-selector-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 223, 0, 0.15);
  padding: 0.45rem 0.85rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 223, 0, 0.4);
  box-shadow: 0 0 12px rgba(255, 223, 0, 0.1);
}

.lang-globe-icon {
  color: var(--gold-primary);
  font-size: 1.15rem;
}

.lang-current-text {
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Outfit', sans-serif;
}

.lang-arrow-icon {
  color: var(--text-muted);
  font-size: 1.15rem;
  transition: var(--transition-fast);
}

.lang-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 223, 0, 0.2);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 223, 0, 0.05);
  padding: 0.5rem 0;
  min-width: 150px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-selector-wrapper.active .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-selector-wrapper.active .lang-arrow-icon {
  transform: rotate(180deg);
  color: var(--gold-primary);
}

.lang-option {
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-option:hover {
  color: var(--text-white);
  background: rgba(255, 223, 0, 0.08);
}

.lang-option.active {
  color: var(--gold-primary);
  font-weight: 600;
  background: rgba(255, 223, 0, 0.04);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}

/* ── 04. HERO SECTION ── */
.hero-section {
  position: relative;
  padding: 8rem 0 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.95) 100%), url('background.jpg') no-repeat center center/cover;
}

.hero-glow-left {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-right {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 3rem;
  width: 100%;
}

/* Left Hero Column */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

/* Download Blocks */
.download-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.download-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
}

.download-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  height: 80px;
  width: 270px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 223, 0, 0.25);
  background: #000;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.store-badge:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 0 25px rgba(255, 223, 0, 0.35);
}

.badge-svg {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

/* Center Background Image Frame */
.hero-silhouette-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 223, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 223, 0, 0.1);
  background: var(--bg-secondary);
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.hero-silhouette-wrapper:hover .hero-bg-image {
  transform: scale(1.05);
  opacity: 1;
}

/* ── 05. HIGH-FIDELITY MOBILE PHONES IMAGE ── */
.hero-mockups {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-phones-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 25px rgba(255, 223, 0, 0.15));
  display: block;
  transition: var(--transition-smooth);
}

.hero-phones-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 35px rgba(255, 223, 0, 0.25));
}

/* Float Animations */
.float-animation {
  animation: float 6s infinite ease-in-out;
}

.delay-1 {
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.7;
    text-shadow: 0 0 8px var(--gold-glow);
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
    text-shadow: 0 0 20px var(--gold-glow);
  }

  100% {
    transform: scale(1);
    opacity: 0.7;
    text-shadow: 0 0 8px var(--gold-glow);
  }
}

/* ── 06. BENEFITS / FEATURES SECTION ── */
.benefits-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-gold-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 3.5rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-primary) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.benefit-card {
  background: rgba(18, 18, 18, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  background: rgba(255, 223, 0, 0.03);
  box-shadow: 0 10px 25px rgba(255, 223, 0, 0.05), inset 0 0 8px rgba(255, 223, 0, 0.05);
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 223, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: radial-gradient(circle, rgba(255, 223, 0, 0.05) 0%, transparent 80%);
  transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon-wrapper {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
}

.benefit-icon {
  font-size: 1.5rem !important;
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
  color: var(--text-dark);
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ── 07. SHOWCASE SECTION ── */
.showcase-section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--bg-primary);
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content {
  display: flex;
  flex-direction: column;
}

.showcase-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.showcase-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 440px;
}

/* Model Photo Showcase */
.showcase-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 223, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 223, 0, 0.15);
  background: var(--bg-secondary);
  transition: var(--transition-smooth);
}

.showcase-people-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.showcase-img-wrapper:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 223, 0, 0.3);
}

.showcase-img-wrapper:hover .showcase-people-img {
  transform: scale(1.03);
}

/* ── 08. FAQ / SSS SECTION ── */
.faq-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.faq-accordion-group {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.4);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-trigger:hover {
  color: var(--gold-primary);
}

.faq-arrow {
  color: var(--text-muted);
  transition: var(--transition-smooth);
  font-size: 1.25rem !important;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: var(--transition-smooth);
}

.faq-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  padding-bottom: 1.25rem;
}

/* Active states for accordion open */
.faq-item.active {
  border-color: var(--gold-primary);
  background: rgba(255, 223, 0, 0.01);
}

.faq-item.active .faq-trigger {
  color: var(--gold-primary);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--gold-primary);
}

.faq-item.active .faq-content {
  max-height: 200px;
}

/* ── 09. FOOTER ── */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 3rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo-link {
  display: block;
  transition: var(--transition-smooth);
}

.footer-logo-img {
  max-width: 100%;
  height: auto;
  opacity: 0.85;
  transition: var(--transition-smooth);
  display: block;
  margin: 0 auto;
}

.footer-logo-img:hover {
  opacity: 1;
  transform: scale(1.03);
  filter: drop-shadow(0 0 12px rgba(255, 223, 0, 0.3));
}

.footer-meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-meta p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-note {
  color: var(--gold-primary) !important;
  font-size: 0.65rem !important;
  opacity: 0.6;
}

/* ── 10. MEDIA QUERIES (RESPONSIVE LAYOUT) ── */

/* 10.1 Large Desktop Devices (>= 1200px) */
@media (min-width: 1200px) {
  /* Fits the double column perfectly */
}

/* 10.2 Medium/Small Desktop Devices (< 1200px) */
@media (max-width: 1199px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-silhouette-wrapper {
    display: none;
    /* Hide the moon silhouette on medium screens to keep mockup size premium */
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 10.3 Tablets & Large Portrait Screens (< 992px) */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 160px !important;
    padding-bottom: 4rem !important;
    min-height: auto !important;
    align-items: flex-start !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
    margin-top: 40px !important;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-mockups {
    justify-content: center;
  }

  .showcase-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .showcase-content {
    align-items: center;
  }

  .showcase-img-wrapper {
    margin-top: 1rem;
  }
}

/* 10.4 Mobile Phones & Small Tablets (< 768px) */
@media (max-width: 767px) {

  /* Navigation Hamburger */
  .hamburger {
    display: block;
  }

  .lang-selector-wrapper {
    margin-left: auto;
    margin-right: 1.25rem;
  }

  .store-badge {
    height: 60px;
    width: 202px;
    border-radius: 9px;
    border-width: 1.5px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    gap: 1.5rem;
    flex-direction: column;
    background-color: rgba(6, 6, 6, 0.98);
    width: 100%;
    height: calc(100vh - 60px);
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  /* Hero Section Title */
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  /* Scale Mockups Down on mobile to fit nicely side by side */
  .hero-mockups {
    gap: 0.8rem;
  }

  .phone-mockup {
    width: 145px;
    height: 298px;
    border-radius: 20px;
    border-width: 2.5px;
  }

  .phone-notch {
    width: 55px;
    height: 10px;
  }

  .phone-screen {
    font-size: 5.5px;
    padding-top: 10px;
  }

  .mock-app-bar {
    font-size: 6px;
  }

  .mock-app-title {
    font-size: 6px;
  }

  .mock-photo-wrapper {
    height: 100px;
  }

  .mock-photo-info {
    padding: 3px;
  }

  .mock-photo-name {
    font-size: 6px;
  }

  .mock-photo-loc {
    font-size: 4px;
  }

  .mock-photo-details {
    font-size: 4px;
  }

  .mock-btn-minus,
  .mock-btn-plus {
    width: 10px;
    height: 10px;
    font-size: 6px;
  }

  .mock-score-circle {
    width: 26px;
    height: 26px;
    border-width: 1px;
  }

  .mock-score-num {
    font-size: 9px;
  }

  .mock-score-label {
    font-size: 3px;
  }

  .mock-keypad {
    gap: 2px;
  }

  .mock-keypad span {
    font-size: 4.5px;
  }

  /* Leaderboard mockup mobile scaling */
  .podium-avatar {
    width: 18px;
    height: 18px;
  }

  .podium-avatar.main {
    width: 22px;
    height: 22px;
  }

  .podium-name {
    font-size: 4.5px;
  }

  .podium-score {
    font-size: 4px;
  }

  .mock-board-list {
    max-height: 80px;
    gap: 2px;
  }

  .mock-list-item {
    padding: 2px 4px;
    gap: 4px;
  }

  .list-avatar {
    width: 8px;
    height: 8px;
  }

  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .benefit-card {
    padding: 1.25rem 0.8rem;
  }

  /* Model Grid Showcase mobile scaling */
  .showcase-grid {
    grid-template-columns: 80px 130px 80px;
    grid-template-rows: 85px 85px;
    gap: 8px;
  }

  .showcase-grid .model-card:nth-child(1),
  .showcase-grid .model-card:nth-child(2),
  .showcase-grid .model-card:nth-child(4),
  .showcase-grid .model-card:nth-child(5) {
    height: 75px;
  }

  .main-card {
    height: 160px;
  }
}

/* 10.5 Tiny Mobile Phones (< 360px) */
@media (max-width: 359px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-mockups {
    flex-direction: column;
    align-items: center;
  }
}

/* ── 11. SUPPORT & PRIVACY PAGES STYLING ── */

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: start;
}

.support-left-col,
.support-right-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.support-info-card,
.support-form-container,
.privacy-widget-card {
  background: rgba(18, 18, 18, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.support-info-card:hover,
.support-form-container:hover,
.privacy-widget-card:hover {
  border-color: rgba(255, 223, 0, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 223, 0, 0.03);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.info-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.info-card-icon {
  color: var(--gold-primary);
  font-size: 1.75rem !important;
}

.support-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.email-copy-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  gap: 1rem;
}

.email-text {
  font-family: 'Inter', sans-serif;
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.95rem;
  word-break: break-all;
}

.copy-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-primary);
  color: var(--text-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.copy-email-btn:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 12px rgba(255, 223, 0, 0.3);
}

.copy-email-btn.copied {
  background: #28a745;
  color: #fff;
}

.copy-email-btn.copied .copy-icon {
  display: none;
}

.support-section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  border-left: 3px solid var(--gold-primary);
  padding-left: 0.8rem;
  letter-spacing: 0.02em;
}

/* Form Styles */
.form-row {
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
  color: var(--text-white);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(255, 223, 0, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1rem;
}

.form-group select option {
  background-color: #121212;
  color: #fff;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold-primary) 100%);
  color: var(--text-dark);
  border: none;
  padding: 1.1rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 223, 0, 0.35);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success Message Form replacement card */
.success-message-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1rem;
  gap: 1.2rem;
}

.success-icon {
  font-size: 4rem !important;
  color: #28a745;
}

.success-text {
  font-family: 'Inter', sans-serif;
  color: var(--text-white);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Privacy Widget */
.privacy-widget-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.security-icon {
  color: var(--gold-primary);
  font-size: 2.2rem !important;
}

.widget-content h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--text-white);
}

.widget-content p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.widget-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.widget-link span {
  font-size: 0.85rem;
  font-weight: 700;
}

.widget-link .material-icons-outlined {
  font-size: 1.1rem !important;
  transition: var(--transition-fast);
}

.widget-link:hover {
  color: var(--gold-glow);
}

.widget-link:hover .material-icons-outlined {
  transform: translateX(4px);
}

/* Footer links styling */
.footer-link-item:hover {
  color: var(--gold-primary) !important;
  text-shadow: 0 0 8px rgba(255, 223, 0, 0.3);
}

/* Support and Privacy Responsiveness */
@media (max-width: 991px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .legal-document-container {
    padding: 1.8rem !important;
  }
  
  .support-info-card,
  .support-form-container,
  .privacy-widget-card {
    padding: 1.5rem;
  }
}