/* RESET - removes default browser spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL FONT */
body {
  font-family: 'Inter', sans-serif;
  background: #000000; /* black background */
  color: #ffffff; /* white text */
  overflow-x: hidden;
}

body.loading-active {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: visible;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  color: #ffffff;
}

.loading-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.loading-taji {
  width: clamp(180px, 30vw, 280px);
  animation: tajiFlyIn 1.1s ease forwards, tajiJump 0.8s ease 1.1s forwards;
  opacity: 0;
  transform: translateX(100vw) translateY(0);
}

@keyframes tajiFlyIn {
  0% {
    transform: translateX(100vw) translateY(0);
    opacity: 0;
  }
  70% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

@keyframes tajiJump {
  0%, 70% {
    transform: translateX(0) translateY(0);
  }
  85% {
    transform: translateX(0) translateY(-22px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes tajiLoaderFade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* LAYOUT */
.main-content {
  margin-left: 240px;
  position: relative;
  z-index: 1;
}

/* ---------------- SIDE NAVIGATION ---------------- */

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: #1a1a1a; /* dark grey background */
  border-right: none;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.nav-header {
  padding: 20px;
  border-bottom: 1px solid #333333;
  display: flex;
  justify-content: center;
}

.nav-logo img {
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 90px;
  object-fit: contain;
}

.nav-menu {
  list-style: none;
  padding: 20px 0;
  flex: 1;
}

.nav-item {
  margin-bottom: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #cccccc; /* light grey text */
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  background: #2a2a2a; /* slightly lighter dark background */
  color: #ffffff; /* white text on hover */
}

.nav-link.active {
  background: linear-gradient(to right, #2a7de1, #1b5fcc);
  color: white;
}

.nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: white;
}

.nav-link svg {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.nav-link span {
  opacity: 1;
  white-space: nowrap;
}


/* ---------------- HERO ---------------- */

.hero {
  width: 90%;
  max-width: 1200px;
  margin: 80px auto 200px;

  display: flex;              /* creates 2 columns */
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}


/* LEFT SIDE TEXT */
.hero-text {
  flex: 1;
}

/* MAIN HEADING */
.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff; /* white text */
  line-height: 1.2;
}

/* BLUE WORD */
.hero-text span {
  color: #2a7de1;
  display: inline-block;
  min-width: 120px; /* Prevents layout shift during typewriter effect */
  text-align: left;
}

/* PARAGRAPH */
.hero-text p {
  margin-top: 20px;
  font-size: 18px;
  color: #cccccc; /* light grey text */
  max-width: 500px;
}


/* BUTTONS CONTAINER */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}


/* PRIMARY BUTTON */
.primary-btn {
  background: linear-gradient(to right, #2a7de1, #1b5fcc);
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(42,125,225,0.3);
  
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(42,125,225,0.5);
}

.primary-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(42,125,225,0.4);
}


/* SECONDARY BUTTON */
.secondary-btn {
  border: 2px solid #2a7de1;
  color: #2a7de1;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.secondary-btn:hover {
  background: #2a7de1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(42,125,225,0.3);
}

.secondary-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(42,125,225,0.2);
}


/* RIGHT SIDE IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  animation: float 3.5s ease-in-out infinite;
}


/* ---------------- ABOUT SECTION ---------------- */

.about {
  background: #1a1a1a; /* dark grey background */
  padding: 80px 0;
  opacity: 0;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ABOUT HEADING */
.about h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff; /* white text */
  margin-bottom: 20px;
}

/* ABOUT DESCRIPTION */
.about-description {
  font-size: 18px;
  color: #cccccc; /* light grey text */
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* CARDS CONTAINER */
.about-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* INDIVIDUAL CARD */
.about-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px;
  background: #2a2a2a; /* darker grey background */
  border-radius: 15px;
  transition: 0.3s ease;
  opacity: 0;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* CARD ICON */
.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #2a7de1, #1b5fcc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  opacity: 0;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* CARD HEADING */
.about-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff; /* white text */
  margin-bottom: 12px;
}

/* CARD TEXT */
.about-card p {
  font-size: 16px;
  color: #cccccc; /* light grey text */
  line-height: 1.5;
}


/* REVEAL ANIMATIONS */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.about.reveal {
  animation: fadeInUp 0.8s ease-out 1s forwards;
}

.about-card.reveal {
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-card:nth-child(1).reveal {
  animation-delay: 1.1s;
}

.about-card:nth-child(2).reveal {
  animation-delay: 1.2s;
}

.about-card:nth-child(3).reveal {
  animation-delay: 1.3s;
}

/* REVEAL ANIMATIONS FOR ICONS */
.about-card .card-icon {
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-card:nth-child(1).reveal .card-icon {
  animation-delay: 1.5s;
}

.about-card:nth-child(2).reveal .card-icon {
  animation-delay: 1.6s;
}

.about-card:nth-child(3).reveal .card-icon {
  animation-delay: 1.7s;
}


/* ---------------- HOW IT WORKS SECTION ---------------- */

.how-it-works {
  background: #000000; /* black background */
  padding: 80px 0;
  opacity: 0;
}

.how-it-works.reveal {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.how-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HOW IT WORKS HEADING */
.how-it-works h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff; /* white text */
  margin-bottom: 20px;
}

/* HOW IT WORKS DESCRIPTION */
.how-description {
  font-size: 18px;
  color: #cccccc; /* light grey text */
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* STEPS CONTAINER */
.how-steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* STEP CARD */
.step-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px;
  position: relative;
  opacity: 0;
}

/* STEP BADGE (number) */
.step-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #2a7de1, #1b5fcc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(42,125,225,0.3);
}

/* ICON CIRCLE */
.step-icon-circle {
  width: 100px;
  height: 100px;
  background: #dce9f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 25px;
  opacity: 0;
  transition: 0.3s ease;
}

.step-icon-circle svg {
  width: 50px;
  height: 50px;
  color: #2a7de1;
}

.step-card:hover .step-icon-circle {
  background: #2a7de1;
  transform: scale(1.1);
}

.step-card:hover .step-icon-circle svg {
  color: white;
}

/* STEP CARD HEADING */
.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff; /* white text */
  margin-bottom: 12px;
}

/* STEP CARD TEXT */
.step-card p {
  font-size: 16px;
  color: #cccccc; /* light grey text */
  line-height: 1.5;
}

/* STEP CARD ANIMATIONS */
.step-card.reveal {
  animation: fadeInUp 0.8s ease-out forwards;
}

.step-card:nth-child(1).reveal {
  animation-delay: 1.1s;
}

.step-card:nth-child(2).reveal {
  animation-delay: 1.2s;
}

.step-card:nth-child(3).reveal {
  animation-delay: 1.3s;
}

/* STEP ICON ANIMATIONS */
.step-card.reveal .step-icon-circle {
  animation: fadeInUp 0.8s ease-out forwards;
}

.step-card:nth-child(1).reveal .step-icon-circle {
  animation-delay: 1.5s;
}

.step-card:nth-child(2).reveal .step-icon-circle {
  animation-delay: 1.6s;
}

.step-card:nth-child(3).reveal .step-icon-circle {
  animation-delay: 1.7s;
}


/* ---------------- TESTIMONIALS SECTION ---------------- */

.testimonials {
  background: #000000; /* black background */
  padding: 80px 0;
  opacity: 0;
}

.testimonials-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonials h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.testimonials-description {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  opacity: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.55);
}

.stars {
  color: #2a7de1;
  font-size: 20px;
  margin-bottom: 18px;
}

.testimonial-text {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  min-height: 96px;
}

.testimonial-card h4 {
  color: #ffffff;
  margin-bottom: 4px;
  font-size: 18px;
}

.testimonial-card span {
  color: #999999;
  font-size: 14px;
}

.testimonials.reveal {
  animation: fadeInUp 0.8s ease-out 1s forwards;
}

.testimonial-card.reveal {
  animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1).reveal { animation-delay: 1.1s; }
.testimonial-card:nth-child(2).reveal { animation-delay: 1.2s; }
.testimonial-card:nth-child(3).reveal { animation-delay: 1.3s; }


/* ---------------- BOOKING FORM SECTION ---------------- */

.booking-form-section {
  background: #1a1a1a; /* dark grey background */
  padding: 80px 0;
}

.booking-container {
  width: 90%;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

/* BOOKING HEADING */
.booking-form-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff; /* white text */
  margin-bottom: 20px;
}

/* BOOKING DESCRIPTION */
.booking-description {
  font-size: 18px;
  color: #cccccc; /* light grey text */
  line-height: 1.6;
  margin: 0 auto 50px;
}

/* FORM WRAPPER */
.form-wrapper {
  background: #2a2a2a; /* dark grey background */
  border: 2px solid #333333;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* FORM GROUP */
.form-group {
  margin-bottom: 25px;
  text-align: left;
}

/* FORM LABELS */
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff; /* white text */
  margin-bottom: 8px;
}

/* FORM INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #555555;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  
  background: #1a1a1a; /* dark background */
  color: #ffffff; /* white text */
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a7de1;
  background: #2a2a2a; /* slightly lighter on focus */
  box-shadow: 0 0 0 3px rgba(42, 125, 225, 0.1);
}

