/* ═══════════════════════════════════════════════════════
   MAYSON TRAVELS LIMITED — Redesign CSS
   Aesthetic: Premium Travel Agency · Clean & Bold
   Fonts: Poppins + Open Sans
═══════════════════════════════════════════════════════ */

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

/* ── Variables ── */
:root {
  --navy:     #0D2B4E;
  --navy-mid: #1565C0;
  --blue:     #1976D2;
  --blue-lt:  #42A5F5;
  --orange:   #FF6D00;
  --orange-lt:#FF9800;
  --ivory:    #F8FAFD;
  --smoke:    #EEF2F7;
  --white:    #FFFFFF;
  --dark:     #0D1117;
  --grey:     #6C757D;
  --grey-lt:  #ADB5BD;
  --font-h:   'Poppins', sans-serif;
  --font-b:   'Open Sans', sans-serif;
  --radius:   10px;
  --radius-lg:18px;
  --shadow:   0 4px 24px rgba(13,43,78,.10);
  --shadow-lg:0 12px 48px rgba(13,43,78,.18);
  --t:        .28s ease;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-b); background:var(--white); color:var(--dark); overflow-x:hidden; line-height:1.7; }
img { max-width:100%; display:block; }
a  { text-decoration:none; color:inherit; }
ul { list-style:none; padding:0; margin:0; }
button { cursor:pointer; font-family:var(--font-h); }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--navy); }
::-webkit-scrollbar-thumb { background:var(--orange); border-radius:99px; }

/* ── Layout ── */
.container { max-width:1160px; margin:0 auto; padding:0 28px; }
.section    { padding:90px 0; }
.section-sm { padding:60px 0; }

/* ── Typography ── */
.eyebrow {
  font-family:var(--font-h); font-size:.72rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--orange); display:inline-block; margin-bottom:10px;
}
h1,h2,h3,h4,h5,h6 { font-family:var(--font-h); line-height:1.2; }
.section-title {
  font-size:clamp(1.8rem,3vw,2.6rem); font-weight:700;
  color:var(--navy); margin-bottom:14px;
}
.section-title.light { color:var(--white); }
.section-subtitle { font-size:.95rem; color:var(--grey); max-width:540px; line-height:1.8; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; border-radius:99px; font-family:var(--font-h);
  font-size:.88rem; font-weight:600; letter-spacing:.04em;
  border:none; transition:var(--t); cursor:pointer;
}
.btn-primary { background:var(--blue); color:var(--white); }
.btn-primary:hover { background:var(--navy); transform:translateY(-2px); box-shadow:0 8px 28px rgba(21,101,192,.35); }
.btn-orange  { background:var(--orange); color:var(--white); }
.btn-orange:hover { background:#e65000; transform:translateY(-2px); box-shadow:0 8px 28px rgba(255,109,0,.35); }
.btn-outline { background:transparent; border:2px solid var(--white); color:var(--white); }
.btn-outline:hover { background:var(--white); color:var(--navy); }
.btn-outline-blue { background:transparent; border:2px solid var(--blue); color:var(--blue); }
.btn-outline-blue:hover { background:var(--blue); color:var(--white); }
.btn-wa { background:#25D366; color:var(--white); }
.btn-wa:hover { background:#128C7E; transform:translateY(-2px); box-shadow:0 8px 28px rgba(37,211,102,.3); }
.btn-sm { padding:9px 22px; font-size:.82rem; }
.btn-lg { padding:16px 38px; font-size:.95rem; }

/* Utilities */
.text-center { text-align:center; }
.text-white  { color:var(--white) !important; }
.text-orange { color:var(--orange); }
.text-blue   { color:var(--blue); }
.d-flex      { display:flex; }
.align-center { align-items:center; }
.gap-12 { gap:12px; }
.gap-16 { gap:16px; }
.mb-8  { margin-bottom:8px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mb-40 { margin-bottom:40px; }
.mt-12 { margin-top:12px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }

/* ── Fade-up animation ── */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }


/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
#topbar {
  background:var(--navy); color:rgba(255,255,255,.7);
  font-family:var(--font-h); font-size:.74rem; letter-spacing:.06em;
  padding:8px 0;
}
.topbar-inner {
  display:flex; justify-content:space-between; align-items:center;
}
.topbar-left { display:flex; gap:20px; align-items:center; }
.topbar-right { display:flex; gap:18px; align-items:center; }
.topbar-item { display:flex; align-items:center; gap:7px; color:rgba(255,255,255,.65); }
.topbar-item a { color:rgba(255,255,255,.65); transition:color .2s; }
.topbar-item a:hover { color:var(--orange-lt); }
.topbar-item i { color:var(--orange-lt); font-size:.8rem; }
.topbar-social { display:flex; gap:14px; }
.topbar-social a { color:rgba(255,255,255,.55); font-size:.9rem; transition:color .2s; }
.topbar-social a:hover { color:var(--orange-lt); }


/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position:sticky; top:0; z-index:999;
  background:var(--white); border-bottom:1px solid var(--smoke);
  height:72px; display:flex; align-items:center;
  box-shadow:0 2px 16px rgba(13,43,78,.06);
  transition:box-shadow .3s, background .3s;
}
#navbar.scrolled {
  box-shadow:0 4px 32px rgba(13,43,78,.14);
  background:rgba(255,255,255,.97); backdrop-filter:blur(12px);
}
.navbar-inner {
  display:flex; align-items:center; justify-content:space-between;
  width:100%;
}
.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo img { height:46px; width:auto; }
.nav-logo-text { font-family:var(--font-h); font-size:1.05rem; font-weight:700; color:var(--navy); line-height:1.1; }
.nav-logo-text span { color:var(--blue); }
.nav-logo-sub  { font-size:.62rem; letter-spacing:.12em; color:var(--grey-lt); text-transform:uppercase; }

