/* ============================================
   Premium Landing Page CSS
   CoinDiger - Comprehensive Styling
   ============================================ */

/* ============================================
   ROOT VARIABLES & GLOBAL STYLES
   ============================================ */

:root {
  --warm-gold: #FFB84D;
  --warm-amber: #FFA500;
  --warm-copper: #D4A574;
  --warm-light: #FFF8E7;
  --dark-bg: #0F0F0F;
  --dark-secondary: #1A1A1A;
  --dark-tertiary: #2A2A2A;
}

/* Global Page Styles */
body {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  color: #E0E0E0;
}

html {
  scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 180, 77, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFB84D, #FFA500);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FFA500, #FF9500);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar-premium {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.92) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 180, 77, 0.1);
  box-shadow: 0 8px 32px rgba(255, 180, 77, 0.05);
}

.navbar-brand-logo {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar-brand-logo img {
  filter: drop-shadow(0 0 10px rgba(255, 180, 77, 0.3));
}

.navbar-brand-text {
  background: linear-gradient(135deg, #FFB84D, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 22px;
}

.nav-link-custom {
  transition: all 0.3s;
  position: relative;
}

.nav-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFB84D, #FFA500);
  transition: width 0.3s;
}

.nav-link-custom:hover .nav-underline {
  width: 100%;
}

.nav-btn-primary {
  background: linear-gradient(135deg, #FFB84D, #FFA500);
  color: #0F0F0F;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 180, 77, 0.3);
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 180, 77, 0.4);
}

.nav-btn-secondary {
  background: rgba(255, 180, 77, 0.1);
  color: #FFB84D;
  border: 1.5px solid rgba(255, 180, 77, 0.5);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 180, 77, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  padding: 5rem 2rem 4rem;
  margin-top: 5rem;
}

.hero-container-wrapper {
  position: relative;
  z-index: 1;
}

.hero-glow-top {
  position: absolute;
  top: -150px;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 180, 77, 0.12), transparent);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-bottom {
  position: absolute;
  bottom: -200px;
  right: 3%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.1), transparent);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero-row {
  position: relative;
  z-index: 1;
}

.hero-col-left {
  padding: 1rem;
}

.hero-content-wrapper {
  padding: 2.5rem 0;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.18) 0%, rgba(255, 165, 0, 0.1) 100%);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 180, 77, 0.25);
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(255, 180, 77, 0.08);
  transition: all 0.3s ease;
}

.hero-badge-text {
  color: #FFB84D;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.8rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-gradient {
  background: linear-gradient(135deg, #FFB84D 0%, #FFA500 50%, #FFB84D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4.2rem;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.85;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features-list {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.06), rgba(255, 165, 0, 0.02));
  border-radius: 16px;
  border: 1px solid rgba(255, 180, 77, 0.1);
  transition: all 0.3s ease;
}

.hero-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.25), rgba(255, 165, 0, 0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 180, 77, 0.35);
  box-shadow: 0 4px 12px rgba(255, 180, 77, 0.1);
  flex-shrink: 0;
}

.hero-feature-icon i {
  color: #FFB84D;
  font-size: 1.3rem;
}

.hero-feature-text {
  font-size: 1rem;
  opacity: 0.92;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #FFB84D, #FFA500);
  color: #0F0F0F;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 35px rgba(255, 180, 77, 0.35);
  padding: 0.85rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #FFA500, #FFB84D);
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 180, 77, 0.45);
  color: #0F0F0F !important;
}

.hero-btn-secondary {
  background: rgba(255, 180, 77, 0.08);
  color: #FFB84D;
  border: 2px solid rgba(255, 180, 77, 0.45);
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  padding: 0.85rem 2.2rem;
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 180, 77, 0.15);
  border-color: rgba(255, 180, 77, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 180, 77, 0.25);
  color: #FFB84D !important;
}

.hero-trust-section {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 180, 77, 0.15);
  border-bottom: 1px solid rgba(255, 180, 77, 0.15);
  margin-bottom: 2.5rem;
}

