/* ==========================================================
   SK Taxi Services — Goa
   Theme: Uber/Rapido-inspired dark + yellow, premium & modern
   ========================================================== */

:root {
  --black: #0a0a0a;
  --ink: #131313;
  --ink-2: #1c1c1c;
  --line: #2a2a2a;
  --muted: #7a7a7a;
  --white: #ffffff;
  --off: #f7f7f7;
  --sand: #fafafa;
  --yellow: #ffc72c;
  --yellow-dk: #f5b800;
  --yellow-soft: #fff4cc;
  --navy: #14356e;
  --green: #25d366;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --f-head: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --f-body: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --tracking-tight: -0.02em;
  --tracking-tighter: -0.03em;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 6px 22px rgba(255, 199, 44, 0.45);
}
.btn-primary:hover { background: var(--yellow-dk); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: var(--white); color: var(--black); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============ Topbar ============ */
.topbar {
  background: var(--black);
  color: #ddd;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #1c1c1c;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-links a { margin-left: 16px; color: var(--yellow); font-weight: 600; }
.topbar-links a:hover { color: var(--white); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
}
.brand-mark {
  width: auto;
  height: 54px;
  max-width: 90px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-footer .brand-mark {
  height: 60px;
  max-width: 100px;
}
.brand-name {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--yellow-dk);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}
.brand-name em {
  font-style: normal;
  font-weight: 800;
  color: var(--navy);
  margin-left: 4px;
}
.site-footer .brand-name { color: var(--yellow); }
.site-footer .brand-name em { color: var(--white); }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  transition: color 0.15s;
}
.nav a:hover { color: var(--black); }
.nav .btn { color: var(--black); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(255,199,44,0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(255,199,44,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 199, 44, 0.15);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--f-head);
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: var(--tracking-tighter);
}
.hl { color: var(--yellow); }
.hero .lead {
  font-size: 18px;
  color: #cfcfcf;
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-meta div {
  display: flex;
  flex-direction: column;
}
.hero-meta strong {
  font-family: var(--f-head);
  font-size: 26px;
  color: var(--yellow);
}
.hero-meta span {
  font-size: 13px;
  color: #aaa;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.hero-visual img:hover { transform: rotate(0deg) scale(1.02); }

/* ============ Section base ============ */
.section {
  padding: 90px 0;
}
.section-alt { background: var(--sand); }
.section-dark { background: var(--black); color: var(--white); }
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--yellow-dk);
  background: var(--yellow-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-dark .eyebrow {
  background: rgba(255, 199, 44, 0.15);
  color: var(--yellow);
}
.section-head h2 {
  font-family: var(--f-head);
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
}
.section-head p {
  font-size: 17px;
  color: #555;
  margin: 0;
}
.section-dark .section-head p { color: #b8b8b8; }
.section-head.light p { color: #b8b8b8; }

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.service-card.featured p { color: #c8c8c8; }
.service-card.featured .tick-list li { color: #eee; }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--yellow-soft);
  color: var(--black);
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card.featured .service-icon {
  background: var(--yellow);
}
.service-card h3 {
  font-family: var(--f-head);
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}
.service-card p { font-size: 15px; color: #555; margin: 0 0 22px; }
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.tick-list li {
  position: relative;
  padding-left: 28px;
  padding-bottom: 8px;
  font-size: 15px;
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  color: var(--yellow-dk);
  font-weight: 900;
}
.service-card.featured .tick-list li::before { color: var(--yellow); }
.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ============ Fleet ============ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.car-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f0;
}
.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.car-card:hover .car-image img { transform: scale(1.06); }
.car-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--black);
  color: var(--yellow);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.car-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.car-body h3 {
  font-family: var(--f-head);
  font-size: 20px;
  margin: 0;
  font-weight: 800;
}
.car-specs {
  display: flex;
  gap: 14px;
  color: #666;
  font-size: 13px;
  flex-wrap: wrap;
}
.car-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dashed #eee;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.price strong {
  font-family: var(--f-head);
  font-size: 22px;
  color: var(--black);
  font-weight: 800;
}
.price small {
  color: var(--muted);
  font-size: 13px;
}
.disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 36px;
}

/* ============ Explore Goa ============ */
.goa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.goa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.goa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.goa-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}
.goa-body { padding: 22px 24px 26px; }
.goa-body h3 {
  font-family: var(--f-head);
  font-size: 19px;
  margin: 0 0 8px;
  font-weight: 800;
}
.goa-body p { font-size: 14px; color: #555; margin: 0; line-height: 1.55; }

/* ============ Blog ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.blog-body h3 {
  font-family: var(--f-head);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  letter-spacing: var(--tracking-tight);
}
.blog-body p {
  font-size: 14.5px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.blog-link {
  margin-top: auto;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  padding-top: 6px;
  border-bottom: 2px solid transparent;
  align-self: flex-start;
  transition: color 0.15s, border-color 0.15s;
}
.blog-link:hover { color: var(--yellow-dk); border-color: var(--yellow-dk); }

/* ============ Why Us ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  padding: 30px 26px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, border-color 0.2s;
}
.why-item:hover { transform: translateY(-4px); border-color: var(--yellow); }
.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 199, 44, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
}
.why-item h4 {
  font-family: var(--f-head);
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}
.why-item p { color: #b0b0b0; margin: 0; font-size: 14px; }

/* ============ Contact / Booking ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.contact-copy h2 { margin-top: 12px; }
.contact-copy p { color: #555; font-size: 17px; margin-bottom: 28px; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: all 0.2s;
  background: var(--white);
}
.contact-item:hover { border-color: var(--yellow); transform: translateX(4px); }
.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--yellow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 15px;
  color: var(--black);
}
.contact-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.map-embed {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.footer-addr { line-height: 1.55; }

.booking-form {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-md);
}
.booking-form h3 {
  font-family: var(--f-head);
  font-size: 22px;
  margin: 0 0 22px;
  font-weight: 800;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.booking-form label {
  display: block;
  margin-bottom: 14px;
}
.booking-form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: #fafafa;
  transition: border-color 0.15s, background 0.15s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--yellow-dk);
  background: var(--white);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--black);
  color: #b8b8b8;
  padding: 70px 0 0;
}
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-name em { color: #888; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1e1e1e;
}
.footer-brand p {
  margin: 18px 0;
  font-size: 14px;
  max-width: 360px;
}
.footer-brand strong { color: var(--white); }
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1c1c1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
}
.socials a:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }
.site-footer h5 {
  font-family: var(--f-head);
  color: var(--white);
  font-size: 15px;
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  padding: 5px 0;
  font-size: 14px;
}
.site-footer li a { transition: color 0.15s; }
.site-footer li a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 22px 0;
  font-size: 13px;
  color: #666;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { margin: 0; }

/* ============ Floating CTAs ============ */
.fab {
  position: fixed;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 100;
  transition: transform 0.2s;
}
.fab:hover { transform: scale(1.08); }
.fab-whatsapp {
  bottom: 90px;
  background: var(--green);
}
.fab-call {
  bottom: 22px;
  background: var(--yellow);
  color: var(--black);
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero { padding: 60px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .services-grid,
  .fleet-grid,
  .goa-grid,
  .why-grid,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid #eee;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
  }
  .nav .btn { margin-top: 8px; align-self: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .services-grid,
  .fleet-grid,
  .goa-grid,
  .why-grid,
  .blog-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
  .hero-meta strong { font-size: 22px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-links a { margin: 0 8px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .booking-form { padding: 24px 20px; }
}