.nav-links { display:flex; align-items:center; gap:4px; }
.nav-links li a {
  font-family:var(--font-h); font-size:.88rem; font-weight:500;
  color:var(--grey); padding:8px 14px; border-radius:8px;
  transition:color .2s, background .2s; display:block;
}
.nav-links li a:hover { color:var(--blue); background:var(--smoke); }
.nav-links li.active a { color:var(--blue); font-weight:600; }
.nav-cta { background:var(--orange); color:var(--white) !important; border-radius:99px !important; padding:9px 22px !important; }
.nav-cta:hover { background:#e65000 !important; }

.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; }
.hamburger span { display:block; width:24px; height:2.5px; background:var(--navy); border-radius:2px; transition:.3s; transform-origin:center; }
.hamburger.open span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

.nav-overlay { display:none; position:fixed; inset:0; top:72px; background:rgba(13,43,78,.35); z-index:997; backdrop-filter:blur(3px); }
.nav-overlay.visible { display:block; }


/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero-slider {
  position:relative; height:92vh; min-height:600px;
  overflow:hidden; background:var(--navy);
}
.slide {
  position:absolute; inset:0;
  opacity:0; transition:opacity 1s ease;
  display:flex; align-items:center;
}
.slide.active { opacity:1; }
.slide-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.slide-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to right, rgba(13,43,78,.85) 0%, rgba(13,43,78,.45) 60%, transparent 100%);
}
.slide-content {
  position:relative; z-index:2;
  max-width:620px; padding:0 28px;
}
.slide-tag {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,109,0,.2); border:1px solid rgba(255,109,0,.4);
  border-radius:99px; padding:6px 18px;
  font-family:var(--font-h); font-size:.72rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:var(--orange-lt);
  margin-bottom:20px;
}
.slide-title {
  font-size:clamp(2.4rem,5.5vw,4rem); font-weight:800; color:var(--white);
  line-height:1.08; margin-bottom:18px;
}
.slide-title span { color:var(--orange-lt); }
.slide-desc { font-size:1rem; color:rgba(255,255,255,.75); line-height:1.8; margin-bottom:32px; max-width:480px; }
.slide-btns { display:flex; gap:14px; flex-wrap:wrap; }

