/* SK Car Hire — Signature Automotive: shared custom styles (used with Tailwind CDN) */

body { font-family: 'Manrope', sans-serif; background-color: #f9f9ff; color: #151c27; }

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal; font-size: 24px; line-height: 1;
  letter-spacing: normal; text-transform: none; display: inline-block;
  white-space: nowrap; word-wrap: normal; direction: ltr;
  font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased;
}

/* Elevation (per DESIGN.md: subtle, charcoal-tinted) */
.shadow-ambient { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); }
.shadow-modal { box-shadow: 0 10px 25px rgba(0, 1, 1, 0.08); }

/* Premium radio/checkbox cards (booking flow) */
.premium-radio:checked + label { border-color: #000101; background-color: #f9f9ff; }
.premium-radio:checked + label .check-icon { opacity: 1; }

/* Desktop services dropdown — flat, hairline, professional */
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  min-width: 250px; background: #ffffff; border: 1px solid #c5c6ca; border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 1, 1, 0.08); padding: 4px 0; z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity 0.15s ease, visibility 0.15s;
}
.nav-drop.open .nav-drop-menu,
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; }
.nav-drop-menu a {
  display: block; padding: 11px 20px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: #44474a; transition: background 0.12s, color 0.12s;
}
.nav-drop-menu a + a { border-top: 1px solid #eff1f5; }
.nav-drop-menu a:hover { background: #f7f8fc; color: #000101; }
.nav-drop-menu a[aria-current="page"] { color: #000101; font-weight: 600; box-shadow: inset 2px 0 0 #C5A059; background: #fbfaf7; }

/* Mobile menu — right-side drawer */
@media (max-width: 767px) {
  #mobile-menu {
    display: block;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw); z-index: 70;
    background: #ffffff; border-left: 1px solid #c5c6ca; border-top: 0;
    box-shadow: -10px 0 25px rgba(0, 1, 1, 0.12);
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.28s cubic-bezier(0.22, 0.8, 0.3, 1), visibility 0.28s;
    overflow-y: auto; overscroll-behavior: contain;
    padding-bottom: 24px;
  }
  #mobile-menu.open { transform: translateX(0); visibility: visible; }
}
@media (min-width: 768px) { #mobile-menu { display: none !important; } }

.menu-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-bottom: 1px solid #c5c6ca;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px; color: #000101;
}
.menu-close {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid #c5c6ca; border-radius: 4px; background: #fff; color: #000101;
}
.menu-backdrop {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(21, 28, 39, 0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
}
.menu-backdrop.open { opacity: 1; visibility: visible; }

/* Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background-color: #c5c6ca; border-radius: 4px; }

/* Focus visibility */
:focus-visible { outline: 2px solid #001d35; outline-offset: 2px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: #000101; color: #fff; font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 600; padding: 10px 18px; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }
