@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========== CUSTOM PROPERTIES ========== */
:root {
  /* Colors - Updated with Royal Blue and Gold */
  --color-primary: #d8a951;
  --color-primary-light: #e6c174;
  --color-primary-dark: #c59640;
  --color-bg: #0a1e5e; /* Royal Blue */
  --color-bg-light: #1b3a7a;
  --color-bg-dark: #051442;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  --color-border: rgba(216, 169, 81, 0.15);
  --color-card-bg: rgba(255, 255, 255, 0.05);
  --color-card-bg-hover: rgba(255, 255, 255, 0.08);
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --fs-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --fs-md: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --fs-2xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.5rem);
  --fs-3xl: clamp(2.5rem, 2.15rem + 1.75vw, 3.5rem);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Layout */
  --container-width: 1280px;
  --content-width: 900px;
  
  /* Animation */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 6px 16px rgba(216, 169, 81, 0.25);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-2xl: 30px;
  --radius-full: 9999px;
}

/* ========== RESET & BASE STYLES ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background effects - Updated with Royal Blue */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(10, 30, 94, 0.97), rgba(10, 30, 94, 0.99)), 
                    url("../img/bg-main.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(216, 169, 81, 0.08) 0%, rgba(10, 30, 94, 0) 70%);
  opacity: 0.7;
  z-index: -1;
  animation: bgPulse 15s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: -1;
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
  position: relative;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75em;
  font-family: var(--font-secondary);
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ========== LAYOUT & CONTAINERS ========== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 5;
}

section, .section {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: var(--fs-2xl);
  display: inline-block;
  margin-bottom: 0.5em;
  position: relative;
  font-weight: 800;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

.section-title p {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

/* ========== HEADER ========== */
.header {
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
  background-color: rgba(10, 30, 94, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--color-border);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 180px;
  position: relative;
  z-index: 1;
}

.logo img {
  width: 100%;
  transition: transform var(--transition-base);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
  transition: opacity var(--transition-base);
}

.logo:hover::after {
  opacity: 0.8;
}

.auth {
  display: flex;
  gap: var(--spacing-sm);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875em 1.75em;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  transition: transform var(--transition-base);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 169, 81, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: rgba(216, 169, 81, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  font-size: var(--fs-md);
  padding: 1em 2.25em;
}

.btn-hero {
  font-size: var(--fs-md);
  padding: 1em 2.5em;
  box-shadow: 0 8px 25px rgba(216, 169, 81, 0.25);
  animation: pulse 3s infinite;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-primary-light));
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.btn-hero::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-md) + 4px);
  background: linear-gradient(145deg, rgba(216, 169, 81, 0.5), rgba(216, 169, 81, 0.1));
  z-index: -1;
  opacity: 0.7;
  transition: all var(--transition-base);
}

.btn-hero:hover {
  background-image: linear-gradient(to right, var(--color-primary-light), var(--color-primary));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(216, 169, 81, 0.35);
  animation: none;
}

.btn-hero:hover::after {
  opacity: 1;
  inset: -5px;
}

/* ========== HERO SECTION ========== */
.hero {
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-2xl);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 30, 94, 0.8), rgba(10, 30, 94, 0.95)), 
              url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: -1;
}

.hero__content {
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
}

.hero__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--spacing-md);
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  animation: fadeInDown 1s ease-out;
}

.hero__title .highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-primary);
  opacity: 0.3;
  z-index: -1;
}

.hero__text {
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-xl);
  color: var(--color-text-muted);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero__buttons {
  margin-top: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stat-number {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.2em;
}

.hero__stat-label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.feature {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-primary);
  transition: height var(--transition-base);
}

.feature:hover {
  transform: translateY(-5px);
  background: var(--color-card-bg-hover);
  border-color: rgba(216, 169, 81, 0.3);
  box-shadow: var(--shadow-lg);
}

.feature:hover::before {
  height: 100%;
}

.feature__icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  display: inline-flex;
  transition: transform var(--transition-base);
  background: rgba(216, 169, 81, 0.1);
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  align-items: center;
  justify-content: center;
}

.feature:hover .feature__icon {
  transform: scale(1.1) rotate(5deg);
}

.feature__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-sm);
  color: #fff;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.feature__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
  flex-grow: 1;
}

.feature__cta {
  margin-top: var(--spacing-md);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: all var(--transition-base);
}

.feature__cta svg {
  transition: transform var(--transition-base);
}

.feature:hover .feature__cta {
  color: var(--color-primary-light);
}

.feature:hover .feature__cta svg {
  transform: translateX(5px);
}

/* ========== INFO SECTION ========== */
.info {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.info h2 {
  font-size: var(--fs-2xl);
  color: #fff;
  margin: var(--spacing-xl) 0 var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.info h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

.info p {
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  line-height: 1.8;
}

.info p b {
  color: var(--color-primary);
  font-weight: 600;
}

.info__container {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.info__container::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  opacity: 0.05;
  border-radius: var(--radius-full);
  z-index: 0;
}

/* ========== TABLE STYLES ========== */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--spacing-lg) 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

table th {
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
  color: var(--color-bg);
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: var(--fs-md);
  position: relative;
}

table th:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity var(--transition-base);
}

