/* ================================================================
   pages.css — Shared styles for vehicle.php, contact.php, about.php
   Extends style.css. Import AFTER style.css.
   Brand color: Cyan #00C8C8
================================================================ */

/* ════════════════════════════════════════════════════════════
   PAGE HERO (shared across all inner pages)
════════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    margin-top: 73px;
    /* navbar height */
    overflow: hidden;
}

.ph-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.page-hero:hover .ph-bg {
    transform: scale(1.08);
}

.ph-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 13, 13, 0.88) 0%,
            rgba(0, 100, 100, 0.70) 50%,
            rgba(13, 13, 13, 0.82) 100%);
}

.ph-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--sp-10) var(--sp-4);
}

/* Breadcrumb */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-custom li {
    display: flex;
    align-items: center;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--t);
}

.breadcrumb-custom a:hover {
    color: var(--red);
}

.breadcrumb-custom i {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumb-custom .active {
    color: var(--red);
}

.sec-body {
  font-size: 15px;
  color: #555;
}

.btn-r {
  background: #09a8a8;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-r:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.choose-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.choose-box i {
  color: #09a8a8;
  font-size: 18px;
}

.choose-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.custom-table {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.custom-table th {
  background: #111;
  color: #fff;
  font-weight: 600;
  padding: 15px;
}

.custom-table td {
  padding: 15px;
  font-size: 14px;
}

.bike-col {
  background: #eafaf1;
  font-weight: 600;
  color: #1e7e34;
}

.tip-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid #25D366;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  font-size: 15px;
}
/* ════════════════════════════════════════════════════════════
   STATS STRIP (About page)
════════════════════════════════════════════════════════════ */
.stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-6);
    padding: var(--sp-4) 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-n {
    font-family: var(--ff-d);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
}

.stat-n span {
    color: var(--red);
}

.stat-l {
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.stat-div {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .stat-div {
        display: none;
    }

    .stats-strip {
        gap: var(--sp-5);
    }

    .stat-item {
        min-width: 100px;
    }
}
.location-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.location-card i {
  font-size: 28px;
  color: #25D366;
  margin-bottom: 10px;
}

.location-card h6 {
  margin: 0;
  font-weight: 600;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ════════════════════════════════════════════════════════════
   QUICK CONTACT STRIP (Contact page)
════════════════════════════════════════════════════════════ */
.qc-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.qc-item {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    flex: 1;
    min-width: 200px;
    color: var(--text);
    text-decoration: none;
    transition: background var(--t);
}

a.qc-item:hover {
    background: var(--red-soft);
}

.qc-ic {
    width: 44px;
    height: 44px;
    background: var(--red-soft);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

.qc-label {
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}

.qc-val {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    word-break: break-all;
}

.qc-divider {
    width: 1px;
    height: 56px;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .qc-divider {
        display: none;
    }

    .qc-item {
        border-bottom: 1px solid var(--border);
        min-width: 100%;
    }

    .qc-item:last-child {
        border-bottom: none;
    }
}

/* ════════════════════════════════════════════════════════════
   VEHICLE CARD FULL (Vehicle page — enhanced card)
════════════════════════════════════════════════════════════ */
.v-card-full {
    transition: var(--t);
}

.v-card-full:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-5px);
    border-color: var(--red-border);
}

/* Extra detail tags inside the vehicle card */
.v-detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: var(--sp-2);
}

.v-detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    background: var(--red-soft);
    border: 1px solid var(--red-border);
    border-radius: 4px;
    padding: 3px 7px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.v-detail-tag i {
    font-size: 9px;
    color: var(--red);
}

/* ════════════════════════════════════════════════════════════
   FILTER ANIMATION (Vehicle page)
════════════════════════════════════════════════════════════ */
.v-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.v-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* No-results placeholder */
#noResults {
    padding: var(--sp-10) 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
════════════════════════════════════════════════════════════ */
@media (max-width: 575px) {
    .page-hero {
        min-height: 280px;
    }

    .ph-content {
        padding: var(--sp-9) var(--sp-4);
    }
}

@media (max-width: 767px) {
    .stat-n {
        font-size: 1.8rem;
    }
}