/* Slider Controls */
.slider-controls {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; gap:10px; z-index:10;
}
.slider-dot {
  width:28px; height:5px; border-radius:99px;
  background:rgba(255,255,255,.35); border:none; cursor:pointer;
  transition:.3s; padding:0;
}
.slider-dot.active { background:var(--orange); width:48px; }
.slider-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.2);
  color:var(--white); font-size:1.2rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:10; transition:.2s; backdrop-filter:blur(4px);
}
.slider-arrow:hover { background:var(--orange); border-color:var(--orange); }
.slider-prev { left:24px; }
.slider-next { right:24px; }

/* Scroll hint */
.scroll-hint {
  position:absolute; bottom:80px; right:40px; z-index:10;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-family:var(--font-h); font-size:.68rem; letter-spacing:.14em;
  text-transform:uppercase; color:rgba(255,255,255,.45);
}
.scroll-line {
  width:1px; height:56px;
  background:linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { transform:scaleY(1); opacity:.6; } 50% { transform:scaleY(.6); opacity:.2; } }


/* ══════════════════════════════════════
   FEATURES BAR
══════════════════════════════════════ */
.features-bar { background:var(--navy); padding:0; }
.features-bar-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
}
.feat-item {
  display:flex; align-items:center; gap:16px;
  padding:22px 24px; border-right:1px solid rgba(255,255,255,.08);
  transition:background .2s;
}
.feat-item:last-child { border-right:none; }
.feat-item:hover { background:rgba(255,255,255,.04); }
.feat-icon-wrap {
  width:46px; height:46px; border-radius:10px; flex-shrink:0;
  background:rgba(255,109,0,.15);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; color:var(--orange-lt);
}
.feat-title { font-family:var(--font-h); font-weight:600; font-size:.88rem; color:var(--white); }
.feat-sub   { font-size:.76rem; color:rgba(255,255,255,.45); margin-top:2px; }


/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img {
  width:100%; height:440px; border-radius:20px;
  object-fit:cover;
  background:linear-gradient(135deg,#1565C0,#0D2B4E);
  display:flex; align-items:center; justify-content:center;
  font-size:6rem; overflow:hidden;
}
.about-img img { width:100%; height:100%; object-fit:cover; border-radius:20px; }
.about-badge {
  position:absolute; bottom:-20px; right:-20px;
  background:var(--orange); color:var(--white);
  border-radius:14px; padding:20px 24px; text-align:center;
  box-shadow:0 8px 32px rgba(255,109,0,.35);
}
.about-badge-num { font-family:var(--font-h); font-size:2.4rem; font-weight:800; line-height:1; }
.about-badge-lbl { font-size:.72rem; font-family:var(--font-h); letter-spacing:.08em; opacity:.85; }

.about-checks { display:flex; flex-direction:column; gap:12px; margin:20px 0 28px; }
.about-check { display:flex; gap:12px; align-items:flex-start; }
.check-icon { width:22px; height:22px; border-radius:50%; background:rgba(25,118,210,.12); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:.8rem; color:var(--blue); margin-top:2px; }
.check-text { font-size:.88rem; color:var(--grey); line-height:1.6; }
.check-text strong { color:var(--navy); font-weight:600; }


/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card {
  background:var(--white); border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--smoke); transition:var(--t);
  display:flex; flex-direction:column;
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(25,118,210,.2); }
.service-card-img {
  height:190px; overflow:hidden; position:relative;
}
.service-card-img img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.service-card:hover .service-card-img img { transform:scale(1.07); }
.service-card-img-placeholder {
  height:190px; display:flex; align-items:center; justify-content:center;
  font-size:3.5rem;
}
.service-card-body { padding:24px; flex:1; display:flex; flex-direction:column; }
.service-card-icon {
  width:44px; height:44px; border-radius:10px;
  background:rgba(25,118,210,.1); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; margin-bottom:14px;
}
.service-card-title { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.service-card-desc { font-size:.84rem; color:var(--grey); line-height:1.75; flex:1; margin-bottom:18px; }
.service-card-footer { padding-top:14px; border-top:1px solid var(--smoke); }


/* ══════════════════════════════════════
   STATS ROW
══════════════════════════════════════ */
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  background:var(--blue); border-radius:var(--radius-lg); overflow:hidden;
}
.stat-item { padding:36px 24px; text-align:center; border-right:1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:var(--font-h); font-size:2.8rem; font-weight:800; color:var(--white); line-height:1; }
.stat-label { font-size:.8rem; color:rgba(255,255,255,.65); margin-top:6px; letter-spacing:.06em; }
.stat-icon { font-size:1.6rem; margin-bottom:10px; color:rgba(255,255,255,.5); }


