/* =============================================
   SAILFISH AUTOS — style.css
   Port Motors aesthetic: dark header, orange CTA,
   clean white content sections, Inter + Roboto Condensed
   ============================================= */

:root {
  --orange: #e8610a;
  --orange-hover: #c9510a;
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --footer-bg: #1a1a1a;
  --footer-bottom: #111111;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray: #888888;
  --gray-light: #e8e8e8;
  --border: #e0e0e0;
  --text: #222222;
  --text-light: #555555;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Roboto Condensed', sans-serif;
  --radius: 4px;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.09);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-main); cursor: pointer; }

.sf-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER
   ============================================= */
.sf-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s;
}
.sf-header.scrolled {
  background: rgba(0,0,0,0.92);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.sf-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.sf-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.sf-logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.sf-nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.sf-nav a {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.sf-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s;
}
.sf-nav a:hover, .sf-nav a.active { color: var(--white); }
.sf-nav a:hover::after, .sf-nav a.active::after { width: 100%; }
.sf-header-phone {
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.sf-header-phone:hover { background: var(--orange-hover); }
.sf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 8px;
}
.sf-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* =============================================
   MOBILE MENU
   ============================================= */
.sf-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 950;
}
.sf-mobile-overlay.open { display: block; }
.sf-mobile-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100%;
  background: var(--dark);
  z-index: 960;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.sf-mobile-menu.open { right: 0; }
.sf-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sf-mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  padding: 4px;
}
.sf-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}
.sf-mobile-links a {
  padding: 14px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.sf-mobile-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.sf-mobile-phone {
  margin-top: 8px;
  color: var(--orange) !important;
  font-weight: 600;
}
.sf-mobile-phone i { margin-right: 8px; }

/* =============================================
   LEFT SIDEBAR ICONS
   ============================================= */
.sf-sidebar {
  position: fixed;
  left: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sf-sidebar-icon {
  width: 46px; height: 46px;
  background: rgba(80,80,80,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: background 0.2s;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2px;
}
.sf-sidebar-icon:hover { background: var(--orange); }

/* =============================================
   HERO (HOME)
   ============================================= */
.sf-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sf-hero-video-wrap {
  position: absolute;
  inset: 0;
}
.sf-hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sf-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.sf-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
}
.sf-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.sf-hero-desc {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 0 auto 36px;
}
.sf-btn-inventory {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.sf-btn-inventory:hover {
  background: var(--white);
  color: var(--black);
}
.sf-hero-more {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  cursor: pointer;
  color: var(--white);
}
.sf-hero-more-text {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 8px;
}
.sf-hero-more-icon {
  font-size: 18px;
  animation: bounce 1.8s infinite;
  opacity: 0.8;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =============================================
   POPULAR VEHICLES (HOME)
   ============================================= */
.sf-popular {
  padding: 80px 0;
  background: var(--white);
}
.sf-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--black);
}
.sf-section-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--orange);
  margin: 12px auto 0;
}
.sf-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sf-vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.sf-vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.sf-vehicle-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}
.sf-vehicle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sf-vehicle-card:hover .sf-vehicle-img img { transform: scale(1.04); }
.sf-vehicle-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 36px;
}
.sf-vehicle-info {
  padding: 20px;
}
.sf-vehicle-year {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 2px;
}
.sf-vehicle-make {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.sf-vehicle-model {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.sf-vehicle-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 12px;
}
.sf-vehicle-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}
.sf-popular-footer {
  text-align: center;
  margin-top: 48px;
}
.sf-no-vehicles {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  color: var(--gray);
}

/* =============================================
   ABOUT HOME SECTION
   ============================================= */
.sf-about-home {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.sf-about-bg {
  position: absolute;
  inset: 0;
  background: url('/static/images/bg-about.jpg') center/cover no-repeat;
}
.sf-about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.sf-about-home .sf-container { position: relative; z-index: 2; }
.sf-about-centered {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.sf-about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}
.sf-about-logo-img {
  max-width: 180px;
  height: auto;
}
.sf-about-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.sf-about-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--white);
  margin: 0;
}
.sf-about-contact-btn {
  display: inline-block;
  padding: 16px 80px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}
