/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a8a;
}

.logo span {
  color: #f97316; /* orange accent */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #1e3a8a;
}

.btn {
  padding: 0.6rem 1.2rem;
  background: #1e3a8a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn:hover {
  background: #0f2457;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
    background-image: url('images/travel-8044043_1280.jpg');
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn.primary {
  background: #1e3a8a;
}

.btn.secondary {
  background: #f97316;
}

.btn.secondary:hover {
  background: #c2410c;
}
/* ABOUT SECTION */
.about {
  background: #ffffff;
  padding: 5rem 10%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap; /* makes it responsive */
}

.about-img img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.about-content p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.point {
  background: #f9fafb;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* SERVICES SECTION */
.services {
  background: #f9fafb;
  padding: 5rem 10%;
  text-align: center;
}

.services-container h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.services-container .subtitle {
  color: #555;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #1e3a8a;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* TESTIMONIALS SECTION */
.testimonials {
  background: #ffffff;
  padding: 5rem 10%;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.testimonials .subtitle {
  color: #555;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f9fafb;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #1e3a8a;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 0.3rem;
}

.testimonial-card .country {
  display: block;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* CTA SECTION */
.cta {
  background: linear-gradient(to right, #e0f2fe, #f9fafb);
  padding: 4rem 10%;
  text-align: center;
  border-radius: 12px;
  margin: 4rem 10%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.cta-container h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.cta-container p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.cta .btn.primary {
  background: #f97316;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta .btn.primary:hover {
  background: #c2410c;
}
/* PROCESS SECTION */
.process {
  background: #f9fafb;
  padding: 5rem 10%;
  text-align: center;
}

.process h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.process .subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.step .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 0.8rem;
}

.step p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}
 /* FAQ SECTION */
.faq {
  background: #ffffff;
  padding: 5rem 10%;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.faq .subtitle {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.faq-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #f9fafb;
  color: #1e3a8a;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.2rem;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.2rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  padding: 1rem 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* expand smoothly */
  padding: 0 1.2rem 1rem 1.2rem;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

/* CONTACT SECTION */
.contact {
  background: #f9fafb;
  padding: 5rem 10%;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.contact .subtitle {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* FORM STYLES */
.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.contact-form button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  background: #f97316;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #c2410c;
}

/* CONTACT INFO */
.contact-info {
  text-align: left;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-info h3 {
  font-size: 1.3rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.8rem;
}

.map {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
}


/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 5%;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
