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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  z-index: 1000;
  display: none;
  backdrop-filter: blur(10px);
}

.cookie-popup.show {
  display: block;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #00ff88;
  color: #000;
}

.cookie-btn.accept:hover {
  background: #00cc6a;
}

.cookie-btn.decline {
  background: transparent;
  color: #fff;
  border: 1px solid #666;
}

.cookie-btn.decline:hover {
  background: #333;
}

.cookie-link {
  color: #00ff88;
  text-decoration: none;
  font-size: 14px;
}

.cookie-link:hover {
  text-decoration: underline;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 0 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #00ff88;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #00ff88;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-direction: column;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffffff;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #cccccc;
}

.hero-images {
  flex: 1;
  /* max-width: 500px; */
}

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.hero-image-grid img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
  border-radius: 8px;
}

/* Stats Section */
.stats-section {
  background: #111111;
  padding: 80px 20px;
}

.stats-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.stats-text {
  flex: 1;
}

.stats-text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #ffffff;
}

.stats-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
}

.stats-numbers {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #00ff88;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #cccccc;
  margin-top: 5px;
  line-height: 1.4;
}

/* Features Section */
.features {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: repeat(2, auto);
  gap: 40px;
  margin-bottom: 60px;
}


@media (max-width: 992px) {
    .features-grid {
      grid-template-columns: 1fr; 
      grid-template-rows: auto; 
    }
  }

.feature-card {
  background: #111111;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid #222222;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

.feature-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

.features-images {
  margin-top: 60px;
}

.features-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.features-image-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* Availability Section */
.availability {
  background: #111111;
  padding: 80px 20px;
}

.availability h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #ffffff;
}

.availability-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.availability-image {
  flex: 1;
}

.availability-image img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  border-radius: 12px;
}

.availability-text {
  flex: 1;
}

.availability-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.availability-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #cccccc;
}

.availability-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.availability-feature {
  background: #000000;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid #333333;
}

.cta-button {
  background: #00ff88;
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.cta-button:hover {
  background: #00cc6a;
}

/* About Section */
.about {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #cccccc;
  text-align: center;
}

/* Contact Section */
.contact {
  background: #111111;
  padding: 80px 20px;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #cccccc;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input {
  padding: 15px 20px;
  background: #000000;
  border: 1px solid #333333;
  border-radius: 6px;
  color: #ffffff;
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
}

.contact input::placeholder {
  color: #666666;
}

.contact input:focus {
  outline: none;
  border-color: #00ff88;
}

.contact button {
  background: #00ff88;
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #00cc6a;
}

/* Footer */
.footer {
  background: #000000;
  padding: 60px 20px 20px;
  border-top: 1px solid #222222;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #00ff88;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-section a:hover {
  color: #00ff88;
}

.footer-info {
  display: flex;
  gap: 40px;
}

.footer-address p,
.footer-contact p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222222;
}

.footer-bottom p {
  font-size: 14px;
  color: #666666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    backdrop-filter: blur(10px);
  }

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

  .nav-menu li {
    margin: 15px 0;
  }

  .hero {
    flex-direction: column;
    gap: 40px;
    padding: 100px 20px 60px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-content {
    flex-direction: column;
    gap: 40px;
  }

  .stats-text h2 {
    font-size: 28px;
  }

  .features-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .availability-content {
    flex-direction: column;
    gap: 40px;
  }

  .availability h2 {
    font-size: 28px;
  }

  .availability-features {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-info {
    flex-direction: column;
    gap: 20px;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .stats-text h2 {
    font-size: 24px;
  }

  .availability h2 {
    font-size: 24px;
  }

  .contact-content h2 {
    font-size: 28px;
  }

  .hero-image-grid {
    grid-template-columns: 1fr;
  }

  .features-image-grid {
    grid-template-columns: 1fr;
  }
}
