/* ═══════════════════════════════════════
   MAHAKAL TOUR & TRAVELS — style.css
   ═══════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --blue:         #1A73E8;
  --blue-dark:    #1558B0;
  --sky:          #E8F3FF;
  --orange:       #FF6B35;
  --orange-light: #FFF0EB;
  --green:        #00A86B;
  --white:        #FFFFFF;
  --gray-bg:      #F7F9FC;
  --text:         #1A1A2E;
  --muted:        #6B7280;
  --border:       #E5EAF0;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 12px rgba(26,115,232,0.07);
}
.logo {
  font-size: 1.25rem; font-weight: 900; text-decoration: none;
  color: var(--text); display: flex; align-items: center; gap: 0.4rem;
}
.logo-dot { color: var(--orange); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 700; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-btn {
  background: var(--orange); color: #fff;
  padding: 0.55rem 1.3rem; border-radius: 50px;
  font-weight: 800; font-size: 0.88rem; text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 3px 12px rgba(255,107,53,0.35);
  transition: background 0.2s, transform 0.15s;
}
.nav-btn:hover { background: #e5521a; transform: translateY(-1px); }
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; border: none; background: none;
}
.ham span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* Mobile menu */
.mob-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 998;
  background: var(--white); border-bottom: 2px solid var(--border);
  padding: 1.5rem 5%; flex-direction: column; gap: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 1rem; font-weight: 700; color: var(--text);
  text-decoration: none; padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.mob-menu a:last-child { border: none; }

