:root {
  --navy: #1b1464;
  --green: #0c4227;
  --brown: #563418;
  --sky: #3fa9f5;
  --ink: #1a1a1a;
  --cream: #0d0d0d;
  --surface: #171717;
  --border-dark: #2a2a2a;
  --text-light: #e9e9e9;
  --text-muted: #a8a8a8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-light);
  background: var(--cream);
  scroll-behavior: smooth;
}

a { color: var(--sky); }

img { max-width: 100%; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
header.site-header {
  background: #000000;
  border-bottom: 1px solid #2a2a2a;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--sky);
}

.nav-cta {
  background: var(--sky);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 6px;
}

.nav-cta:hover {
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 25% 15%, rgba(63,169,245,0.18) 0%, transparent 45%),
              linear-gradient(160deg, var(--navy) 0%, var(--sky) 100%);
  color: #ffffff;
  text-align: center;
  padding: 90px 24px 100px;
}

.hero-logo-corner {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 44px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.hero-logo-corner img {
  height: 240px;
  display: block;
}

@media (max-width: 1150px) {
  .hero-logo-corner {
    display: none;
  }
}

.hero-photo {
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
}

.hero.hero-left {
  text-align: left;
}

.hero.hero-left h1 {
  max-width: 560px;
}

.hero.hero-left p {
  margin: 0 0 32px;
  max-width: 480px;
}

.hero-logo-card {
  display: inline-block;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 30px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  margin-bottom: 28px;
}

.hero-logo-card img {
  height: 70px;
  display: block;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.btn {
  display: inline-block;
  background: var(--sky);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn:hover {
  background: #2c8fd6;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff !important;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Sections */
section {
  padding: 72px 24px;
}

section.alt {
  background: var(--surface);
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 12px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sky);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}

/* Cards / Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #1c1c1c;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  border: 1px solid var(--border-dark);
}

.card .thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 3px;
  margin: 0 0 20px;
  display: block;
}

.card h3 {
  color: #ffffff;
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.97rem;
}

/* Pillars (Why Us) */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.pillar {
  text-align: center;
  padding: 20px;
}

.pillar .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.pillar h3 {
  color: #ffffff;
  margin: 0 0 10px;
}

.pillar p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* Featured callout */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.callout h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.callout p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 24px;
}

/* Photo gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.photo-gallery figure {
  margin: 0;
}

.photo-gallery .gallery-link {
  position: relative;
  display: block;
}

.photo-gallery .gallery-thumb {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

.photo-gallery .gallery-preview {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 12px;
  z-index: 100;
  width: 420px;
  max-width: 70vw;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border: 2px solid var(--sky);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
  background: #000;
}

.photo-gallery .gallery-link:hover .gallery-preview {
  display: block;
}

.photo-gallery .gallery-preview.flip-left {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 12px;
}

.photo-gallery .gallery-preview.flip-up {
  top: auto;
  bottom: 0;
}

.photo-gallery figcaption {
  color: var(--text-muted);
  padding: 12px 2px 0;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
}

/* Split image + text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.split img {
  border-radius: 3px;
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.split .text h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 14px;
}

.split .text p {
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  color: #ffffff;
  margin-top: 0;
}

.contact-info p {
  line-height: 1.7;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--sky);
  font-weight: 600;
  text-decoration: none;
}

.contact-info a:hover {
  color: #7cc4f7;
}

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .brand { font-size: 1.35rem; }
}

/* Footer */
footer.site-footer {
  background: linear-gradient(160deg, var(--navy) 0%, var(--sky) 100%);
  color: rgba(255,255,255,0.8);
  padding: 40px 24px;
  text-align: center;
}

footer.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

footer.site-footer .footer-links {
  margin: 14px 0;
}

footer.site-footer .footer-links a {
  color: rgba(255,255,255,0.85);
  margin: 0 12px;
  text-decoration: none;
  font-size: 0.9rem;
}

footer.site-footer .footer-links a:hover {
  color: var(--sky);
}

footer.site-footer small {
  color: rgba(255,255,255,0.5);
}

/* Trip inquiry form */
.inquiry-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.inquiry-card h3 {
  color: var(--navy);
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.inquiry-subtitle {
  color: var(--sky);
  font-weight: 600;
  margin: 0 0 24px;
}

.inquiry-card label {
  display: block;
  color: #333;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 18px 0 6px;
}

.inquiry-card input,
.inquiry-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #222;
  background: #fff;
}

.inquiry-card input:focus,
.inquiry-card textarea:focus {
  outline: none;
  border-color: var(--sky);
}

.inquiry-card textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.inquiry-submit {
  width: 100%;
  margin-top: 24px;
  background: var(--sky);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.inquiry-submit:hover {
  background: #2c8fd6;
}

.inquiry-success {
  background: #e6f4ea;
  color: #1e7a3d;
  border: 1px solid #b7e2c3;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.inquiry-error {
  background: #fdecea;
  color: #a3312a;
  border: 1px solid #f3c2bd;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}

#inquire {
  scroll-margin-top: 90px;
}
