:root {
  --apple-system: -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--apple-system);
  line-height: 1.6;
  color: #fff;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Apply fonts based on language */
body[lang="en"],
body[lang="tr"] {
  font-family: var(--apple-system);
}

body[lang="ar"] {
  font-family: var(--apple-system);
}

/* Hide old navbar */
nav {
  display: none;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #fff;
}

nav-links {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Hamburger Menu Button - Bottom Center */
.menu-toggle {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.hamburger-btn span {
  width: 30px;
  height: 2px;
  background: #9fc131;
  transition: all 0.3s ease;
  display: block;
}

.hamburger-btn:hover span {
  background: #fff;
}

/* Social Icons - Right Middle */
.social-sidebar {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.social-sidebar a {
  color: #9fc131;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
}

.social-sidebar a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Language Selector - Left Side */
.language-selector-wrapper {
  position: fixed;
  left: 40px;
  top: 4%;
  transform: translateY(-50%);
  z-index: 500;
}

.language-btn {
  background: rgba(16, 19, 26, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(159, 193, 49, 0.3);
  border-radius: 20px;
  color: #9fc131;
  padding: 10px 18px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.language-btn:hover {
  background: rgba(159, 193, 49, 0.15);
  border-color: rgba(159, 193, 49, 0.5);
  color: #fff;
}

.language-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.language-btn.active i {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: rgba(16, 19, 26, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(159, 193, 49, 0.3);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 160px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-dropdown .lang-option {
  display: block;
  width: 100%;
  padding: 12px 18px;
  color: #9fc131;
  text-decoration: none;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-align: left;
}

.language-dropdown .lang-option:hover {
  background: rgba(159, 193, 49, 0.2);
  color: #fff;
  padding-left: 22px;
}

.language-dropdown .lang-option.active {
  background: rgba(159, 193, 49, 0.25);
  color: #fff;
  border-left: 3px solid #9fc131;
  padding-left: 15px;
}

.lang-divider {
  color: rgba(159, 193, 49, 0.5);
  font-size: 0.8rem;
  display: none;
}

/* Dark/Light Theme Toggle - Top Right */
.theme-toggle {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 500;
}

.theme-btn {
  background: none;
  border: 1px solid rgba(159, 193, 49, 0.5);
  color: #9fc131;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn:hover {
  border: 1px solid #9fc131;
  color: #fff;
  transform: rotate(20deg);
}

.theme-btn i {
  transition: all 0.3s ease;
}

/* Dropdown Menu - Old Styles */
.menu-dropdown {
  display: none;
  position: relative;
}

.menu-btn {
  display: none;
}

.menu-btn:hover {
  background: rgba(159, 193, 49, 0.2);
  border: 1px solid #9fc131;
}

.dropdown-content {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(16 19 26 / 72%);
  backdrop-filter: blur(700px);
  min-width: 300px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(159, 193, 49, 0.3);
  border-radius: 12px;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 501;
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
}

.menu-dropdown:hover .dropdown-content,
.menu-dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-content a {
  color: #fff;
  padding: 16px 30px;
  text-decoration: none;
  display: block;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translate(-20px, -20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-content.show a:nth-child(1) {
  animation: menuItemPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.dropdown-content.show a:nth-child(2) {
  animation: menuItemPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.dropdown-content.show a:nth-child(3) {
  animation: menuItemPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

@keyframes menuItemPopIn {
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

.dropdown-content a:hover {
  background: rgba(159, 193, 49, 0.2);
  color: #9fc131;
  padding-left: 25px;
}

.social-icons {
  display: none;
  gap: 25px;
  align-items: center;
}

.social-icons a {
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.social-icons a:hover {
  color: #9fc131;
  transform: translateY(-3px);
}

.hero {
  height: 100vh;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  cursor: crosshair;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(159, 193, 49, 0.25) 0%,
    rgba(159, 193, 49, 0.12) 25%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes rotateLighting {
  0% {
    --mouse-x: 75%;
    --mouse-y: 25%;
  }
  1.67% {
    --mouse-x: 76.5%;
    --mouse-y: 27%;
  }
  3.33% {
    --mouse-x: 78%;
    --mouse-y: 29%;
  }
  5% {
    --mouse-x: 79%;
    --mouse-y: 32%;
  }
  6.67% {
    --mouse-x: 80%;
    --mouse-y: 35%;
  }
  8.33% {
    --mouse-x: 80%;
    --mouse-y: 38%;
  }
  10% {
    --mouse-x: 80%;
    --mouse-y: 41%;
  }
  11.67% {
    --mouse-x: 80%;
    --mouse-y: 44%;
  }
  13.33% {
    --mouse-x: 79%;
    --mouse-y: 47%;
  }
  15% {
    --mouse-x: 78%;
    --mouse-y: 50%;
  }
  16.67% {
    --mouse-x: 77%;
    --mouse-y: 53%;
  }
  18.33% {
    --mouse-x: 76%;
    --mouse-y: 56%;
  }
  20% {
    --mouse-x: 75%;
    --mouse-y: 59%;
  }
  21.67% {
    --mouse-x: 73%;
    --mouse-y: 62%;
  }
  23.33% {
    --mouse-x: 71%;
    --mouse-y: 65%;
  }
  25% {
    --mouse-x: 75%;
    --mouse-y: 75%;
  }
  26.67% {
    --mouse-x: 71%;
    --mouse-y: 73%;
  }
  28.33% {
    --mouse-x: 68%;
    --mouse-y: 76%;
  }
  30% {
    --mouse-x: 65%;
    --mouse-y: 78%;
  }
  31.67% {
    --mouse-x: 62%;
    --mouse-y: 79%;
  }
  33.33% {
    --mouse-x: 60%;
    --mouse-y: 80%;
  }
  35% {
    --mouse-x: 57%;
    --mouse-y: 79%;
  }
  36.67% {
    --mouse-x: 54%;
    --mouse-y: 78%;
  }
  38.33% {
    --mouse-x: 51%;
    --mouse-y: 80%;
  }
  40% {
    --mouse-x: 50%;
    --mouse-y: 80%;
  }
  41.67% {
    --mouse-x: 49%;
    --mouse-y: 80%;
  }
  43.33% {
    --mouse-x: 46%;
    --mouse-y: 78%;
  }
  45% {
    --mouse-x: 43%;
    --mouse-y: 80%;
  }
  46.67% {
    --mouse-x: 40%;
    --mouse-y: 80%;
  }
  48.33% {
    --mouse-x: 37%;
    --mouse-y: 78%;
  }
  50% {
    --mouse-x: 25%;
    --mouse-y: 75%;
  }
  51.67% {
    --mouse-x: 27%;
    --mouse-y: 73%;
  }
  53.33% {
    --mouse-x: 29%;
    --mouse-y: 71%;
  }
  55% {
    --mouse-x: 22%;
    --mouse-y: 68%;
  }
  56.67% {
    --mouse-x: 21%;
    --mouse-y: 65%;
  }
  58.33% {
    --mouse-x: 20%;
    --mouse-y: 60%;
  }
  60% {
    --mouse-x: 20%;
    --mouse-y: 57%;
  }
  61.67% {
    --mouse-x: 20%;
    --mouse-y: 54%;
  }
  63.33% {
    --mouse-x: 20%;
    --mouse-y: 51%;
  }
  65% {
    --mouse-x: 20%;
    --mouse-y: 50%;
  }
  66.67% {
    --mouse-x: 21%;
    --mouse-y: 46%;
  }
  68.33% {
    --mouse-x: 22%;
    --mouse-y: 43%;
  }
  70% {
    --mouse-x: 25%;
    --mouse-y: 32%;
  }
  71.67% {
    --mouse-x: 26%;
    --mouse-y: 29%;
  }
  73.33% {
    --mouse-x: 25%;
    --mouse-y: 26%;
  }
  75% {
    --mouse-x: 25%;
    --mouse-y: 25%;
  }
  76.67% {
    --mouse-x: 27%;
    --mouse-y: 23%;
  }
  78.33% {
    --mouse-x: 30%;
    --mouse-y: 21%;
  }
  80% {
    --mouse-x: 35%;
    --mouse-y: 20%;
  }
  81.67% {
    --mouse-x: 40%;
    --mouse-y: 20%;
  }
  83.33% {
    --mouse-x: 45%;
    --mouse-y: 20%;
  }
  85% {
    --mouse-x: 50%;
    --mouse-y: 20%;
  }
  86.67% {
    --mouse-x: 55%;
    --mouse-y: 20%;
  }
  88.33% {
    --mouse-x: 60%;
    --mouse-y: 20%;
  }
  90% {
    --mouse-x: 65%;
    --mouse-y: 20%;
  }
  91.67% {
    --mouse-x: 68%;
    --mouse-y: 21%;
  }
  93.33% {
    --mouse-x: 70%;
    --mouse-y: 22%;
  }
  95% {
    --mouse-x: 72%;
    --mouse-y: 23%;
  }
  96.67% {
    --mouse-x: 73%;
    --mouse-y: 24%;
  }
  98.33% {
    --mouse-x: 74%;
    --mouse-y: 25%;
  }
  100% {
    --mouse-x: 75%;
    --mouse-y: 25%;
  }
}

@media (max-width: 768px) {
  .hero {
    cursor: default;
  }

  .hero::before {
    animation: none;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rise-logo {
  width: 100%;
  height: 100%;
  filter: none;
  transition: all 0.1s ease-out;
  cursor: crosshair;
}

.rise-logo:hover {
  filter: drop-shadow(
    var(--shadow-x, 0px) var(--shadow-y, 0px) 40px rgba(0, 0, 0, 0.9)
  );
}

h1 {
  font-size: 5rem;
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  display: none;
}

.tagline {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.95;
  display: none;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: 300;
  display: none;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 50px;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.5px;
  display: none;
}

.features {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(159, 193, 49, 0.3);
  transition: all 0.3s ease;
}

.feature:hover {
  border: 1px solid rgba(159, 193, 49, 0.8);
  background: rgba(159, 193, 49, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #9fc131;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feature-text {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.cta-button {
  display: none;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalGrow {
  0% {
    transform: scale(0.5) translateY(60px);
    opacity: 0;
  }
  70% {
    transform: scale(1.05) translateY(-5px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.8s ease-out;
}

.modal-content {
  background: rgba(15, 23, 42, 0.5) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(159, 193, 49, 0.3);
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  scrollbar-width: none;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.5) translateY(60px);
  opacity: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal.show .modal-content {
  animation: modalGrow 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  /* border-bottom: 1px solid rgba(159, 193, 49, 0.3); */
  /* padding-bottom: 15px; */
}

.modal-header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.modal-logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-title {
  font-size: 2rem;
  letter-spacing: 2px;
  color: #9fc131;
}

.close-btn {
  background: none;
  border: none;
  color: #9fc131;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Modal Separator */
.modal-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
  /* margin: 20px 0;
  padding: 15px 0; */
}

.separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(159, 193, 49, 0),
    rgba(159, 193, 49, 0.5),
    rgba(159, 193, 49, 0)
  );
}

.separator-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.separator-logo:hover {
  opacity: 1;
}

.modal-body {
  color: #fff;
  line-height: 1.8;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.modal-body p {
  margin-bottom: 15px;
}

.modal-body h3 {
  font-size: 1.1rem;
  color: #9fc131;
  margin-top: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 500;
}

.modal-body h3:first-of-type {
  margin-top: 0;
}

.modal-image {
  margin-bottom: 20px;
  text-align: center;
}

.modal-image img {
  max-width: 55%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(159, 193, 49, 0.3);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.feature-item {
  padding: 12px;
  background: rgba(159, 193, 49, 0.1);
  border-left: 3px solid #9fc131;
  color: #9fc131;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Yasmilia Modal Styles */
.modal-images-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(159, 193, 49, 0.3);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(159, 193, 49, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  border-color: #9fc131;
  box-shadow: 0 0 15px rgba(159, 193, 49, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yasmilia-website {
  margin: 25px 0;
  padding: 15px;
  background: rgba(159, 193, 49, 0.08);
  border-left: 3px solid #9fc131;
  border-radius: 4px;
}

.yasmilia-website p {
  color: #9fc131;
  margin-bottom: 10px;
  font-weight: 500;
}

.website-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9fc131;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.website-link:hover {
  color: #fff;
  gap: 12px;
}

.website-link i {
  font-size: 1.2rem;
}

.yasmilia-socials {
  margin: 25px 0;
  padding: 15px;
  background: rgba(159, 193, 49, 0.08);
  border-left: 3px solid #9fc131;
  border-radius: 4px;
}

.yasmilia-socials p {
  color: #9fc131;
  margin-bottom: 12px;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #9fc131;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(159, 193, 49, 0.3);
  border-radius: 50%;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(159, 193, 49, 0.1);
  border-color: #9fc131;
  transform: translateY(-3px);
}

.yasmilia-markets {
  margin: 25px 0;
  padding: 15px;
  background: rgba(159, 193, 49, 0.08);
  border-left: 3px solid #9fc131;
  border-radius: 4px;
}

.yasmilia-markets p {
  color: #9fc131;
  margin-bottom: 15px;
  font-weight: 500;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.market-item {
  padding: 12px;
  background: rgba(159, 193, 49, 0.1);
  border: 1px solid rgba(159, 193, 49, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9fc131;
  transition: all 0.3s ease;
  cursor: pointer;
}

.market-item:hover {
  background: rgba(159, 193, 49, 0.15);
  border-color: #9fc131;
  transform: translateX(5px);
}

.market-item i {
  font-size: 1.2rem;
}

.market-item span {
  font-weight: 500;
}

/* Responsive Markets Grid */
@media (max-width: 768px) {
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .market-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .market-item i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .yasmilia-markets {
    margin: 20px 0;
    padding: 12px;
  }

  .markets-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .market-item {
    padding: 10px 12px;
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
  }

  .market-item i {
    font-size: 0.95rem;
  }

  .market-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.contact-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #9fc131;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(159, 193, 49, 0.3);
  color: #fff;
  font-family: var(--apple-system), sans-serif;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9fc131;
  background: rgba(159, 193, 49, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #9fc131;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.contact-info {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(159, 193, 49, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}

.info-item i {
  color: #9fc131;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.info-item a {
  color: #9fc131;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-item a:hover {
  color: #fff;
}

.info-item span {
  color: #fff;
}
.contact-modal-body {
  display: flex;
  gap: 15px;
}
@media (max-width: 1024px) {
  .logo-container {
    width: 500px;
    height: 500px;
  }
  .contact-modal-body {
    display: block;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
  }

  nav-links {
    flex-direction: column;
    gap: 10px;
  }

  h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .description {
    font-size: 1rem;
  }

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

  .social-icons {
    gap: 15px;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  /* Mobile layout adjustments */
  .logo-container {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rise-logo {
    width: 300px;
    height: 300px;
    max-width: 80vw;
    max-height: 80vw;
  }

  /* Menu stays at bottom center */
  .menu-toggle {
    bottom: 20px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Social icons to left side */
  .social-sidebar {
    position: fixed;
    left: 15px;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 20px;
  }

  /* Language selector to right top */
  .language-selector-wrapper {
    position: fixed;
    right: 15px;
    left: auto;
    top: 20px;
    bottom: auto;
    transform: none;
    z-index: 500;
  }

  .language-btn {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .language-dropdown {
    right: 0;
    left: auto;
  }
}

@media (max-width: 480px) {
  .logo-container {
    width: 280px;
    height: 280px;
  }

  .social-sidebar {
    bottom: 15px;
    gap: 15px;
  }

  .social-sidebar a {
    font-size: 1rem;
  }

  .language-selector-wrapper {
    right: 10px;
  }

  .language-btn {
    font-size: 0.7rem;
    padding: 8px 10px;
  }
}

/* Copyright Section */
.copyright-section {
  z-index: 100;
}

.copyright {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  max-width: 300px;
  text-align: right;
  font-size: 0.75rem;
  color: rgba(159, 193, 49, 0.6);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.copyright p {
  margin: 0;
  padding: 0;
}

.copyright p:first-child {
  font-weight: 500;
  color: rgba(159, 193, 49, 0.8);
}

.terms-privacy-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  max-width: 300px;
  text-align: left;
}

.terms-privacy-link a {
  color: rgba(159, 193, 49, 0.7);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.terms-privacy-link a:hover {
  color: rgba(159, 193, 49, 1);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .copyright {
    bottom: auto;
    top: 20px;
    right: auto;
    left: 15px;
    max-width: 200px;
    text-align: left;
  }

  .copyright {
    font-size: 0.7rem;
  }

  .terms-privacy-link {
    bottom: 20px;
    top: auto;
    left: 15px;
  }
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #9fc131;
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
}

.lightbox-close:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Cookie Consent Banner */
@keyframes slideInUp {
  from {
    transform: translateY(120px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(15 23 42 / 0%);
  backdrop-filter: blur(200px);
  border-top: 1px solid rgba(159, 193, 49, 0.4);
  border-radius: 24px 24px 0 0;
  padding: 24px 20px;
  z-index: 1999;
  box-shadow:
    0 -8px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.cookie-text h3 {
  color: #9fc131;
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-weight: 600;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 600px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border: 1px solid rgba(159, 193, 49, 0.5);
  border-radius: 16px;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 500;
}

.accept-btn {
  background: linear-gradient(135deg, #9fc131 0%, #b8e137 100%);
  color: #0f172a;
  border-color: #9fc131;
}

.accept-btn:hover {
  background: linear-gradient(135deg, #b8e137 0%, #c8f240 100%);
  box-shadow: 0 8px 24px rgba(159, 193, 49, 0.4);
  transform: translateY(-2px);
}

.reject-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #9fc131;
  border-color: rgba(159, 193, 49, 0.5);
}

.reject-btn:hover {
  background: rgba(159, 193, 49, 0.15);
  border-color: #9fc131;
  color: #fff;
  box-shadow: 0 8px 24px rgba(159, 193, 49, 0.3);
  transform: translateY(-2px);
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-text p {
    max-width: 100%;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
