:root {
  --blue: #0a77d6;
  --teal: #56d6bf;
  --dark: #0b2a3a;
  --muted: #f2f6f8;
  --card-shadow: 0 20px 40px rgba(18, 40, 60, 0.08);
  --accent: #39caa0;
  --white: #ffffff;
  --rounded: 14px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 95%;
  margin: 0 auto;
}

/* HEADER */
header {
  box-shadow: 0 0 10px #eaeaea;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--dark);
  font-size: 18px;
}
.brand .palo {
  color: var(--accent);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: rgba(11, 42, 58, 0.8);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.btn-contact {
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #4b6879;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}
/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;

  margin: 24px auto;
  background: linear-gradient(180deg, #f7fafb 0%, #f3f7f8 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.hero-left {
  padding: 54px 48px;
  background: linear-gradient(180deg, #fbfcfd 0%, #f7fbfb 100%);
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 20px;
}
.hero h1 {
  margin: 0 0 12px 0;
  font-size: 34px;
  color: var(--blue);
  line-height: 1.05;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}
.hero p.lead {
  color: rgba(11, 42, 58, 0.7);
  margin: 0 0 18px;
  font-size: 16px;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  padding: 10px 18px;
  border-radius: 28px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 8px 18px rgba(86, 214, 191, 0.18);
}

.hero-right {
  position: relative;
  min-height: 320px;
  background-image: url("images/main.avif");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  width: 320px;
  max-width: 85%;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(9, 24, 40, 0.12);
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -20%);
}
.hero-card .tag {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}

/* SECTION: SERVICES */
.section {
  margin: 60px auto;
  padding: 0 20px;
}
.section h2 {
  color: var(--blue);
  font-size: 36px;
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.section p.subtitle {
  color: rgba(11, 42, 58, 0.6);
  text-align: center;
  margin: 0 auto 28px;
  max-width: 720px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  min-height: 160px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.card img {
  width: 110px;
  height: 110px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(9, 24, 40, 0.06);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--dark);
}
.card p {
  margin: 0;
  color: rgba(11, 42, 58, 0.65);
  font-size: 14px;
}

.big-feature {
  margin-top: 22px;
  background: linear-gradient(90deg, #dff6f0 0%, #bff1e4 100%);
  padding: 28px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--card-shadow);
}
.big-feature img {
  width: 240px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(9, 24, 40, 0.08);
}
.big-feature .meta {
  flex: 1;
}
.big-feature h3 {
  margin: 0 0 10px;
}
.big-feature p {
  margin: 0;
  color: rgba(11, 42, 58, 0.66);
}

/* ABOUT ROW */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 48px;
}
.about-row img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: var(--card-shadow);
}
.about-text h3 {
  color: var(--blue);
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
}
.about-text p {
  color: rgba(11, 42, 58, 0.7);
  line-height: 1.6;
}
.btn-ghost {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* TOURS CARDS (angled look)*/
.tours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.tour-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  transform: rotate(-1.5deg);
  transition: transform 0.25s;
  min-height: 260px;
  position: relative;
  overflow: visible;
}
.tour-card:nth-child(2) {
  transform: rotate(1.5deg);
}
.tour-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.tour-card h4 {
  margin: 0 0 8px;
}
.tour-card p {
  color: rgba(11, 42, 58, 0.65);
  font-size: 14px;
}
.tour-card .learn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  margin-top: 48px;
  background: #f6f8fa;
  padding: 28px;
  border-radius: 12px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--card-shadow);
  min-height: 120px;
}
.testimonial .meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.stars {
  color: #f6b23b;
  font-weight: 800;
  font-size: 14px;
}

/* CONTACT CTA */
.cta-hero {
  margin-top: 36px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-image: linear-gradient(
      180deg,
      rgba(6, 15, 26, 0.1),
      rgba(6, 15, 26, 0.1)
    ),
    url("images/beach-group.jpg");
  background-size: cover;
  background-position: center;
  padding: 56px 28px;
  color: #fff;
  box-shadow: var(--card-shadow);
}
.cta-hero .overlay {
  background: linear-gradient(
    180deg,
    rgba(14, 45, 69, 0.48),
    rgba(14, 45, 69, 0.32)
  );
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cta-hero .content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta-hero h3 {
  margin: 0;
  font-size: 26px;
}
.cta-hero p {
  margin: 6px 0 0;
  font-size: 16px;
  max-width: 660px;
  opacity: 0.95;
}
.cta-hero .contact-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 28px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* FOOTER */
footer {
  margin-top: 22px;
  background: var(--blue);
  color: #fff;
  padding: 36px 20px;
}
.footer-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.footer-grid h4 {
  margin: 0 0 8px;
  color: #fff;
}
footer p,
footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
footer a {
  display: block;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    margin: 20px;
  }
  .hero-right {
    order: -1;
    min-height: 260px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .tours {
    grid-template-columns: 1fr;
  }
  .about-row {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .topbar {
    padding: 12px 18px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    font-size: 18px;
  }

  .btn-contact {
    display: inline-block;
    margin-top: 10px;
  }

  .hero-left {
    padding: 28px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-card {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 84%;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .big-feature {
    flex-direction: column;
  }
  .big-feature img {
    width: 100%;
    height: auto;
  }

  .hero-right {
    min-height: 220px;
  }
  .cta-hero {
    padding: 36px 18px;
    text-align: center;
  }
  .cta-hero .content {
    flex-direction: column;
    align-items: center;
  }
}
/* small tweaks for super small mobile (<= 420) */
@media (max-width: 420px) {
  .hero h1 {
    font-size: 22px;
  }
  .eyebrow {
    font-size: 18px;
  }
  .brand {
    font-size: 16px;
  }
  .card img {
    display: none;
  }
  .tours {
    gap: 18px;
  }
}

/* about us page */
.hero-about {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero-about h1 {
  font-size: 2.5em;
  letter-spacing: 1px;
}

.hero-about p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* About Section */
.about-section {
  background: #b8eae4;
  padding: 50px 20px;
}

.about-section p {
  max-width: 900px;
  margin: auto;
  font-size: 1.1em;
  color: #004d4d;
}

/* Started Section */
.started-section {
  padding: 60px 20px;
}

.started-section h2 {
  color: #0065c3;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.started-section p {
  margin-bottom: 20px;
  color: #333;
}

/* Contact Section */
.contact-section {
  background: #e9f9f8;
  text-align: center;
  padding: 60px 20px;
}

.contact-section h2 {
  color: #0065c3;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1em;
  margin-bottom: 30px;
}

.contact-section p a {
  text-decoration: none;
  color: #0065c3;
}

.contact-now-btn {
  background: #00c7a7;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-now-btn:hover {
  background: #009e8a;
}

@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 2em;
  }

  .hero-about p {
    font-size: 1em;
  }

  .started-section h2,
  .contact-section h2 {
    font-size: 1.5em;
  }
}

/* contact us page */
.gpa-contact-wrapper {
  padding: 80px 8%;
  text-align: center;
}

.gpa-contact-heading {
  color: #1c5dd8;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
}

.gpa-contact-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

.gpa-contact-card {
  text-align: center;
  max-width: 250px;
}

.gpa-contact-card i {
  font-size: 2em;
  color: #1c5dd8;
  margin-bottom: 10px;
}

/* Contact Form & Map */
.gpa-contact-body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.gpa-map-box iframe {
  width: 450px;
  height: 300px;
  border: 0;
  border-radius: 6px;
}

.gpa-contact-form {
  max-width: 450px;
  width: 100%;
}

.gpa-input-row {
  display: flex;
  gap: 10px;
}

.gpa-contact-form input,
.gpa-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.gpa-send-btn {
  background: #39d3b4;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.gpa-send-btn:hover {
  background: #2ebc9f;
}
@media (max-width: 992px) {
  .gpa-contact-body {
    flex-direction: column;
    align-items: center;
  }

  .gpa-map-box iframe {
    width: 100%;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .gpa-nav-list {
    display: none;
  }

  .gpa-contact-details {
    gap: 30px;
  }
  .gpa-contact-wrapper {
    padding: 40px 4%;
  }
}

@media (max-width: 480px) {
  .gpa-contact-heading {
    font-size: 1.6em;
  }

  .gpa-input-row {
    flex-direction: column;
  }
}

/* asdsadasdasddsa */
#website-ad-section img {
  width: 100%;
}

#mobileView {
  display: none;
}

@media (max-width: 767px) {
  #website-ad-section {
    display: block;
    height: 100%;
  }

  #mobileView {
    display: inline-block;
    height: 100vh;
    align-items: center;
  }

  #desktopView {
    display: none;
  }
}

/* #website-ad-section img {
  width: 100%;
}

#mobileView {
  display: none;
}

@media (max-width: 767px) {
  #mobileView {
    display: block;
  }

  #desktopView {
    display: none;
  }
} */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 3%;
  transform: translateX(0%);
  background: #fff;
  color: #000;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  width: 400px;
}

.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn {
  padding: 8px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn.accept {
  background: #4caf50;
  color: #fff;
}

.btn.accept:hover {
  background: #45a049;
}

.btn.decline {
  background: #f44336;
  color: #fff;
}

.btn.decline:hover {
  background: #e53935;
}

@media (max-width: 768px) {
  .cookie-banner {
    right: 5%;
    width: 90%;
  }

  .btn {
    width: 100%;
  }
}