table th:hover:after {
  opacity: 1;
}

table td {
  background-color: var(--color-card-bg);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  transition: background-color var(--transition-base);
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover td {
  background-color: var(--color-card-bg-hover);
}

/* ========== PAYMENT METHODS SECTION ========== */
.payment-methods {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.payment-methods__container {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.payment-methods__title {
  text-align: center;
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-xl);
  color: #fff;
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.payment-methods__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

.payment-methods__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.payment {
  transition: all var(--transition-base);
  opacity: 0.7;
  filter: grayscale(60%);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.payment svg {
  height: 40px;
  width: auto;
}

.payment svg path {
  fill: var(--color-primary);
  transition: fill var(--transition-base);
}

.payment:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-md);
}

/* Payment method hover colors */
.payment:nth-child(1):hover svg path { fill: #1a1f71; }
.payment:nth-child(2):hover svg path { fill: #ff8000; }
.payment:nth-child(3):hover svg path { fill: #ffb612; }
.payment:nth-child(4):hover svg path { fill: #f7931a; }
.payment:nth-child(5):hover svg path { fill: #006fcf; }
.payment:nth-child(6):hover svg path { fill: #28d49f; }

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  position: relative;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.testimonial:hover {
  transform: translateY(-5px);
  background: var(--color-card-bg-hover);
  border-color: rgba(216, 169, 81, 0.3);
  box-shadow: var(--shadow-lg);
}

.testimonial__content {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.testimonial__content::before {
  content: "Kingroyal";
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 5rem;
  color: var(--color-primary);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial__text {
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--color-primary);
}

.testimonial__info {
  flex: 1;
}

.testimonial__name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2em;
}

.testimonial__position {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.testimonial__rating {
  display: flex;
  gap: 2px;
  color: var(--color-primary);
  margin-top: 0.5em;
}

/* ========== FOOTER ========== */
.footer {
  margin-top: auto;
  padding: var(--spacing-xl) 0;
  background-color: rgba(0, 0, 0, 0.4);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(216, 169, 81, 0), 
    rgba(216, 169, 81, 0.5), 
    rgba(216, 169, 81, 0));
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer__logo {
  max-width: 150px;
  margin-bottom: var(--spacing-md);
}

.footer__about p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.footer__title {
  font-size: var(--fs-md);
  margin-bottom: var(--spacing-md);
  color: #fff;
  position: relative;
  padding-bottom: 0.5em;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
}

.footer__links li {
  margin-bottom: 0.5em;
}

.footer__links a {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.footer__links a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.footer__links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.footer__newsletter form {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--spacing-sm);
}

.footer__newsletter input {
  flex: 1;
  padding: 0.8em 1em;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: #fff;
  transition: all var(--transition-base);
}

.footer__newsletter input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.footer__newsletter button {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border: none;
  padding: 0.8em 1.2em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.footer__newsletter button:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.footer__bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer__copyright {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}

.footer__payment-icons {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.footer__payment-icons img {
  height: 24px;
  opacity: 0.7;
  transition: all var(--transition-base);
}

.footer__payment-icons img:hover {
  opacity: 1;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 169, 81, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(216, 169, 81, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 169, 81, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ========== DARK MODE TOGGLE ========== */
.dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
}

.dark-mode-toggle svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base);
}

.dark-mode-toggle:hover svg {
  transform: rotate(30deg);
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-5px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 1200px) {
  :root {
    --container-width: 1000px;
  }
}

@media (max-width: 992px) {
  :root {
    --container-width: 95%;
    --content-width: 90%;
  }
  
  .hero__stats {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .logo {
    max-width: 150px;
  }
  
  .hero {
    padding: var(--spacing-2xl) 0;
  }
  
  .hero__title {
    font-size: var(--fs-2xl);
  }
  
  .hero__text {
    font-size: var(--fs-md);
  }
  
  .hero__buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__buttons .btn-hero {
    font-size: 1.2rem;
    padding: 1.1em 2em;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
  
  .payment-methods__grid {
    gap: var(--spacing-md);
  }
  
  .payment svg {
    height: 30px;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    z-index: 100;
  }
  
  .nav.active {
    transform: translateX(0);
  }
  
  .nav__list {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .nav__link {
    font-size: var(--fs-lg);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .hero__title {
    font-size: var(--fs-xl);
  }
  
  .btn-hero {
    padding: 1em 2.5em;
    font-size: 1.1rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .auth {
    width: 100%;
    justify-content: center;
  }
  
  .btn {
    padding: 0.7em 1.2em;
    font-size: var(--fs-xs);
  }
  
  table th, table td {
    padding: 1rem 0.8rem;
    font-size: var(--fs-xs);
  }
  
  .info h2 {
    font-size: var(--fs-xl);
  }
  
  .testimonial {
    padding: var(--spacing-md);
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.fw-light { font-weight: 300; }
.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-extrabold { font-weight: 800; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(216, 169, 81, 0.3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(216, 169, 81, 0.5);
}

/* ========== SMOOTH SCROLLING ========== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ========== ACCESSIBILITY ========== */
:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader__spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(216, 169, 81, 0.3);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Custom selection color */
::selection {
  background-color: var(--color-primary);
  color: var(--color-bg);
}