.sf-about-contact-btn:hover { background: var(--white); color: var(--black); }
.sf-btn-outline {
  display: inline-block;
  padding: 14px 48px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.sf-btn-outline:hover { background: var(--white); color: var(--black); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.sf-page-hero {
  position: relative;
  padding: 150px 24px 90px;
  text-align: center;
  background: url('/static/images/bg-about.jpg') center/cover no-repeat;
  margin-top: 88px;
}
.sf-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
}
.sf-page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.sf-page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
}
.sf-page-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

/* =============================================
   INVENTORY HERO with search
   ============================================= */
.sf-inv-hero .sf-page-hero-content { max-width: 700px; margin: 0 auto; }
.sf-inv-search-form { margin-top: 8px; }
.sf-inv-search-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  padding: 14px 24px;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.sf-inv-search-wrap i { color: var(--gray); font-size: 16px; }
.sf-inv-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--text);
  background: transparent;
}
.sf-inv-search-wrap input::placeholder { color: var(--gray); }

/* =============================================
   INVENTORY GRID
   ============================================= */
.sf-inv-section {
  padding: 60px 0 80px;
  background: var(--off-white);
}
.sf-inv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.sf-load-more-row { text-align: center; }
.sf-no-results {
  text-align: center;
  padding: 80px 0;
  color: var(--gray);
}
.sf-no-results i { font-size: 48px; margin-bottom: 20px; }
.sf-no-results p { font-size: 18px; margin-bottom: 24px; }

/* =============================================
   BUTTONS
   ============================================= */
.sf-btn-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 13px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.sf-btn-orange:hover { background: var(--orange-hover); }
.sf-btn-full { width: 100%; text-align: center; }
.sf-btn-load-more { padding: 14px 48px; }

/* =============================================
   REQUEST A CALL SECTION
   ============================================= */
.sf-request-call {
  background: var(--black);
  padding: 48px 0;
}
.sf-request-call-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.sf-request-call-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sf-request-call-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}
.sf-request-call-text h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sf-request-call-text p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.sf-request-call-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.sf-btn-call-now {
  padding: 13px 28px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.sf-btn-call-now:hover { background: var(--white); color: var(--black); }
.sf-btn-request-call {
  padding: 13px 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.sf-btn-request-call:hover { background: var(--orange-hover); }

/* =============================================
   FOOTER
   ============================================= */
.sf-footer {
  background: var(--footer-bg);
}
.sf-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sf-footer-logo img {
  height: 44px;
  width: auto;
}
.sf-footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.sf-footer-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.sf-footer-nav a:hover { color: var(--white); }
.sf-footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
.sf-footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.sf-footer-bottom a:hover { color: var(--white); }
.sf-sep { margin: 0 10px; opacity: 0.4; }

/* =============================================
   MODAL (shared)
   ============================================= */
.sf-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sf-modal-overlay.open {
  display: flex;
}
.sf-modal {
  background: var(--white);
  border-radius: 8px;
  max-width: 560px;
  width: 100%;
  position: relative;
  animation: modalIn 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.sf-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.sf-modal-close:hover { color: var(--black); }
.sf-modal-body { padding: 32px; }
.sf-modal-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}

/* Inquiry modal header */
.sf-modal-header {
  background: var(--dark);
  padding: 28px 32px 24px;
  border-radius: 8px 8px 0 0;
  color: var(--white);
}
.sf-modal-car-name {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.sf-modal-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.sf-modal-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}
.sf-inquiry-modal .sf-modal-body { padding: 28px 32px 32px; }

/* Form success big */
.sf-form-success-big {
  text-align: center;
  padding: 20px 0;
}
.sf-success-check {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #4caf50;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.sf-form-success-big h3 { font-size: 22px; margin-bottom: 8px; }
.sf-form-success-big p { color: var(--gray); }

/* =============================================
   FORM ELEMENTS (shared)
   ============================================= */
.sf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.sf-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.sf-form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}
.sf-form-group input,
.sf-form-group select,
.sf-form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.sf-form-group input:focus,
.sf-form-group select:focus,
.sf-form-group textarea:focus {
  border-color: var(--orange);
}
.sf-form-group textarea { resize: vertical; }
.sf-form-success {
  color: #4caf50;
  font-weight: 600;
  font-size: 14px;
}

/* =============================================
   INNER PAGE SECTIONS
   ============================================= */
.sf-content-section {
  padding: 72px 0 80px;
  background: var(--white);
}
.sf-two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.sf-two-col-left h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}
.sf-two-col-left p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.sf-service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.sf-service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sf-service-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}
.sf-service-icon-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.sf-service-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.sf-service-text p, .sf-service-text span, .sf-service-text a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.sf-service-text a { color: var(--orange); }

