/* ══ Reset and Base Styles ══ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  line-height: 1.6;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ══ Header / Navbar ══ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  color: #222;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-desktop {
  height: 170px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-desktop:hover {
  transform: scale(1.05);
}

.logo-mobile {
  display: none;
  align-items: center;
  gap: 4px;
}

.logo-mobile-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-mobile-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-mobile-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.logo-mobile-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #555;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

nav a {
  position: relative;
  padding: 0.5rem 0;
  color: #333;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: #208a9c;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #208a9c;
}

nav a:hover::after {
  width: 100%;
}

/* ══ Burger Button ══ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #222;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ══ Nav Overlay (mobile) ══ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.nav-overlay.is-open {
  display: block;
}

/* ══ Hero / Parallax ══ */
.parallax {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 202px;
}

/* iOS Safari does not support background-attachment: fixed — disable parallax on touch devices */
@supports (-webkit-touch-callout: none) {
  .parallax {
    background-attachment: scroll;
  }
}

.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.20), rgba(0,0,0,0.30));
}

.parallax-content {
  position: relative;
  max-width: 800px;
  padding: 2rem;
  z-index: 5;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.8;
}

.hero-tagline {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-weight: 500;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0;
  background: #ffb703;
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.3);
}

.btn-primary:hover {
  background: #ffc933;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.4);
}

/* ══ Content Sections ══ */
section {
  padding: 5rem 2rem;
  background-color: #ffffff;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0b5f7f;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-text p {
  margin-bottom: 1.2rem;
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.highlight:hover {
  transform: translateY(-4px);
}

.highlight strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #0b5f7f;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Destinations / Reach */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.card-body {
  padding: 1.8rem;
  font-size: 0.95rem;
  color: #555;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0b5f7f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #e0f7fa;
  color: #0b5f7f;
  font-weight: 600;
  width: fit-content;
}

/* Approach steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  background: #fff;
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0b5f7f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  font-weight: 600;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #0b5f7f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact / CTA */
.contact-section {
  background: linear-gradient(135deg, #0b5f7f 0%, #0d7a96 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-text ul {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-text li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.contact-details {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details a:hover {
  color: #f4c87a;
  opacity: 1;
}

form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  outline: none;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: border-color 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

select option {
  background: #0b5f7f;
  color: #fff;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 2rem;
  font-size: 0.85rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #aaa;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  nav ul {
    gap: 1.5rem;
    font-size: 0.85rem;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  background: linear-gradient(45deg, #128c7e, #25d366);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ── Gallery Section ── */
#gallery { padding: 80px 0; background: #f9f6f0; }

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0b0b0b;
  user-select: none;
}

.slides {
  position: relative;
  height: clamp(240px, 52vw, 540px);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease;
  margin: 0;
}

.slide.is-active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.50);
  color: #fff;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  font-size: 26px;
  line-height: 46px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}

.slider-btn:hover { background: rgba(255, 255, 255, 0.35); }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.38);
  border-radius: 999px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  transition: background 0.2s;
}

.dot.is-active { background: #fff; }

@media (max-width: 600px) {
  .slider-btn { width: 36px; height: 36px; font-size: 20px; line-height: 36px; }
}
@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
  }

  form {
    padding: 1.2rem;
    overflow: hidden;
  }

  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: 0 0;
    height: 68px;
    margin-bottom: 8px !important;
  }

  .nav-container {
    padding: 0.8rem 1rem;
    position: relative;
    justify-content: center;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .parallax {
    margin-top: 101px;
  }

  .hero-title {
    font-size: 2rem;
  }


  header {
    background: #eef7fa;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: flex;
  }

  .logo-wrap {
    justify-content: center;
    display: flex;
  }

  .burger {
    display: flex;
    position: absolute;
    right: 1rem;
  }

  .burger span {
    background-color: #222;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  nav ul.is-open {
    right: 0;
  }
}

/* Very narrow screens — Galaxy Z Fold cover, small Android phones */
@media (max-width: 390px) {
  section {
    padding: 2.5rem 0.5rem;
  }

  form {
    padding: 0.8rem;
  }

  .g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
    height: 60px;
  }

  .contact-text h2 {
    font-size: 1.6rem;
  }
}

