/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Dubai Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Dubai Regular'),
    url('fonts/dubai/Dubai-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Dubai Light';
  font-style: normal;
  font-weight: normal;
  src: local('Dubai Light'), url('fonts/dubai/Dubai-Light.woff') format('woff');
}

@font-face {
  font-family: 'Dubai Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Dubai Medium'),
    url('fonts/dubai/Dubai-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Dubai Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Dubai Bold'), url('fonts/dubai/Dubai-Bold.woff') format('woff');
}

body {
  font-family: 'Dubai Medium';
  line-height: 1.6;
  color: #333;

  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-dark);
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== COLORS ===== */
:root {
  --primary-green: #57ef63;
  --secondary-green: #66bb6a;
  --dark-green: #2e7d32;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --yellow: #ffc107;
  --red: #f44336;
}

/* ===== HEADER SECTION ===== */
.header-section {
  padding: 20px 0 10px;
  position: relative;
  z-index: 1000;
  position: fixed;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0);
}

.header-section.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-section * {
  transition: color 0.3s ease;
}

.header-section.scrolled .logo img {
  filter: brightness(0.8);
}

.logo img {
  max-height: 80px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-green);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: url(img/hero-mask.svg) 50% 50% / cover no-repeat;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-title-image {
  max-width: 100%;
  height: auto;
  margin-block: 120px 170px;
}

.hero-subtitle {
  font-size: 22.5px;
  font-weight: normal;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Dubai Bold';
}

/* ===== GET NOTIFIED SECTION ===== */
.get-notified-section {
  padding: 0 0 80px 0;
}

.get-notified-title {
  text-align: center;
  margin-bottom: -35px;
  position: relative;
  z-index: 1;
}

.get-notified-title img {
  max-width: 300px;
  height: auto;
}

.get-notified-subtitle {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-size: 16px;
}

.notification-form {
  background: var(--primary-green);
  border-radius: 25px;
  padding: 40px 20px 20px;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  border: 2px solid;
}

.form-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  min-width: 150px;
  border: 2px solid;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-notify {
  background: var(--text-dark);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-notify:hover {
  background: #1a1a1a;
}

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

.privacy-note {
  text-align: center;
  color: var(--text-dark);
  margin-top: 15px;
  font-size: 12px;
}

/* ===== STARS SECTION ===== */
.stars-section {
  text-align: center;
  padding: 40px 0;
  background: white;
}

.stars-image img {
  width: 60px;
  height: auto;
}

/* ===== DESCRIPTION SECTION ===== */
.description-section {
  background: white;
  text-align: center;
  font-weight: 600;
}

.description-text {
  font-size: 28px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0 auto;
}

.description-text .highlight {
  color: var(--primary-green);
  font-weight: 600;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: white;
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 20px 0;
  max-width: 450px;
  margin-inline: auto;
}

.feature-icon {
  font-size: 32px;
  line-height: 32px;
  display: block;
}

.feature-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  margin-inline-end: 20px;
  line-height: 1.4;
  height: 58.5px;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}

/* ===== CHANGE MAKER SECTION ===== */
.change-maker-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.change-maker-box {
  background: #cdef57;
  border-radius: 50px;
  border: 2px solid;
  padding: 40px;
  position: relative;
}

.change-maker-content {
  margin-left: 150px;
}

@media (max-width: 911px) {
  .change-maker-content {
    margin-inline-start: 0px;
  }
  .rocket-container {
    display: none !important;
  }
}

.change-maker-title {
  max-width: 500px;
  margin-inline: auto;
  height: auto;
  margin-bottom: 30px;
}

.change-maker-description {
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 21px;
  font-weight: 500;
}
.change-maker-description-2 {
  font-size: 18px;
  margin-bottom: 45px;
}
.change-maker-buttons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 20px;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: white;
}

.btn-dark {
  background: var(--text-dark);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-dark:hover {
  background: #1a1a1a;
}

.rocket-container {
  position: relative;
  text-align: center;
  position: absolute;
  top: -70px;
  left: -70px;
}

.rocket-image {
  max-width: 235px;
  height: auto;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
  padding: 60px 0 40px 0;
}

.footer-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  border: 2px solid;
  padding: 25px 30px;
  border-radius: 35px;
}

.btn-partner {
  background: transparent;
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 22px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-partner:hover {
  background: var(--text-dark);
  color: white;
}

.btn-contact {
  background: var(--text-dark);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #1a1a1a;
}

.arrow-image {
  width: 14px;
  height: 14px;
}

.footer-links {
  text-align: center;
  padding: 20px 0;
}

.footer-links a {
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-dark);
}

.footer-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo:first-child {
  flex: 1;
  text-align: center;
}
.footer-logo img {
  max-height: 70px;
  width: auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-input {
    width: 100%;
    min-width: unset;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .change-maker-buttons {
    flex-direction: column;
  }

  .footer-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-buttons .btn-partner,
  .footer-buttons .btn-contact {
    text-align: center;
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .notification-form {
    padding: 15px;
  }

  .features-section {
    padding: 60px 0;
  }

  .change-maker-section {
    padding: 60px 0;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-image,
.get-notified-title img,
.feature-card,
.change-maker-title img {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

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

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

.d-flex {
  display: flex;
}

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

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

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