.sf-form-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 32px;
}
.sf-form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}
.sf-form-success-msg {
  text-align: center;
  padding: 32px;
  color: #4caf50;
}
.sf-form-success-msg i { font-size: 48px; margin-bottom: 12px; }
.sf-form-success-msg p { font-size: 16px; font-weight: 600; }

.sf-calc-result {
  background: var(--black);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 16px;
}
.sf-calc-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}
.sf-calc-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* About page */
.sf-about-page { max-width: 860px; margin: 0 auto; }
.sf-about-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 48px;
}
.sf-about-sections { display: flex; flex-direction: column; gap: 36px; }
.sf-about-block h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--black);
}
.sf-about-block p { font-size: 14px; line-height: 1.8; color: var(--text-light); }

/* Track */
.sf-track-layout { align-items: start; }
.sf-track-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fff3f3;
  color: #c0392b;
  font-size: 14px;
  border-radius: var(--radius);
  border-left: 3px solid #c0392b;
}
.sf-track-result { margin-top: 24px; }
.sf-track-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.sf-track-row span { color: var(--gray); text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: 600; }
.sf-track-row strong { color: var(--text); font-weight: 600; }
.sf-track-status { color: var(--orange) !important; }

/* =============================================
   CAR DETAIL
   ============================================= */
.sf-breadcrumb {
  background: var(--off-white);
  padding: 14px 0;
  margin-top: 88px;
  font-size: 13px;
  color: var(--gray);
}
.sf-breadcrumb .sf-container { display: flex; gap: 8px; align-items: center; }
.sf-breadcrumb a { color: var(--text-light); }
.sf-breadcrumb a:hover { color: var(--orange); }
.sf-breadcrumb span { color: var(--gray); }

.sf-detail-wrap { padding: 32px 0 64px; }
.sf-det-title-row { margin-bottom: 28px; }
.sf-det-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}
.sf-det-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sf-det-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}
.sf-det-price.sold { color: var(--gray); }

.sf-btn-call-sm, .sf-btn-msg-sm {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sf-btn-call-sm {
  background: var(--orange);
  color: var(--white);
  border: none;
}
.sf-btn-call-sm:hover { background: var(--orange-hover); }
.sf-btn-msg-sm {
  background: var(--black);
  color: var(--white);
  border: none;
}
.sf-btn-msg-sm:hover { background: var(--dark2); }

.sf-det-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Gallery */
.sf-gallery { margin-bottom: 32px; }
.sf-gallery-main {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
  cursor: zoom-in;
  border-radius: var(--radius);
}
.sf-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sf-gallery-main:hover img { transform: scale(1.02); }
.sf-gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: var(--white);
  border: none;
  width: 44px; height: 44px;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: var(--radius);
}
.sf-gallery-arrow:hover { background: var(--orange); }
.sf-gallery-prev { left: 12px; }
.sf-gallery-next { right: 12px; }
.sf-thumb-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.sf-thumb {
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
  border-radius: 2px;
}
.sf-thumb.active, .sf-thumb:hover { opacity: 1; }
.sf-gallery-progress {
  height: 2px;
  background: var(--gray-light);
  margin-top: 8px;
  border-radius: 2px;
  overflow: hidden;
}
.sf-gallery-progress-bar {
  height: 100%;
  background: var(--orange);
  transition: width 0.3s ease;
  width: 12.5%;
}
.sf-show-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  border-radius: var(--radius);
  transition: background 0.2s;
  width: 100%;
  justify-content: center;
}
.sf-show-all-btn:hover { background: var(--orange); }
.sf-gallery-empty {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 48px;
  border-radius: var(--radius);
}