/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-masonry {
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.gallery-item {
  border-radius:12px; overflow:hidden; position:relative;
  cursor:pointer;
}
.gallery-item:nth-child(7n+1) { grid-column:span 2; }
.gallery-img-wrap { overflow:hidden; }
.gallery-img-wrap img {
  width:100%; height:240px; object-fit:cover;
  transition:transform .5s ease;
}
.gallery-item:nth-child(7n+1) .gallery-img-wrap img { height:300px; }
.gallery-item:hover .gallery-img-wrap img { transform:scale(1.07); }
.gallery-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(13,43,78,.75) 0%, transparent 55%);
  display:flex; align-items:flex-end;
  padding:16px; opacity:0; transition:.3s;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay-title { font-family:var(--font-h); font-weight:600; color:var(--white); font-size:.9rem; }
.gallery-overlay-sub { font-size:.75rem; color:rgba(255,255,255,.7); }
.gallery-zoom {
  position:absolute; top:12px; right:12px;
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.15); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; opacity:0; transition:.3s;
  backdrop-filter:blur(4px);
}
.gallery-item:hover .gallery-zoom { opacity:1; }

/* Lightbox */
#lightbox {
  position:fixed; inset:0; z-index:3000;
  background:rgba(13,43,78,.96); display:flex;
  align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s;
}
#lightbox.open { opacity:1; pointer-events:all; }
.lb-inner { max-width:900px; width:92%; position:relative; text-align:center; }
.lb-img { border-radius:14px; overflow:hidden; max-height:520px; }
.lb-img img { width:100%; max-height:520px; object-fit:cover; }
.lb-close {
  position:absolute; top:-48px; right:0;
  background:rgba(255,255,255,.1); border:none; color:var(--white);
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; cursor:pointer; transition:.2s;
}
.lb-close:hover { background:var(--orange); }
.lb-title { font-family:var(--font-h); font-size:1.1rem; font-weight:600; color:var(--white); margin-top:16px; }
.lb-sub { font-size:.82rem; color:rgba(255,255,255,.55); margin-top:4px; }
.lb-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,.1); border:none; color:var(--white);
  width:46px; height:46px; border-radius:50%; font-size:1.2rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:.2s; backdrop-filter:blur(4px);
}
.lb-nav:hover { background:var(--orange); }
.lb-prev { left:-60px; }
.lb-next { right:-60px; }

/* Filter tabs */
.filter-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:36px; }
.filter-btn {
  padding:8px 22px; border-radius:99px;
  font-family:var(--font-h); font-size:.82rem; font-weight:500;
  border:1.5px solid var(--smoke); background:var(--white); color:var(--grey);
  cursor:pointer; transition:.2s;
}
.filter-btn:hover { border-color:var(--blue); color:var(--blue); }
.filter-btn.active { background:var(--navy); color:var(--white); border-color:var(--navy); }


/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card { background:var(--white); border-radius:var(--radius-lg); padding:32px; border:1px solid var(--smoke); position:relative; }
.testi-stars { color:var(--orange); font-size:.9rem; margin-bottom:14px; letter-spacing:2px; }
.testi-text { font-size:.88rem; color:var(--grey); line-height:1.8; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  background:var(--blue); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-h); font-weight:700; color:var(--white); font-size:.88rem;
}
.testi-name { font-family:var(--font-h); font-weight:600; font-size:.88rem; color:var(--navy); }
.testi-origin { font-size:.76rem; color:var(--grey-lt); }
.testi-quote-mark { position:absolute; top:20px; right:24px; font-size:3.5rem; font-family:Georgia,serif; color:rgba(25,118,210,.08); line-height:1; }


