*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #1e293b; background: #fff; }
a { text-decoration: none; color: inherit; }

:root {
  --yellow: #f59e0b;
  --yellow-dark: #d97706;
  --blue: #0a1f44;
  --blue-mid: #1d4ed8;
  --blue-light: #eff6ff;
  --green: #16a34a;
  --border: #e2e8f0;
  --muted: #64748b;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(10,31,68,0.12);
}

/* ── Topbar ── */
.topbar {
  background: var(--blue); color: #94a3b8;
  font-size: .82rem; padding: 7px 5%;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: #f59e0b; }
.topbar-right { display: flex; gap: 20px; }

/* ── Navbar ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 66px;
  box-shadow: 0 2px 12px rgba(10,31,68,0.07);
}
nav .logo img { height: 50px; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav ul a { color: var(--blue); font-size: .95rem; font-weight: 600; transition: color .2s; }
nav ul a:hover { color: var(--blue-mid); }
.nav-cta {
  background: var(--yellow); color: var(--blue) !important;
  padding: 9px 22px; border-radius: 8px; font-weight: 800 !important;
  box-shadow: 0 2px 10px rgba(245,158,11,.3);
}
.nav-cta:hover { background: var(--yellow-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--blue); border-radius: 2px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #0a1f44 0%, #1e3a8a 55%, #1d4ed8 100%);
  padding: 70px 5% 80px; color: #fff; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(245,158,11,.08); pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.hero-text h1 .brand { display: block; font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; }
.hero-text p { font-size: 1.1rem; opacity: .88; line-height: 1.7; margin-bottom: 28px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: .82rem; font-weight: 600; }

/* ── Booking Card ── */
.booking-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(10,31,68,0.3); color: var(--blue);
}
.booking-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; color: var(--blue); text-align: center; }
.booking-card h3 span { color: var(--yellow); }
.bform-group { margin-bottom: 14px; }
.bform-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.bform-group input, .bform-group select {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: 8px;
  font-size: .96rem; font-family: inherit; color: var(--blue);
  transition: border .2s;
}
.bform-group input:focus, .bform-group select:focus { outline: none; border-color: var(--blue-mid); }
.bform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-book {
  width: 100%; padding: 15px; margin-top: 8px;
  background: var(--yellow); color: var(--blue);
  border: none; border-radius: 10px; font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: .2s; letter-spacing: .3px;
  box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.btn-book:hover { background: var(--yellow-dark); transform: translateY(-2px); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--blue); color: #fff;
  padding: 28px 5%; display: flex; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .num { font-size: 2rem; font-weight: 900; color: var(--yellow); display: block; }
.stat-item .lbl { font-size: .85rem; opacity: .75; margin-top: 2px; }

/* ── Section Base ── */
section { padding: 70px 5%; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--blue); font-weight: 800; margin-bottom: 10px; }
.section-title p { color: var(--muted); font-size: 1.05rem; }
.section-title .bar { width: 50px; height: 4px; background: var(--yellow); border-radius: 2px; margin: 12px auto 0; }