/* ─── HERO ─── */
#hero {
  background: linear-gradient(135deg, #EBF4FF 0%, #FFFAF7 50%, #FFF5F0 100%);
  padding: 5rem 5% 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  min-height: 88vh;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--sky); color: var(--blue);
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.2rem;
  border: 1.5px solid rgba(26,115,232,0.2);
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600; line-height: 1.2; margin-bottom: 1rem; color: var(--text);
}
.hero-title .accent { color: var(--orange); font-style: italic; }
.hero-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.75;
  max-width: 440px; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-blue {
  background: var(--blue); color: #fff;
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 4px 16px rgba(26,115,232,0.3);
  transition: background 0.2s, transform 0.15s;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--border); color: var(--text);
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--blue); background: var(--sky); }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-n { font-size: 1.7rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-l { font-size: 0.75rem; color: var(--muted); font-weight: 600; margin-top: 2px; }

.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-card {
  border-radius: 16px; padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.hc-blue   { background: var(--blue); color: #fff; }
.hc-orange {
  background: var(--orange); color: #fff; grid-column: span 2;
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; padding: 1.5rem 2rem;
}
.hc-white  { background: #fff; border: 2px solid var(--border); color: var(--text); }
.hc-green  { background: var(--green); color: #fff; }
.hc-icon   { font-size: 2rem; }
.hc-label  { font-size: 0.78rem; font-weight: 700; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }
.hc-value  { font-size: 1.4rem; font-weight: 900; }
.hc-sub    { font-size: 0.8rem; opacity: 0.75; }

/* ─── SECTION UTILITIES ─── */
.section     { padding: 5rem 5%; }
.section-alt { background: var(--gray-bg); }
.s-label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem;
}
.s-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600; color: var(--text); line-height: 1.25; margin-bottom: 0.8rem;
}
.s-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 500px; margin-bottom: 2.5rem; }

/* ─── DESTINATIONS ─── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.dest-card {
  border-radius: 18px; overflow: hidden;
  position: relative; height: 230px; cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: transform 0.35s, box-shadow 0.35s;
}
.dest-card:hover { transform: translateY(-7px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.dest-card.big { height: 474px; grid-row: span 2; }

.dest-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-img { transform: scale(1.07); }

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%);
}
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.3rem 1.5rem; }
.dest-name { font-size: 1.25rem; font-weight: 900; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.dest-badge {
  display: inline-block; margin-top: 0.35rem;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.65rem; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.35);
}

/* ─── SERVICES ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.svc-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: 16px; padding: 2rem 1.6rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  border-color: var(--blue); transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,115,232,0.1);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.1rem;
}
.ic-blue   { background: var(--sky); }
.ic-orange { background: var(--orange-light); }
.ic-green  { background: #E6FBF4; }
.svc-name  { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.svc-desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── WHY US ─── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border: 2px solid var(--border);
  border-radius: 14px; padding: 1.4rem;
  transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--green); }
.why-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: #E6FBF4; color: var(--green);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-t { font-weight: 800; font-size: 0.92rem; color: var(--text); margin-bottom: 0.25rem; }
.why-d { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.2rem;
}
.rv-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: 16px; padding: 1.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rv-card:hover { border-color: var(--orange); box-shadow: 0 6px 24px rgba(255,107,53,0.1); }
.rv-stars  { color: #FFBB00; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.rv-text   { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.rv-name   { font-weight: 800; font-size: 0.88rem; color: var(--text); }
.rv-trip   { font-size: 0.75rem; color: var(--blue); font-weight: 700; margin-top: 0.2rem; }

/* ─── FLEET ─── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}
.fleet-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.fleet-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.fleet-emoji { font-size: 2.8rem; margin-bottom: 0.7rem; display: block; }
.fleet-name  { font-weight: 800; font-size: 1rem; color: var(--text); }
.fleet-type  { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; font-weight: 600; }
.fleet-pill  {
  display: inline-block; margin-top: 0.7rem;
  background: var(--sky); color: var(--blue);
  font-size: 0.72rem; font-weight: 800; padding: 0.2rem 0.7rem; border-radius: 20px;
}

/* ─── FAQ ─── */
.faq-item {
  background: #fff; border: 2px solid var(--border);
  border-radius: 14px; margin-bottom: 0.8rem; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-q {
  padding: 1.2rem 1.5rem; font-weight: 800; font-size: 0.97rem;
  color: var(--text); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--blue); font-weight: 400; }
details[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 1.5rem 1.2rem; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.faq-a a { color: var(--blue); font-weight: 700; }

/* ─── CONTACT ─── */
#contact {
  background: linear-gradient(135deg, #1A73E8 0%, #1149B8 100%);
  padding: 5rem 5%; text-align: center; color: #fff;
}
.contact-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 0.8rem;
}
.contact-sub { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 3rem; line-height: 1.7; }
.contact-cards {
  display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.cc {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 16px; padding: 1.5rem 2rem;
  color: #fff; text-decoration: none; min-width: 200px;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  transition: background 0.2s, transform 0.2s;
}
.cc:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.cc-icon  { font-size: 2rem; }
.cc-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.cc-val   { font-weight: 800; font-size: 1rem; }
.btn-white {
  background: #fff; color: var(--blue);
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-weight: 800; font-size: 1rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ─── FOOTER ─── */
footer {
  background: var(--text); color: rgba(255,255,255,0.5);
  padding: 1.8rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.8rem;
}
.f-logo { font-weight: 900; color: #fff; font-size: 1rem; }
.f-logo span { color: var(--orange); }
footer p { font-size: 0.8rem; }

/* ─── WHATSAPP FLOAT ─── */
.wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s;
  animation: wapulse 2.5s ease infinite;
}
.wa:hover { transform: scale(1.12); animation: none; }

/* ─── ANIMATIONS ─── */
@keyframes wapulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade { opacity:0; transform:translateY(22px); transition: opacity 0.55s, transform 0.55s; }
.fade.in { opacity:1; transform:none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding: 3rem 5%; min-height: auto; }
  .hero-visual { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.big { grid-row: span 1; height: 230px; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links, .nav-btn { display: none; }
  .ham { display: flex; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.big { height: 240px; }
  .hero-stats { gap: 1.2rem; }
}