/* TEXTAREA */
.form-group textarea {
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

/* PLACEHOLDER STYLING */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888888; /* darker grey for placeholders */
}

/* SELECT DROPDOWN */
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  background-color: #1a1a1a;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #2a7de1, #1b5fcc);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(42,125,225,0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42,125,225,0.4);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(42,125,225,0.3);
}

/* SUCCESS MESSAGE */
.success-message {
  background: #28a745;
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 16px;
  color: #ffffff; /* white text */
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
  animation: slideIn 0.5s ease-out;
}

/* CONTACT SECTION */
.contact-section {
  background: #000000;
  padding: 80px 0;
  opacity: 0;
}

.contact-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.contact-description {
  color: #cccccc;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.contact-details {
  display: flex;
  gap: 35px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  background: #1a1a1a;
  padding: 14px 18px;
  border: 1px solid #333333;
  border-radius: 10px;
  min-width: 260px;
}

.contact-item a {
  color: #2a7de1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.contact-section.reveal {
  animation: fadeInUp 0.8s ease-out 1s forwards;
}

@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    align-items: center;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .side-nav {
    position: fixed;
    width: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 1100;
    transition: width 0.3s ease;
    border-right: none;
    background: #1a1a1a;
  }

  .side-nav.open {
    width: 200px;
  }

  .main-content {
    margin-left: 0;
    transition: margin-left 0.3s ease;
  }

  body.nav-open .main-content {
    margin-left: 200px;
  }

  .nav-toggle {
    display: block;
    border: none;
    background: #2a7de1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 1200;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .nav-toggle:hover {
    transform: scale(1.05);
    background: #1a5ed0;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 4px auto;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease;
  }

  .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link span {
    font-size: 14px;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 80px auto 120px;
    gap: 40px;
  }

  .step-icon-circle {
    width: 80px;
    height: 80px;
    margin: 16px auto 20px;
  }

  .hero-image {
    max-width: 420px;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-cards,
  .how-steps,
  .testimonial-cards,
  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .about-card,
  .step-card,
  .testimonial-card,
  .contact-item,
  .step-icon-circle {
    max-width: 100%;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
  }

  .about,
  .how-it-works,
  .testimonials,
  .contact-section {
    opacity: 1 !important;
  }

  .hero-text h1 {
    font-size: 42px;
    text-align: center;
  }

  .hero-text p,
  .about-description,
  .how-description,
  .contact-description {
    font-size: 16px;
  }

  .booking-container,
  .how-container,
  .about-container,
  .testimonials-container,
  .contact-container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .side-nav {
    width: 0;
  }

  .side-nav.open {
    width: 170px;
  }
  
  .main-content {
    margin-left: 0;
  }

  body.nav-open .main-content {
    margin-left: 170px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text span {
    min-width: 100px;
  }

  .about-card,
  .step-card,
  .testimonial-card,
  .contact-item {
    padding: 20px;
  }

  .step-icon-circle {
    width: 70px;
    height: 70px;
    margin: 14px auto 18px;
  }

  .nav-link span {
    font-size: 12px;
  }
}