/* ============================================================
   Gantabya Petrol Pump — landing page styles
   Converted from the Claude Design export (Petrol Blue / Amber).
   ============================================================ */

:root {
  --base: #07293A;   /* deep petrol blue           */
  --mid: #11546B;    /* hero gradient mid stop     */
  --accent: #F6A623; /* amber                      */
  --accent-text: #07293A;
  --ink: #0B2230;
  --paper: #FBF8F2;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* Visible focus ring for keyboard users */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Skip link — hidden until focused, then revealed top-left. */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Keyframes ---------- */
@keyframes gp-rise   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gp-float  { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-16px) rotate(var(--r,0deg)); } }
@keyframes gp-float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes gp-drip   { 0% { transform: translateY(-8px) scale(0.6); opacity: 0; } 18% { opacity: 0.9; } 70% { opacity: 0.9; } 100% { transform: translateY(46px) scale(1); opacity: 0; } }
@keyframes gp-dash   { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -56px; } }
@keyframes gp-needle { 0%,100% { transform: rotate(-38deg); } 50% { transform: rotate(42deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 38, 52, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container { padding: 10px 16px; }

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.brand-badge {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent);
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.header-actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Prices dropdown */
.prices { position: relative; }
.prices-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 9px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.prices-toggle:hover { background: rgba(255, 255, 255, 0.18); }
.prices-toggle .rs {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  line-height: 1;
}
.prices-toggle .caret { transition: transform 0.2s; }
.prices-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

.prices-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 70;
  min-width: 230px;
  background: #0E3A4F;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.6);
  padding: 8px;
  overflow: hidden;
}
.prices-menu[hidden] { display: none; }
.prices-menu .menu-label {
  margin: 4px 8px 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}
.price-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 10px;
  border-radius: 9px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}
.price-link:hover { background: rgba(255, 255, 255, 0.08); }
.price-icon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  flex: none;
}
.price-icon.diesel { background: rgba(127, 209, 193, 0.16); }
.price-icon.petrol { background: rgba(246, 166, 35, 0.18); }
.price-text { display: flex; flex-direction: column; }
.price-text .t { font-weight: 700; font-size: 14px; }
.price-text .u { font-size: 12px; color: rgba(255, 255, 255, 0.55); }
.price-link .ext { margin-left: auto; }

/* Call pill button (header) */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 9px;
  text-decoration: none;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 14px;
  font-weight: 700;
  transition: filter 0.2s;
}
.btn-call:hover { filter: brightness(1.06); }

/* Nav */
.site-nav {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  padding: 7px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  scroll-margin-top: 104px;
  background: linear-gradient(165deg, var(--base) 0%, var(--mid) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 30px);
  pointer-events: none;
}
.hero-mountains {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 58%;
  opacity: 0.9;
}
.hero-vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.v-pump   { position: absolute; right: 7%;  top: 16%;    width: clamp(120px, 16vw, 210px); height: auto; animation: gp-float 7s ease-in-out infinite; }
.v-gauge  { position: absolute; right: 30%; top: 30%;    width: clamp(86px, 11vw, 150px); height: auto; animation: gp-float2 9s ease-in-out infinite; }
.v-needle { transform-box: fill-box; transform-origin: 50% 100%; animation: gp-needle 5.5s ease-in-out infinite; }
.v-drop-a { position: absolute; right: 18%; top: 22%;    width: 26px; height: 26px; --r: -8deg; animation: gp-float 5s ease-in-out infinite; }
.v-drop-b { position: absolute; right: 42%; top: 52%;    width: 20px; height: 20px; --r: 10deg; animation: gp-float 6.4s ease-in-out 0.6s infinite; }
.v-drop-c { position: absolute; right: 12%; bottom: 30%; width: 16px; height: 16px; --r: 6deg;  animation: gp-float 7.2s ease-in-out 1.1s infinite; }
.v-drip-a { position: absolute; right: 25%; top: 18%;    width: 13px; height: 13px; animation: gp-drip 3.4s ease-in 0.4s infinite; }
.v-drip-b { position: absolute; right: 51%; top: 40%;    width: 11px; height: 11px; animation: gp-drip 4s ease-in 1.6s infinite; }
.v-road   { position: absolute; left: 0; right: 0; bottom: 8%; width: 100%; height: 16px; opacity: 0.5; }
.v-road line { animation: gp-dash 1.6s linear infinite; }

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 11vw, 110px) 22px clamp(64px, 12vw, 120px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: gp-rise 0.5s ease both;
}
.hero-nepali {
  margin-top: 22px;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 3.4vw, 22px);
  color: var(--accent);
  animation: gp-rise 0.5s ease 0.05s both;
}
.hero h1 {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 9vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
  animation: gp-rise 0.6s ease 0.08s both;
}
.hero-lead {
  margin: 20px 0 0;
  font-size: clamp(17px, 2.6vw, 22px);
  color: rgba(255, 255, 255, 0.84);
  max-width: 560px;
  font-weight: 500;
  animation: gp-rise 0.6s ease 0.16s both;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: gp-rise 0.6s ease 0.24s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, filter 0.2s, background 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }

/* ============================================================
   Section shared
   ============================================================ */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) 22px;
  scroll-margin-top: 100px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.eyebrow .bar { height: 2px; width: 28px; background: var(--accent); }
.eyebrow span:last-child {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow.on-light span:last-child { color: #B5651D; }
.eyebrow.on-dark span:last-child { color: var(--accent); }

.section-title {
  margin: 0 0 28px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -0.02em;
  color: var(--base);
}
.section-intro {
  margin: -16px 0 28px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: #5A6B73;
}

/* ============================================================
   Products
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 18px;
}
.product-card.dark {
  background: linear-gradient(160deg, #0E3A4F, #07293A);
  color: #fff;
  box-shadow: 0 18px 40px -22px rgba(7, 41, 52, 0.6);
}
.product-card.light {
  background: #fff;
  border: 1px solid #ECE3D2;
  box-shadow: 0 18px 40px -26px rgba(7, 41, 52, 0.35);
}
.product-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  margin-bottom: 20px;
}
.product-card.dark .product-icon { background: rgba(255, 255, 255, 0.1); }
.product-card.light .product-icon { background: #FFF3DC; }
.product-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 26px;
}
.product-card.light h3 { color: var(--base); }
.product-card p { margin: 8px 0 0; font-size: 15px; line-height: 1.55; }
.product-card.dark p { color: rgba(255, 255, 255, 0.72); }
.product-card.light p { color: #5A6B73; }
.product-num {
  position: absolute;
  top: 24px; right: 26px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.product-card.dark .product-num { color: rgba(255, 255, 255, 0.45); }
.product-card.light .product-num { color: #D8CBB3; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: var(--base);
  color: #fff;
  scroll-margin-top: 100px;
}
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}
.contact .section-title { color: #fff; margin-bottom: 22px; }
.contact-main {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}
.contact-main:hover { opacity: 0.9; }
.contact-main .icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent);
  flex: none;
}
.contact-main .label { font-size: 13px; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.05em; }
.contact-main .number {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: -0.01em;
}
.contact-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
}
.people-label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.people-list { display: flex; flex-direction: column; gap: 10px; }
.person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.person:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--accent); }
.person-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.person-initials {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex: none;
}
.person-meta { display: flex; flex-direction: column; min-width: 0; }
.person-name {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.person-phone { font-size: 13px; color: rgba(255, 255, 255, 0.62); }
.person-call {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent);
  flex: none;
}

/* ============================================================
   Branches
   ============================================================ */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.branch-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #ECE3D2;
  box-shadow: 0 18px 40px -28px rgba(7, 41, 52, 0.35);
}
.branch-head { display: flex; align-items: center; gap: 14px; }
.branch-badge {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--base);
  flex: none;
}
.branch-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--base);
  line-height: 1.15;
}
.branch-card { scroll-margin-top: 100px; }
.branch-h-alt {
  display: block;
  margin-top: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #B5651D;
}
.branch-addr {
  margin: 6px 0 0;
  font-size: 14px;
  color: #5A6B73;
  display: flex;
  align-items: center;
  gap: 6px;
}
.branch-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.branch-btn {
  flex: 1;
  min-width: 130px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: filter 0.2s, background 0.2s;
}
.branch-btn.map { background: var(--accent); color: var(--accent-text); }
.branch-btn.map:hover { filter: brightness(1.05); }
.branch-btn.tel { background: #F4EDE0; color: var(--base); }
.branch-btn.tel:hover { background: #ECE3D2; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: linear-gradient(165deg, var(--base) 0%, var(--mid) 100%);
  color: #fff;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 72px) 22px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .badge {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent);
  flex: none;
}
.footer-brand .name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 18px; }
.footer-tagline { margin: 16px 0 0; color: rgba(255, 255, 255, 0.72); font-size: 15px; line-height: 1.6; }
.footer-col h2 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-col p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 15px; line-height: 1.6; }
.footer-phone {
  color: #fff;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 20px;
  transition: opacity 0.2s;
}
.footer-phone:hover { opacity: 0.85; }
.footer-dirs { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.footer-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-dir-btn:hover { background: rgba(255, 255, 255, 0.18); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { font-size: 13px; color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   Sticky mobile action bar
   ============================================================ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(7, 38, 52, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.mobile-bar-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.mobile-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: filter 0.2s, background 0.2s;
}
.mobile-btn.call { background: var(--accent); color: var(--accent-text); }
.mobile-btn.call:hover { filter: brightness(1.05); }
.mobile-btn.dirs {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}
.mobile-btn.dirs:hover { background: rgba(255, 255, 255, 0.18); }

.mobile-spacer { height: 76px; }

/* The mobile action bar is only needed on small screens; on wider
   viewports the header Call button + in-page CTAs cover the same need. */
@media (min-width: 700px) {
  .mobile-bar { display: none; }
  .mobile-spacer { display: none; }
}
