@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===========================
   CSS RESET & BASE STYLES
   =========================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
  color: #F2F2F2;
  min-height: 100vh;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ===========================
   CSS VARIABLES
   =========================== */

:root {
  /* Colors */
  --background: #0A0A0A;
  --background-secondary: #141414;
  --foreground: #F2F2F2;

  --gold: #FFD700;
  --gold-light: #FFE55C;
  --gold-dark: #E6C200;
  --gold-muted: #F4D88A;

  --card: #0F0F0F;
  --card-foreground: #F2F2F2;
  --card-hover: #1A1A1A;

  --text-primary: #F2F2F2;
  --text-secondary: #BFBFBF;
  --text-muted: #999999;

  --border: #262626;
  --border-hover: #FFD700;
  --input: #1F1F1F;
  --ring: #FFD700;

  /* Gradients */
  --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFE55C 100%);
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));

  /* Shadows */
  --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
  --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.5);
  --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Spacing */
  --radius: 16px;
}


/* ===========================
   LAYOUT UTILITIES
   =========================== */

.container {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

/* ===========================
   TYPOGRAPHY
   =========================== */

.heading-xl {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-p {
  color: #bfbfbf;
}

@media (min-width: 768px) {
  .heading-xl {
    font-size: 55px;
  }
}

.heading-lg {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .heading-lg {
    font-size: 3rem;
  }
}

.heading-md {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .heading-md {
    font-size: 2rem;
  }
}

.text-gold {
  color: var(--gold);
}

.text-gold-light {
  color: var(--gold-light);
}

.text-foreground {
  color: var(--foreground);
}

.text-text-secondary {
  color: var(--text-secondary);
}

.text-text-muted {
  color: var(--text-muted);
}

/* ===========================
   BUTTON SYSTEM
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* ===========================
   CARD SYSTEM
   =========================== */

.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.card:hover {
  background: var(--card-hover);
  transform: scale(1.05);
  box-shadow: var(--shadow-large);
  border-color: rgba(255, 215, 0, 0.3);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgb(255 255 255 / 0%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

.nav-link {
  color: var(--foreground);
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 0.25rem;
}

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

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

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

.cta-button {
  display: none;
}

@media (min-width: 768px) {
  .cta-button {
    display: block;
  }
}

.mobile-menu-button {
  display: block;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 16rem;
  background: var(--background);
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 60;
  padding: 1.5rem;
  padding-top: 4rem;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
  text-align: left;
}

.mobile-menu .btn {
  margin-top: 1.5rem;
  width: 100%;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 55;
  display: none;
}

.mobile-menu-overlay.open {
  display: block;
}

@media (min-width: 768px) {

  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ===========================
   FOOTER
   =========================== */

footer {
  background: var(--background-secondary);
  border-top: 1px solid var(--border);
}

footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

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

/* ===========================
   STATS GRID
   =========================== */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
  }
}

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



.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ===========================
   GRID SYSTEMS
   =========================== */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* ===========================
   IMAGE EFFECTS
   =========================== */

.image-hover {
  transition: transform 0.3s ease;
  overflow: hidden;
}

.image-hover:hover {
  transform: scale(1.1);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* ===========================
   ANIMATIONS
   =========================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   ACCORDION
   =========================== */

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.open {
  max-height: 300px;
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===========================
   CAROUSEL
   =========================== */

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 1.5rem;
}

.carousel-slide {
  flex-shrink: 0;
  width: 25%;
}

@media (max-width: 1024px) {
  .carousel-slide {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    width: 50%;
  }
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: #000;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition-smooth);
  z-index: 10;
}

.carousel-button:hover {
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--text-muted);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  padding: 0;
}

.carousel-indicator.active {
  background: var(--gold);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-images {
  position: relative;
}

.hero-image-main {
  border-radius: 1rem;
  width: 100%;
  height: 25rem;
  object-fit: cover;
  box-shadow: var(--shadow-large);
}

.hero-image-secondary {
  border-radius: 1rem;
  width: 75%;
  height: 16rem;
  object-fit: cover;
  box-shadow: var(--shadow-large);
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  border: 4px solid var(--background);
}

/* ===========================
   BACKGROUND UTILITIES
   =========================== */

.bg-background-secondary {
  background: var(--background-secondary);
}

.bg-gradient-overlay {
  background: var(--gradient-overlay);
}

/* ===========================
   SPACING UTILITIES
   =========================== */

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

/* ===========================
   FLEX UTILITIES
   =========================== */

.flex {
  display: flex;
}

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

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.flex-col {
  flex-direction: column;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* ===========================
   TEXT UTILITIES
   =========================== */

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

.text-left {
  text-align: left;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 15px;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.leading-relaxed {
  line-height: 1.625;
}

.italic {
  font-style: italic;
}

/* ===========================
   WIDTH & HEIGHT UTILITIES
   =========================== */

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   POSITION UTILITIES
   =========================== */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ===========================
   OVERFLOW UTILITIES
   =========================== */

.overflow-hidden {
  overflow: hidden;
}

/* ===========================
   SPACE UTILITIES
   =========================== */

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

/* ===========================
   FORM ELEMENTS
   =========================== */

input[type="email"],
input[type="text"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: var(--input);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
}

input::placeholder {
  color: var(--text-muted);
}

input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* ===========================
   HERO BACKGROUND
   =========================== */

.hero-bg {
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

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

/* ===========================
   RESPONSIVE UTILITIES
   =========================== */

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===========================
   ICON STYLES
   =========================== */

.icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

.icon-lg {
  width: 48px;
  height: 48px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

/* ===========================
   STAR RATING
   =========================== */

.star-filled {
  fill: var(--gold);
  color: var(--gold);
}

/* ===========================
   MISC UTILITIES
   =========================== */

.object-cover {
  object-fit: cover;
}

.cursor-pointer {
  cursor: pointer;
}

.z-10 {
  z-index: 10;
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}