/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:48px; }
.contact-info { background:var(--navy); border-radius:var(--radius-lg); padding:40px; color:var(--white); }
.contact-info-title { font-size:1.5rem; font-weight:700; margin-bottom:28px; color:var(--white); }
.contact-info-item { display:flex; gap:16px; margin-bottom:22px; align-items:flex-start; }
.contact-info-icon {
  width:44px; height:44px; border-radius:10px; flex-shrink:0;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.contact-info-label { font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--orange-lt); margin-bottom:4px; }
.contact-info-value { font-size:.9rem; color:rgba(255,255,255,.8); line-height:1.6; }
.contact-info-value a { color:rgba(255,255,255,.8); }
.contact-info-value a:hover { color:var(--orange-lt); }
.wa-block {
  margin-top:28px; padding:20px; border-radius:12px;
  background:rgba(37,211,102,.12); border:1px solid rgba(37,211,102,.2);
  display:flex; align-items:center; gap:16px;
  text-decoration:none; transition:.2s;
}
.wa-block:hover { background:rgba(37,211,102,.18); }
.wa-icon { font-size:2rem; }
.wa-text-label { font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.wa-text-val { font-size:.95rem; font-weight:700; color:#25D366; }

.contact-form-card { background:var(--white); border-radius:var(--radius-lg); padding:40px; border:1px solid var(--smoke); }
.contact-form-title { font-size:1.5rem; font-weight:700; color:var(--navy); margin-bottom:24px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-family:var(--font-h); font-size:.78rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--grey); margin-bottom:7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:12px 16px;
  background:var(--ivory); border:1.5px solid var(--smoke);
  border-radius:var(--radius); font-family:var(--font-b); font-size:.9rem;
  color:var(--dark); outline:none; transition:border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--blue); background:var(--white); }
.form-group textarea { min-height:110px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* Map */
.map-wrap { border-radius:var(--radius-lg); overflow:hidden; height:280px; border:1px solid var(--smoke); margin-top:24px; }
.map-wrap iframe { width:100%; height:100%; border:0; }


/* ══════════════════════════════════════
   PRICING / PACKAGES
══════════════════════════════════════ */
.pkg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pkg-card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1.5px solid var(--smoke); overflow:hidden; transition:.3s;
  position:relative; display:flex; flex-direction:column;
}
.pkg-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(25,118,210,.25); }
.pkg-card.featured { border-color:var(--blue); }
.pkg-badge {
  position:absolute; top:16px; right:16px;
  background:var(--orange); color:var(--white);
  font-family:var(--font-h); font-size:.68rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  padding:4px 14px; border-radius:99px;
}
.pkg-img { height:180px; overflow:hidden; }
.pkg-img img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.pkg-card:hover .pkg-img img { transform:scale(1.08); }
.pkg-img-placeholder { height:180px; display:flex; align-items:center; justify-content:center; font-size:3.5rem; }
.pkg-body { padding:28px; flex:1; display:flex; flex-direction:column; }
.pkg-cat { font-family:var(--font-h); font-size:.7rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--orange); margin-bottom:8px; }
.pkg-name { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:10px; }
.pkg-desc { font-size:.84rem; color:var(--grey); line-height:1.72; flex:1; margin-bottom:16px; }
.pkg-details { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px; }
.pkg-detail { display:flex; align-items:center; gap:6px; font-size:.78rem; color:var(--grey); }
.pkg-detail i { color:var(--blue); }
.pkg-footer { border-top:1px solid var(--smoke); padding-top:18px; display:flex; align-items:center; justify-content:space-between; }
.pkg-price .from { font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; color:var(--grey-lt); }
.pkg-price .amount { font-family:var(--font-h); font-size:1.5rem; font-weight:800; color:var(--navy); }
.pkg-price .per { font-size:.75rem; color:var(--grey-lt); }