/* ── Services ── */
.services { background: #f8faff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow); transition: .25s;
  border-top: 4px solid transparent;
}
.service-card:hover { transform: translateY(-6px); border-top-color: var(--yellow); box-shadow: 0 16px 48px rgba(10,31,68,0.16); }
.sc-icon { font-size: 3rem; margin-bottom: 16px; }
.service-card h3 { color: var(--blue); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.service-card ul { text-align: left; padding-left: 18px; color: var(--muted); font-size: .9rem; line-height: 2; margin-top: 10px; }

/* ── Fleet ── */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.fleet-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: .2s; cursor: pointer;
}
.fleet-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.fleet-thumb {
  height: 120px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.fleet-thumb.economy  { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.fleet-thumb.suv      { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.fleet-thumb.innova   { background: linear-gradient(135deg, #fefce8, #fef9c3); }
.fleet-thumb.tempo    { background: linear-gradient(135deg, #fdf4ff, #f3e8ff); }
.fleet-info { padding: 16px; }
.fleet-info h3 { color: var(--blue); font-weight: 800; margin-bottom: 4px; }
.fleet-info p  { color: var(--muted); font-size: .85rem; }
.fleet-info .seats { display: inline-block; margin-top: 8px; background: var(--blue-light); color: var(--blue-mid); padding: 3px 10px; border-radius: 20px; font-size: .8rem; font-weight: 700; }

/* ── Tours ── */
.tours { background: #f8faff; }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.tour-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 16px; text-align: center;
  box-shadow: var(--shadow); transition: .2s;
  position: relative; overflow: hidden;
}
.tour-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--yellow); transform: scaleX(0); transition: .3s; }
.tour-card:hover::before { transform: scaleX(1); }
.tour-card:hover { transform: translateY(-5px); }
a.tour-card { display: block; color: inherit; cursor: pointer; }
.tour-icon { font-size: 2.8rem; margin-bottom: 12px; }
.tour-card h3 { color: var(--blue); font-size: .98rem; font-weight: 800; margin-bottom: 6px; }
.tour-card p  { color: var(--muted); font-size: .82rem; }

/* ── Why ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.why-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.why-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--yellow); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.why-text h3 { font-size: .98rem; color: var(--blue); font-weight: 800; margin-bottom: 4px; }
.why-text p  { font-size: .84rem; color: var(--muted); line-height: 1.5; }

/* ── Testimonials ── */
.testimonials { background: var(--blue); color: #fff; }
.testimonials .section-title h2 { color: #fff; }
.testimonials .section-title p   { color: #94a3b8; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.test-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; }
.test-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.test-card p { color: #cbd5e1; line-height: 1.7; font-size: .92rem; margin-bottom: 16px; }
.test-author { font-weight: 700; color: #fff; font-size: .9rem; }
.test-author span { display: block; color: #64748b; font-weight: 400; font-size: .82rem; }

/* ── About ── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-text h2 { font-size: 2rem; color: var(--blue); font-weight: 800; margin-bottom: 16px; }
.about-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-text .highlight { background: var(--blue-light); border-left: 4px solid var(--yellow); padding: 14px 18px; border-radius: 0 8px 8px 0; color: var(--blue); font-weight: 600; margin: 20px 0; }
.about-visual { background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%); border-radius: 20px; padding: 48px 32px; color: #fff; text-align: center; }
.about-visual .av-icon { font-size: 5rem; margin-bottom: 20px; }
.about-visual h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.about-visual p   { opacity: .8; line-height: 1.7; margin-bottom: 6px; }
.av-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.av-contact a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 8px; font-weight: 700; font-size: .95rem;
}
.av-contact .call-btn  { background: var(--yellow); color: var(--blue); }
.av-contact .wa-btn    { background: #25d366; color: #fff; }

/* ── Contact ── */
.contact-section { background: #f8faff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-size: 1.4rem; color: var(--blue); font-weight: 800; margin-bottom: 24px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.ci-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ci-detail strong { display: block; color: var(--blue); font-size: .95rem; margin-bottom: 2px; }
.ci-detail span    { color: var(--muted); font-size: .9rem; }
.wa-big {
  display: flex; align-items: center; gap: 12px;
  background: #25d366; color: #fff; padding: 14px 24px;
  border-radius: 10px; font-weight: 800; font-size: 1rem;
  margin-top: 12px; transition: .2s; width: fit-content;
}
.wa-big:hover { background: #1ebe5d; transform: translateY(-2px); }
.cform { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.cform h3 { font-size: 1.2rem; color: var(--blue); font-weight: 800; margin-bottom: 22px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: .83rem; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--border); border-radius: 8px;
  font-size: .95rem; font-family: inherit; transition: border .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--blue-mid); }
.fg textarea { resize: vertical; min-height: 88px; }
.btn-send { width: 100%; padding: 13px; background: var(--blue); color: #fff; border: none; border-radius: 8px; font-size: 1rem; font-weight: 800; cursor: pointer; transition: .2s; }
.btn-send:hover { background: var(--blue-mid); }
#form-msg { margin-top: 10px; text-align: center; font-size: .9rem; display: none; }
#form-msg.success { color: var(--green); display: block; }
#form-msg.error   { color: #dc2626; display: block; }

/* ── Footer ── */
footer { background: var(--blue); color: #fff; padding: 56px 5% 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { color: #64748b; font-size: .9rem; line-height: 1.7; }
footer h4 { color: var(--yellow); font-size: .95rem; font-weight: 800; margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: #94a3b8; font-size: .9rem; transition: color .2s; }
footer ul a:hover { color: var(--yellow); }
footer address { font-style: normal; color: #94a3b8; font-size: .9rem; line-height: 2; }
footer address a { color: #94a3b8; }
footer address a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; text-align: center; color: #475569; font-size: .82rem; max-width: 1100px; margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-bar { gap: 32px; }
}
@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: #fff; padding: 20px 5%; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .topbar-right { display: none; }
  .bform-row { grid-template-columns: 1fr; }
}
