/* --- Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

/* --- Lenis Recommended CSS --- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* --- HIDE SCROLLBAR --- */
::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
  background: transparent;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  width: 100%;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.loaded {
  overflow-y: visible;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  all: unset;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-img {
  width: 6rem;
  margin-top: 8px;
}

.desktop-menu {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #4b5563;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #3d4094;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #3d4094;
}

/* --- Mobile Menu --- */
.mobile-menu-btn-container {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  color: #4b5563;
  padding: 8px;
  font-size: 28px;
}

@media (min-width: 1200px) {
  .desktop-menu {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu-btn-container {
    display: none;
  }
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 49;
  transform: translateX(100%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
  overflow-y: auto;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav-container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 100px;
}

.mobile-link {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

/* --- CONTACT PAGE STYLES --- */
.banner {
  background: linear-gradient(135deg, #3f51b5, #3f51b5, #fff);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-family: "Fredoka", sans-serif;
}

.contact-form {
  max-width: 1200px;
  width: 95%;
  margin: 40px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #374151;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #f9fafb;
  color: #333;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form textarea {
  height: 180px;
  resize: vertical;
}

.submit-btn {
  background-color: #f44336;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 600;
  transition:
    background-color 0.3s,
    transform 0.2s;
  text-align: center;
  width: auto;
  min-width: 200px;
}

.submit-btn:hover {
  background-color: #d32f2f;
  transform: translateY(-2px);
}

.get-in-touch {
  text-align: center;
  margin: 60px 0 40px;
}

.get-in-touch h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #111827;
  margin-bottom: 10px;
}

.get-in-touch p {
  color: #6b7280;
  font-size: 1.1rem;
}

.contact-info {
  max-width: 800px;
  width: 95%;
  margin: 0 auto 60px;
  padding: 40px;
  background-color: #0b223a;
  color: #fff;
  border-radius: 16px;
}

.contact-info h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.info-item .icon {
  background-color: #f44336;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.map-box {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 350px;
  background-color: #1f2937;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --- RESTORED FOOTER STYLES --- */
.footer-section {
  background-color: #1f2937;
  color: #f3f4f6;
  padding: 80px 0 30px 0;
  font-family: "Roboto", sans-serif;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: #ffffff;
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #ed3338;
  border-radius: 2px;
}

.footer-logo img {
  width: 6rem;
}

.footer-about-text {
  color: #9ca3af;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 300px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d1d5db;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #ed3338;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #d1d5db;
  align-items: flex-start;
}

.footer-contact i {
  color: #ed3338;
  font-size: 1.5rem;
  margin-top: 3px;
}

.footer-contact span {
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contact-info {
    padding: 30px 20px;
  }

  .info-item {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }

  .nav-content {
    height: 70px;
  }

  .mobile-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .banner {
    padding: 30px 15px;
  }
}