/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background:linear-gradient(135deg, var(--navy) 0%, #1565C0 100%);
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,109,0,.12) 0%, transparent 65%);
}
.cta-inner {
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:space-between; gap:32px;
}
.cta-title { font-size:clamp(1.6rem,2.5vw,2.2rem); font-weight:700; color:var(--white); }
.cta-sub { font-size:.9rem; color:rgba(255,255,255,.65); margin-top:8px; }
.cta-btns { display:flex; gap:14px; flex-shrink:0; }


/* ══════════════════════════════════════
   PAGE HERO (sub pages)
══════════════════════════════════════ */
.page-hero {
  background:linear-gradient(135deg, var(--navy) 0%, #1565C0 100%);
  padding:80px 0 60px; position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 70% at 80% 50%, rgba(255,109,0,.1) 0%, transparent 60%);
}
.page-hero-content { position:relative; z-index:1; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-family:var(--font-h); font-size:.76rem; color:rgba(255,255,255,.5); margin-bottom:16px; }
.breadcrumb a { color:rgba(255,255,255,.7); }
.breadcrumb a:hover { color:var(--orange-lt); }
.page-hero-title { font-size:clamp(2rem,4.5vw,3.2rem); font-weight:800; color:var(--white); margin-bottom:12px; }
.page-hero-title span { color:var(--orange-lt); }
.page-hero-desc { font-size:.95rem; color:rgba(255,255,255,.65); max-width:520px; line-height:1.75; }