/* Description */
.sf-det-desc {
  background: var(--off-white);
  padding: 28px;
  border-radius: var(--radius);
}
.sf-det-desc h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.sf-det-desc p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Specs panel */
.sf-det-specs-panel {
  position: sticky;
  top: 106px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sf-det-cta-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sf-btn-call-full, .sf-btn-msg-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.sf-btn-call-full {
  background: var(--orange);
  color: var(--white);
}
.sf-btn-call-full:hover { background: var(--orange-hover); }
.sf-btn-msg-full {
  background: var(--dark);
  color: var(--white);
}
.sf-btn-msg-full:hover { background: var(--dark2); }

.sf-specs-box {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 24px;
}
.sf-specs-box h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sf-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sf-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sf-spec-full { grid-column: 1/-1; }
.sf-spec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.sf-spec-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.sf-vin { font-family: monospace; font-size: 12px !important; }

.sf-det-help-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.sf-det-help-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}
.sf-det-help-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.sf-det-help-text a {
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
}

/* Related */
.sf-related { padding: 48px 0 0; }
.sf-related-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--black);
}
.sf-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Lightbox */
.sf-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.sf-lightbox.open { display: flex; }
.sf-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.sf-lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.sf-lightbox-close:hover { opacity: 1; }
.sf-lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  width: 56px; height: 56px;
  font-size: 32px;
  cursor: pointer;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.sf-lightbox-nav:hover { background: var(--orange); }
.sf-lightbox-prev { left: 20px; }
.sf-lightbox-next { right: 20px; }
.sf-lightbox-counter {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  background: rgba(0,0,0,0.4);
  padding: 6px 16px;
  border-radius: 20px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .sf-vehicles-grid { grid-template-columns: repeat(3, 1fr); }
  .sf-inv-grid { grid-template-columns: repeat(3, 1fr); }
  .sf-related-grid { grid-template-columns: repeat(3, 1fr); }
  .sf-det-layout { grid-template-columns: 1fr 340px; }
  .sf-about-inner { gap: 48px; }
}

@media (max-width: 900px) {
  .sf-nav { display: none; }
  .sf-header-phone { display: none; }
  .sf-hamburger { display: flex; margin-left: auto; }
  .sf-header-inner { height: 72px; padding: 0 20px; }
  .sf-page-hero { margin-top: 72px; padding: 110px 24px 70px; }
  .sf-breadcrumb { margin-top: 72px; }
  .sf-vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-inv-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-related-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-two-col-layout { grid-template-columns: 1fr; gap: 40px; }
  .sf-about-home { padding: 60px 0; }
  .sf-about-inner { flex-direction: column; gap: 24px; text-align: center; }
  .sf-about-body { font-size: 14px; }
  .sf-det-layout { grid-template-columns: 1fr; }
  .sf-det-specs-panel { position: static; }
  .sf-request-call-inner { flex-direction: column; text-align: center; gap: 24px; }
  .sf-footer-top { flex-direction: column; text-align: center; }
  .sf-footer-nav { justify-content: center; }
  .sf-thumb-strip { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 600px) {
  .sf-vehicles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sf-inv-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sf-related-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-sidebar { display: none; }
  .sf-form-row { grid-template-columns: 1fr; }
  .sf-det-price-row { gap: 8px; }
  .sf-btn-call-sm, .sf-btn-msg-sm { padding: 8px 14px; font-size: 11px; }
  .sf-det-cta-box { flex-direction: row; }
  .sf-btn-call-full, .sf-btn-msg-full { flex: 1; }
  .sf-request-call-buttons { flex-direction: column; width: 100%; }
  .sf-btn-call-now, .sf-btn-request-call { width: 100%; text-align: center; }
  .sf-specs-grid { grid-template-columns: 1fr 1fr; }
  .sf-thumb-strip { grid-template-columns: repeat(4, 1fr); }
  .sf-hero-title { font-size: 22px; }
  .sf-hero-desc { font-size: 13px; }
  .sf-about-home { padding: 80px 0; }
  .sf-about-name { font-size: 28px; }
}
