@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #002060;
  --navy-deep:  #002366;
  --navy-mid: #003090;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #FAF3DC;
  --white: #ffffff;
  --off-white: #F7F7F5;
  --text: #1A1A2E;
  --text-muted: #5A5A72;
  --border: #E2E2EA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 7%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,32,96,0.06);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap img { height: 46px; width: auto; object-fit: contain; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.logo-text span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.6rem; font-weight: 500; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 10px 24px; border-radius: 4px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 80px 7%;
  position: relative; overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  display: none;
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  transition: opacity 1s;
}
.hero::after {
  display: none;
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,20,64,0.97) 40%, rgba(0,20,64,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 2px; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900; color: var(--white); line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  padding: 14px 32px; border-radius: 4px; font-weight: 700;
  text-decoration: none; font-size: 0.9rem; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8);
  padding: 14px 32px; border-radius: 4px; font-weight: 500;
  text-decoration: none; font-size: 0.9rem; transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap;
}
.stat-item .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-item .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── SHARED SECTIONS ── */
section { padding: 90px 7%; }
.section-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 600px; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy); padding: 22px 7%; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 1px; text-transform: uppercase; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

/* ── ABOUT SECTION with background image ── */
.about-section-bg {
  background: var(--white);
  position: relative;
}
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text .section-sub { max-width: none; }
.about-img-col { position: relative; }
.about-img-col img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,32,96,0.15);
  object-fit: cover; height: 420px;
  display: block;
}
.about-img-col .img-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--navy); color: var(--white);
  padding: 18px 22px; border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.about-img-col .img-badge .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-img-col .img-badge span { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.motto-block { background: var(--navy); color: var(--white); border-radius: 8px; padding: 32px 36px; margin-top: 36px; }
.motto-block .label { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.motto-block p { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; line-height: 1.5; }
.mvv-stack { display: flex; flex-direction: column; gap: 20px; }
.mvv-item { border-left: 3px solid var(--gold); padding: 20px 24px; background: var(--off-white); border-radius: 0 6px 6px 0; }
.mvv-item h4 { font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.mvv-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 36px 28px; background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width 0.3s; }
.service-card:hover { box-shadow: 0 12px 36px rgba(0,32,96,0.08); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::after { width: 100%; }
.service-icon { width: 48px; height: 48px; border-radius: 8px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.3rem; }
.service-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── DESTINATIONS PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 340px;
  overflow: hidden;
}
.photo-strip-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.photo-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.65) saturate(0.85);
}
.photo-strip-item:hover img { transform: scale(1.07); filter: brightness(0.5) saturate(1); }
.photo-strip-item .overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 24px 16px;
  background: linear-gradient(to top, rgba(0,20,64,0.8) 0%, transparent 60%);
}
.photo-strip-item .country { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: white; }
.photo-strip-item .flag { font-size: 1.8rem; margin-bottom: 6px; }

/* ── FAQ ── */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 500; font-size: 0.95rem; color: var(--navy); gap: 20px; }
.faq-q .icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: transform 0.2s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative; overflow: hidden;
  text-align: center; padding: 0px 7%;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1800&q=80');
  background-size: cover; background-position: center;
  filter: brightness(0.22) saturate(0.5);
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,20,64,0.9) 0%, rgba(0,32,96,0.75) 100%);
}
.cta-banner > * { position: relative; z-index: 2; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail .icon { width: 40px; height: 40px; border-radius: 6px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-detail .detail-text .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.contact-detail .detail-text p { font-size: 0.9rem; color: var(--text); }
.contact-detail .detail-text a { color: var(--navy); text-decoration: none; font-weight: 600; }
.contact-detail .detail-text a:hover { color: var(--gold); }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 40px; }
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 4px; }
.form-card .sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 5px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--text); transition: border-color 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,32,96,0.06); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; padding: 14px; background: var(--navy); color: var(--white); border: none; border-radius: 5px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 8px; }
.submit-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }
.id-result { display: none; text-align: center; padding: 28px; background: var(--off-white); border-radius: 8px; margin-top: 20px; }
.id-result .id-code { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); font-weight: 700; margin: 12px 0; letter-spacing: 2px; }
.id-result p { font-size: 0.85rem; color: var(--text-muted); }

/* ── FOOTER ── */
footer { background: var(--navy-deep); color: var(--white); padding: 64px 7% 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white) !important; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 260px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item .fc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 10px 20px; border-radius: 6px;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  margin-top: 16px; transition: background 0.2s, transform 0.15s;
}
.footer-wa-btn:hover { background: #1fba58; transform: translateY(-1px); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 10px;
}
.wa-float-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.wa-float-btn svg { width: 32px; height: 32px; fill: white; }
.wa-float-label {
  background: var(--navy-deep);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  display: flex; align-items: center; gap: 6px;
}
.wa-float-label::after {
  content: '';
  position: absolute; right: -6px;
  top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-deep);
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }
/* Pulse ring */
.wa-float-btn::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 100px 7% 70px;
  background: #002366;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.18);
  display: none;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,20,64,0.96) 50%, rgba(0,32,96,0.7) 100%);
  display: none;
}
.page-hero .section-tag,
.page-hero h1 { position: relative; z-index: 2; }
.page-hero .section-tag { color: var(--gold-light); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.2; }
.page-hero p { position: relative; z-index: 2; font-size: 1rem; color: rgba(255,255,255,0.55); margin-top: 10px; max-width: 540px; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-layout, .contact-layout, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .photo-strip-item { height: 220px; }
  .hero-stats { gap: 28px; }
  .about-img-col .img-badge { right: 0; bottom: -12px; }
}
@media (max-width: 680px) {
  nav { padding: 0 5%; }
  section { padding: 60px 5%; }
  .hero { padding: 60px 5%; min-height: 85vh; }
  .page-hero { padding: 70px 5% 50px; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 20px 5%; border-bottom: 1px solid var(--border); gap: 16px; z-index: 200; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 48px 5% 0; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .wa-float { bottom: 20px; right: 18px; }
  .wa-float-btn { width: 54px; height: 54px; }
}

.powered-by-link {
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  color: gold; 
  transition: color 0.3s ease;
}

.powered-by-link span {
  font-weight: bold;
  color: white; /* Darker for the brand name */
}

.powered-by-link:hover {
  color: #007bff; /* Changes to blue on hover */
}

.powered-by-link:hover span {
  color: #007bff;
}

.social-link:hover { border-color: var(--gold); background: rgba(201,168,76,0.12); }
.social-link svg { width: 30px; height: 30px; fill: rgba(255,255,255,0.6); transition: fill 0.2s; }
.social-link:hover svg { fill: var(--gold); }
