/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FFDD00;
  --secondary-color: #000000;
  --accent-color: #FFB800;
  --text-color: #ffffff;
  --dark-bg: #121212;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  background-color: var(--dark-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Background Gradient */
.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #222222 100%);
  z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
}

.highlight {
  color: var(--primary-color);
}

.gradient-text {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-text {
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin: 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.award-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
}

/* Partners Section */
.partners {
  padding: 50px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.partners-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner {
  opacity: 0.6;
  transition: var(--transition);
}

.partner:hover {
  opacity: 1;
}

/* About Section */
.about {
  padding: 100px 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-description {
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 221, 0, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Deals Section */
.deals {
  padding: 100px 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.deal-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.deal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deal-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deal-card:hover .deal-image img {
  transform: scale(1.1);
}

.deal-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.deal-content {
  padding: 20px;
}

.deal-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.deal-location {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.deal-location i {
  margin-right: 5px;
  color: var(--primary-color);
}

.deal-description {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.deal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deal-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.deal-price small {
  text-decoration: line-through;
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-left: 5px;
}

.view-all {
  text-align: center;
  margin-top: 50px;
}

/* Categories Section */
.categories {
  padding: 100px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.category-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 221, 0, 0.05);
}

.category-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

.category-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.8) 100%), url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  border-radius: 0 50px 50px 0;
  padding: 0 30px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.price span {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-features {
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.pricing-features i {
  margin-right: 10px;
  color: var(--primary-color);
}

.pricing-features .disabled {
  opacity: 0.5;
}

.pricing-features .disabled i {
  color: #ff4d4d;
}

/* Footer */
footer {
  padding: 80px 0 20px;
  background-color: rgba(0, 0, 0, 0.8);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 10px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .gradient-text {
      font-size: 4rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
  header {
      padding: 15px 0;
  }
  
  .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: var(--transition);
      z-index: 1000;
  }
  
  .main-nav.active {
      right: 0;
  }
  
  .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
  }
  
  .mobile-menu-toggle {
      display: flex;
      z-index: 1001;
  }
  
  .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);
  }
  
  .hero {
      padding: 150px 0 80px;
  }
  
  .gradient-text {
      font-size: 3rem;
  }
  
  .hero-subtitle {
      font-size: 1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .award-badge {
      position: relative;
      margin: 30px auto 0;
  }
  
  .partners-slider {
      justify-content: center;
  }
  
  .features, 
  .deals-grid, 
  .categories-grid, 
  .pricing-grid {
      grid-template-columns: 1fr;
  }
  
  .newsletter-form {
      flex-direction: column;
      gap: 15px;
  }
  
  .newsletter-form input,
  .newsletter-form button {
      border-radius: 50px;
      width: 100%;
  }
  
  .footer-content {
      flex-direction: column;
  }
  
  .footer-links {
      flex-direction: column;
  }
}

@media (max-width: 480px) {
  .gradient-text {
      font-size: 2.5rem;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .pricing-card.featured {
      transform: scale(1);
  }
  
  .pricing-card.featured:hover {
      transform: translateY(-10px);
  }
}