.hero-trust-item {
  flex: 1;
  min-width: 120px;
}

.hero-trust-item:not(:first-child) {
  border-left: 2px solid rgba(255, 180, 77, 0.2);
  padding-left: 2.5rem;
}

.hero-trust-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.hero-trust-number {
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
}

.hero-trust-label {
  color: #FFB84D;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-google-signin {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 180, 77, 0.1);
}

.hero-google-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Hero Right Column */
.hero-col-right {
  padding: 1rem;
}

.hero-visual-container {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.1) 0%, rgba(255, 165, 0, 0.04) 100%);
  border: 1.5px solid rgba(255, 180, 77, 0.2);
  border-radius: 35px;
  backdrop-filter: blur(25px);
  box-shadow: 0 30px 80px rgba(255, 180, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.hero-floating-element {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.2), rgba(255, 165, 0, 0.08));
  border: 1.5px solid rgba(255, 180, 77, 0.25);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(255, 180, 77, 0.15);
}

.hero-floating-top {
  top: 30px;
  right: 40px;
  width: 90px;
  height: 90px;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-bottom {
  bottom: 50px;
  left: 40px;
  width: 110px;
  height: 110px;
  animation: float 4s ease-in-out infinite reverse;
}

.hero-floating-icon {
  color: #FFB84D;
}

.hero-floating-icon-bottom {
  color: #FFA500;
}

.hero-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.glow-image {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 0 35px rgba(255, 180, 77, 0.6));
  animation: float 3s ease-in-out infinite;
  margin-bottom: 2.5rem;
}

.hero-card-content {
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.12), rgba(255, 165, 0, 0.06));
  padding: 2.5rem 2rem;
  border-radius: 25px;
  border: 1.5px solid rgba(255, 180, 77, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-card-label {
  color: #FFB84D;
  font-weight: 800;
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 1.2px;
}

.hero-card-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0.7rem 0;
}

.hero-card-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-28px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
  background: linear-gradient(180deg, #0F0F0F 0%, #1A1A1A 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.features-glow-right {
  position: absolute;
  top: 100px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 180, 77, 0.08), transparent);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.features-glow-left {
  position: absolute;
  bottom: 100px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.08), transparent);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.section-header {
  position: relative;
  z-index: 1;
}

.section-tag {
  color: #FFB84D;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.8rem;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  opacity: 0.85;
}

.premium-card {
  background: linear-gradient(135deg, rgba(50, 40, 30, 0.6) 0%, rgba(40, 35, 30, 0.8) 100%);
  border: 1px solid rgba(255, 180, 77, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.premium-card:hover {
  background: linear-gradient(135deg, rgba(60, 50, 40, 0.8) 0%, rgba(50, 45, 40, 1) 100%);
  border-color: rgba(255, 180, 77, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 180, 77, 0.15);
}

.premium-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 180, 77, 0.2), transparent);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
}

.premium-card:hover .premium-card-glow {
  opacity: 1;
}

.premium-card-content {
  position: relative;
  z-index: 1;
}

.premium-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.2), rgba(255, 165, 0, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 180, 77, 0.2);
}

.premium-card-icon i {
  color: #FFB84D;
}

.premium-card-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.premium-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.ads-section {
  padding: 2rem 0;
}

/* ============================================
   CURRENCY/PAYMENT METHODS SECTION
   ============================================ */

.currency-section {
  background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
  padding: 4rem 0;
}

.currency-card {
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.08), rgba(255, 165, 0, 0.05));
  border: 1px solid rgba(255, 180, 77, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.currency-image {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 180, 77, 0.2);
  box-shadow: 0 8px 20px rgba(255, 180, 77, 0.1);
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================
   PAYMENT PROOF SECTION
   ============================================ */

.payment-proof-section {
  background: linear-gradient(180deg, #0F0F0F 0%, #1A1A1A 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.payment-proof-glow-top {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 180, 77, 0.15), transparent);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.payment-proof-glow-bottom {
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.1), transparent);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.payment-proof-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.payment-proof-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.15), rgba(255, 165, 0, 0.08));
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 180, 77, 0.2);
  margin-bottom: 1.5rem;
}