/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card { background:var(--white); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--smoke); text-align:center; transition:.3s; }
.team-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.team-img { height:180px; overflow:hidden; }
.team-img img { width:100%; height:100%; object-fit:cover; transition:.4s; }
.team-card:hover .team-img img { transform:scale(1.06); }
.team-img-placeholder { height:180px; display:flex; align-items:center; justify-content:center; font-size:3.5rem; background:linear-gradient(135deg,#E3F2FD,#BBDEFB); }
.team-body { padding:20px 16px; }
.team-name { font-weight:700; font-size:.95rem; color:var(--navy); }
.team-role { font-size:.78rem; color:var(--blue); font-weight:500; margin:4px 0 8px; }
.team-desc { font-size:.78rem; color:var(--grey); line-height:1.6; }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background:linear-gradient(135deg, #0D1B2A 60%, #162840 100%);
  color:rgba(255,255,255,.65); padding:72px 0 0;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:40px; padding-bottom:48px; }
.footer-logo-wrap .nav-logo-text { color:var(--white); }
.footer-logo-wrap .nav-logo-text span { color:var(--blue-lt); }
.footer-logo-wrap .nav-logo-sub { color:rgba(255,255,255,.3); }
.footer-desc { font-size:.84rem; color:rgba(255,255,255,.5); line-height:1.8; margin-top:14px; max-width:280px; }
.footer-title { font-family:var(--font-h); font-size:.76rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--orange-lt); margin-bottom:18px; }
.footer-links li { margin-bottom:10px; }
.footer-links a { font-size:.84rem; color:rgba(255,255,255,.5); transition:color .2s; }
.footer-links a:hover { color:var(--orange-lt); }
.footer-contact-row { display:flex; gap:10px; align-items:flex-start; font-size:.84rem; color:rgba(255,255,255,.5); margin-bottom:12px; }
.footer-contact-row i { color:var(--orange-lt); margin-top:3px; flex-shrink:0; }
.footer-contact-row a { color:rgba(255,255,255,.5); }
.footer-contact-row a:hover { color:var(--orange-lt); }
.footer-socials { display:flex; gap:10px; margin-top:20px; }
.footer-soc {
  width:36px; height:36px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; transition:.2s; text-decoration:none;
}
.s-fb { background:rgba(24,120,242,.15); color:#1878F2; }
.s-ig { background:rgba(225,48,108,.15); color:#E1306C; }
.s-wa { background:rgba(37,211,102,.15); color:#25D366; }
.s-yt { background:rgba(255,0,0,.15); color:#FF0000; }
.footer-soc:hover { transform:translateY(-2px); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding:20px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:.78rem; color:rgba(255,255,255,.3);
}

/* Toast */
#toast {
  position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--navy); color:var(--white); padding:13px 28px;
  border-radius:99px; font-family:var(--font-h); font-size:.86rem; font-weight:500;
  box-shadow:0 8px 32px rgba(13,43,78,.4); opacity:0; pointer-events:none;
  transition:opacity .3s, transform .3s; z-index:5000; white-space:nowrap;
}
#toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* Scroll-up button */
.scroll-up {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:42px; height:42px; border-radius:50%;
  background:var(--blue); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; box-shadow:0 4px 18px rgba(21,101,192,.4);
  opacity:0; pointer-events:none; transition:.3s; text-decoration:none;
}
.scroll-up.show { opacity:1; pointer-events:all; }
.scroll-up:hover { background:var(--navy); }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid     { grid-template-columns:repeat(2,1fr); }
  .footer-grid   { grid-template-columns:1fr 1fr; gap:32px; }
  .stats-grid    { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right:none; }
  .about-grid    { gap:48px; }
  .pkg-grid      { grid-template-columns:repeat(2,1fr); }
  .features-bar-inner { grid-template-columns:repeat(2,1fr); }
  .feat-item:nth-child(2) { border-right:none; }
}
@media (max-width:768px) {
  #topbar       { display:none; }
  .hamburger    { display:flex; }
  .nav-links {
    display:none; position:fixed; top:72px; left:0; right:0;
    background:var(--white); flex-direction:column; gap:2px;
    padding:12px 16px 24px; border-bottom:1px solid var(--smoke);
    box-shadow:0 12px 40px rgba(13,43,78,.15); z-index:998;
    max-height:calc(100vh - 72px); overflow-y:auto;
  }
  .nav-links.open { display:flex; }
  .nav-links li { width:100%; }
  .nav-links li a { width:100%; padding:13px 14px; font-size:.92rem; }
  .nav-cta { text-align:center; margin-top:8px; }
  .hero-slider  { height:100vh; }
  .slide-title  { font-size:clamp(2rem,8vw,3rem); }
  .slide-desc   { font-size:.9rem; }
  .slide-btns   { flex-direction:column; gap:10px; }
  .features-bar-inner { grid-template-columns:1fr 1fr; }
  .feat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
  .about-grid   { grid-template-columns:1fr; gap:40px; }
  .about-badge  { bottom:-10px; right:10px; }
  .services-grid { grid-template-columns:1fr; }
  .gallery-masonry { grid-template-columns:1fr 1fr; }
  .gallery-item:nth-child(7n+1) { grid-column:span 2; }
  .testi-grid   { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .team-grid    { grid-template-columns:repeat(2,1fr); }
  .pkg-grid     { grid-template-columns:1fr; }
  .stats-grid   { grid-template-columns:repeat(2,1fr); }
  .cta-inner    { flex-direction:column; }
  .cta-btns     { flex-direction:column; width:100%; }
  .footer-grid  { grid-template-columns:1fr; gap:24px; }
  .footer-desc  { max-width:100%; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .form-row     { grid-template-columns:1fr; }
  .lb-prev { left:-6px; }
  .lb-next { right:-6px; }
  .scroll-hint  { display:none; }
  .section      { padding:64px 0; }
}
@media (max-width:480px) {
  .container    { padding:0 16px; }
  .gallery-masonry { grid-template-columns:1fr; }
  .gallery-item:nth-child(7n+1) { grid-column:span 1; }
  .gallery-img-wrap img { height:200px; }
  .team-grid    { grid-template-columns:1fr; }
  .stats-grid   { grid-template-columns:1fr; }
  .stat-item:nth-child(2) { border-right:none; }
  .features-bar-inner { grid-template-columns:1fr; }
  .feat-item    { border-bottom:1px solid rgba(255,255,255,.08); border-right:none; }
}
