:root {
  --primary-color: #1E1B2E;
  --accent-color: #B18EFF;
  --dark-color: #6F2DBD;
  --light-color: #4B0082;
  --purple-500: #B18EFF;
  --purple-600: #6F2DBD;
  --purple-700: #4B0082;
  --purple-800: #3D007A;
  --purple-900: #1E1B2E;
  --white: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --font-primary: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header and Navigation */
header {
  background-color: var(--primary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 101;
}

.logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}

/* Desktop navigation */
.desktop-nav {
  display: flex;
}

.desktop-nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: var(--purple-500);
}

/* Burger menu button */
.burger-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 101;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease-in-out;
  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--purple-500);
}

body.menu-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive styles for navigation */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
}

.btn-primary {
  display: inline-block;
  background-color: var(--purple-500);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s;
  margin-top: 2rem;
}

.btn-primary:hover {
  background-color: var(--purple-600);
}

/* Hero Section */
.hero {
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  padding: 10rem 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-color);
  opacity: 0.75;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.scroll-down {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.arrow-down {
  width: 40px;
  height: 40px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-20px) rotate(45deg);
  }
  60% {
    transform: translateY(-10px) rotate(45deg);
  }
}

/* Section Styles */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  color: var(--purple-500);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

/* About Section */
.about {
  background-color: var(--white);
  padding-top: 8rem;
}

/* About Section Two Column Layout */
.about .container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-left-column {
  flex: 1;

  .section-header {
    margin-bottom: 0;
  }
}

.about-right-column {
  width: 45%;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.image-column {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.section-header {
  margin-bottom: 2rem;
}

.text-column {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 1.5rem;

  p {
    &:not(:last-child) {
      margin-bottom: 1rem;
    }
  }
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--purple-500);
  opacity: 0.3;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.partners {
  padding-bottom: 0;
  background-color: var(--gray-100);
  text-align: center;
  overflow: visible;
  position: relative;

  .section-title {
    max-width: 800px;
    margin: 0 auto 2rem;
  }
}

.partners-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.partners-showcase {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  margin-left: calc(-50vw + 50%);
  background-color: var(--gray-100);
}

.partners-row {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 2rem 0;
  will-change: transform;
  transition: none; /* Remove transition as we're handling animation in JS */
  margin-left: 2rem;
}

.partner-card {
  width: 400px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transform: scale(0.98);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: scale(1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1rem;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-send {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--purple-700);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
  float: right;
}

.btn-send:hover {
  background-color: var(--gray-200);
}

/* Location Section */
.location {
  background-color: var(--white);
  padding: 5rem 2rem;

  .section-subtitle, .section-title {
    margin-bottom: 0;
  }
}

.location .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-content {
  display: flex;
  gap: 2rem;
}

.map {
  flex: 1.5;
  height: 400px;
  background-color: #F1F1F1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.address-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address, .email {
  position: relative;
  padding-left: 3rem;
}

.address-icon, .email-icon {
  position: absolute;
  left: 0;
  top: -2px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address-icon svg, .email-icon svg {
  width: 24px;
  height: 24px;
}

.address p {
  margin-bottom: 0.5rem;
}

.address p:first-of-type {
  font-weight: 600;
}

.email a {
  color: var(--purple-600);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.email a:hover {
  color: var(--purple-700);
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 150px;
  max-height: 50px;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--purple-500);
}

/* Privacy Policy Page */

.privacy-policy {
  .logo, .footer-logo {
    margin: 0 auto;

    img {
      max-width: 180px;
      max-height: 100px;
    }
  }
}

.privacy-content {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
}

.privacy-content p, 
.privacy-content ul {
  margin-bottom: 1rem;
}

.privacy-content ul {
  padding-left: 2rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.privacy-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.privacy-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-date {
  font-style: italic;
  opacity: 0.8;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--purple-500);
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  color: var(--purple-600);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about .container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-left-column,
  .about-right-column {
    width: 100%;
  }
  
  .about-right-column {
    order: 2;
  }
  
  .location-content {
    flex-direction: column;
  }
  
  .map {
    height: 300px;
    flex: unset;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