.payment-proof-badge-text {
  color: #FFB84D;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.payment-proof-title {
  font-size: 3.2rem;
  letter-spacing: -1px;
  line-height: 1.2;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFB84D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.payment-proof-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
}

.marquee-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.withdrawal-card {
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
  border: 1.5px solid rgba(255, 180, 77, 0.15);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 180, 77, 0.1);
  transition: all 0.3s ease;
  min-width: 300px;
  position: relative;
  overflow: hidden;
}

.withdrawal-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 180, 77, 0.1), transparent);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
}

.withdrawal-card-content {
  position: relative;
  z-index: 1;
}

.withdrawal-currency-img {
  width: 56px;
  height: 56px;
  border: 2.5px solid rgba(255, 180, 77, 0.25);
  box-shadow: 0 4px 12px rgba(255, 180, 77, 0.15);
  border-radius: 50%;
  object-fit: cover;
}

.withdrawal-username {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.withdrawal-amount {
  font-size: 0.9rem;
}

.withdrawal-amount-value {
  color: #FFB84D;
  font-weight: 700;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
  background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
  padding: 4rem 0;
}

.partner-logo-container {
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.08), rgba(255, 165, 0, 0.05));
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 180, 77, 0.1);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.partner-logo-container:hover {
  border-color: rgba(255, 180, 77, 0.3);
  box-shadow: 0 8px 25px rgba(255, 180, 77, 0.15);
}

.partner-logo-img {
  width: 140px;
  height: 45px;
  object-fit: contain;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-premium {
  background: linear-gradient(180deg, #0F0F0F 0%, #1A1A1A 100%);
  border-top: 1px solid rgba(255, 180, 77, 0.1);
  padding: 4rem 0 2rem;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 180, 77, 0.05);
  padding-bottom: 3rem;
}

.footer-logo {
  filter: drop-shadow(0 0 10px rgba(255, 180, 77, 0.3));
}

.footer-description {
  opacity: 0.9;
}

.footer-highlight {
  color: #FFB84D;
  font-weight: 600;
}

.footer-section-title {
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-link {
  list-style: none;
  padding: 0;
}

.footer-link li {
  margin-bottom: 1rem;
}

.footer-link a {
  color: #FFB84D;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-link a:hover {
  color: #FFF !important;
  text-shadow: 0 0 10px rgba(255, 180, 77, 0.4);
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-copyright {
  opacity: 0.75;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 180, 77, 0.1);
  border: 1px solid rgba(255, 180, 77, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFB84D;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.3), rgba(255, 165, 0, 0.2));
  border-color: rgba(255, 180, 77, 0.5);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 180, 77, 0.95) 0%, rgba(255, 165, 0, 0.95) 100%);
  border: 1.5px solid rgba(255, 180, 77, 0.4);
  color: #0F0F0F;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(255, 180, 77, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, rgba(255, 180, 77, 1) 0%, rgba(255, 165, 0, 1) 100%);
  box-shadow: 0 12px 35px rgba(255, 180, 77, 0.5);
  transform: translateY(-3px);
}

.scroll-to-top-btn:active {
  transform: translateY(-1px);
}

.scroll-to-top-btn.show {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .hero-col-right {
    margin-top: 3rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-title-gradient {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1rem 2rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-title-gradient {
    font-size: 2.5rem;
  }

  .scroll-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 1.5rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.py-6 {
  padding: 6rem 0;
}

.fw-700 {
  font-weight: 700 !important;
  letter-spacing: -0.5px;
}

.fw-800 {
  font-weight: 800 !important;
  letter-spacing: -1px;
}

/* Global Transition */
* {
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}

/* Section Spacing */
section {
  display: flex;
  align-items: center;
  flex-direction: column;
}
