@import url("navgation.css");
@import url("footer.css");
@import url("slider.css");
@import url("home.css");

:root {
  --primary-color: #e30b0b;
  --secondary-color: #ff9c00;
  --dark-color: #222222;
  --light-color: #ffffff;
  --gray-color: #6c757d;
  --gray-light: #f8f9fa;
  --gray-border: #e9ecef;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== PREMIUM CITY HERO SECTION ========== */
.city-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
  overflow: hidden;
  margin: 0;
  padding: 4rem 0;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.32) 50%,
      rgba(227, 11, 11, 0.1) 100%);
  z-index: 2;
}

/* Blur Shapes */
.blur-shape-city {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 11, 11, 0.12) 0%, rgba(255, 156, 0, 0.05) 100%);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -150px;
  right: -100px;
  animation: floatCityShape 14s ease-in-out infinite;
  z-index: 3;
}

.blur-shape-city-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 156, 0, 0.1) 0%, rgba(227, 11, 11, 0.03) 100%);
  border-radius: 50%;
  filter: blur(60px);
  top: -100px;
  left: -80px;
  animation: floatCityShapeAlt 16s ease-in-out infinite;
  z-index: 3;
}

@keyframes floatCityShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 30px) scale(1.08);
  }
}

@keyframes floatCityShapeAlt {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
}

/* Hero Content Container */
.hero-content-wrapper {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Heading Animation */
.city-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 0.6s ease-out forwards;
}

.city-heading span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

/* Description Text */
.city-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeSlideUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Premium Breadcrumb */
.breadcrumb-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 60px;
  margin-bottom: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: fadeSlideUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.breadcrumb-wrapper:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.breadcrumb-link {
  color: #f6f3f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-link i {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.breadcrumb-link:hover {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 600;
}

.breadcrumb-separator i {
  color: var(--secondary-color);
  font-size: 0.72rem;
}

.breadcrumb-current {
  color: #f8edea;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* Animations */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .city-hero {
    min-height: 340px;
    padding: 3.5rem 0;
  }

  .city-heading {
    font-size: 2.3rem;
  }

  .city-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .city-hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .city-heading {
    font-size: 1.8rem;
  }

  .city-description {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .breadcrumb-wrapper {
    padding: 6px 16px;
  }

  .blur-shape-city,
  .blur-shape-city-2 {
    opacity: 0.6;
  }
}

@media (max-width: 576px) {
  .city-heading {
    font-size: 1.5rem;
  }

  .city-description {
    font-size: 0.85rem;
  }
  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 0.75rem;
  }
}

html {
  scroll-behavior: smooth;
}

  .about-section {
    position: relative;
    padding: 5rem 0;
    background:
      radial-gradient(circle at 8% 15%, rgba(205, 3, 1, 0.08) 0%, rgba(205, 3, 1, 0) 42%),
      linear-gradient(180deg, #fffdfd 0%, #f8fafc 100%);
    overflow: hidden;
  }

  .about-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(10, 17, 40, 0.05);
    pointer-events: none;
  }

  .about-content-wrapper {
    position: relative;
    z-index: 2;
  }

  .about-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #cd0301;
    background: rgba(205, 3, 1, 0.1);
    border: 1px solid rgba(205, 3, 1, 0.22);
    border-radius: 50px;
    padding: 0.45rem 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  .about-title {
    color: #0a1128;
    font-size: clamp(1.85rem, 2.8vw, 2.75rem);
    line-height: 1.2;
    font-weight: 800;
  }

  .about-title-icon {
    color: #cd0301;
    vertical-align: middle;
  }

  .brand-accent {
    color: #cd0301;
  }

  .about-desc {
    color: #4f5b77;
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0 1.6rem;
  }

  .about-point {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #1f2a44;
    font-size: 0.92rem;
    font-weight: 600;
  }

  .about-point i {
    color: #cd0301;
    font-size: 1.05rem;
  }

  .about-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
  }

  .about-stat-card {
    min-width: 120px;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    border: 1px solid rgba(10, 17, 40, 0.08);
    box-shadow: 0 10px 22px rgba(10, 17, 40, 0.08);
  }

  .about-stat-number {
    display: block;
    color: #0a1128;
    font-size: 1.18rem;
    line-height: 1.1;
    font-weight: 800;
  }

  .about-stat-label {
    display: block;
    margin-top: 0.2rem;
    color: #5a647e;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  .about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.2rem;
    align-items: center;
  }

  .about-btn {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #cd0301 0%, #ad0908 100%);
    box-shadow: 0 12px 28px rgba(205, 3, 1, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(205, 3, 1, 0.32);
  }

  .about-call-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 17, 40, 0.08);
    color: #0a1128;
    margin-right: 0.6rem;
  }

  .about-call-number {
    color: #0a1128;
    font-weight: 700;
    text-decoration: none;
  }

  .about-call-number:hover {
    color: #cd0301;
  }

  .about-img-wrapper {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(10, 17, 40, 0.1);
    box-shadow: 0 20px 42px rgba(10, 17, 40, 0.14);
  }

  .about-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 17, 40, 0) 45%, rgba(10, 17, 40, 0.2) 100%);
    pointer-events: none;
  }

  .about-img-rectangle-img {
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    transform: scale(1.01);
  }

  .about-proof-badge {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.68rem 0.9rem;
    border-radius: 12px;
    background: rgba(10, 17, 40, 0.88);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 24px rgba(10, 17, 40, 0.32);
    z-index: 3;
  }

  .about-proof-badge i {
    color: #ffce4b;
    font-size: 1.05rem;
  }

  .about-proof-badge strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .about-proof-badge span {
    display: block;
    margin-top: 0.08rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    letter-spacing: 0.2px;
  }

  @media (max-width: 991.98px) {
    .about-section {
      padding: 4rem 0;
    }

    .about-points {
      grid-template-columns: 1fr;
      margin: 1rem 0 1.35rem;
    }

    .about-point {
      padding: 0.68rem 0.72rem;
    }

    .about-img-rectangle-img {
      max-height: 420px;
    }
  }

  @media (max-width: 575.98px) {
    .about-section {
      padding: 3.4rem 0;
    }

    .about-title {
      font-size: 1.7rem;
    }

    .about-desc {
      font-size: 0.98rem;
    }

    .about-stats {
      gap: 0.65rem;
    }

    .about-stat-card {
      min-width: calc(50% - 0.4rem);
      padding: 0.72rem 0.8rem;
    }

    .about-actions {
      gap: 0.85rem 1rem;
    }

    .about-proof-badge {
      left: 0.85rem;
      bottom: 0.85rem;
      padding: 0.58rem 0.72rem;
    }

    .about-img-rectangle-img {
      max-height: 320px;
    }
  }
 .car-relocation-added-section {
    padding: 56px 0;
    background: var(--light-color);
  }

  .car-relocation-added-wrap {
    border: 1px solid var(--gray-border);
    background: var(--gray-light);
    border-radius: 12px;
    padding: 24px;
  }

  .car-relocation-added-kicker {
    display: inline-block;
    background: rgba(227, 11, 11, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(227, 11, 11, 0.18);
    border-radius: 30px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .car-relocation-added-wrap h3 {
    color: var(--dark-color);
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    margin-bottom: 14px;
    font-weight: 700;
  }

  .car-relocation-added-wrap p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  @media (max-width: 575.98px) {
    .car-relocation-added-section {
      padding: 44px 0;
    }

    .car-relocation-added-wrap {
      padding: 18px;
    }

    .car-relocation-added-wrap p {
      font-size: 14px;
      line-height: 1.72;
    }
  }
  .car-relocation-section {
    padding: 70px 0;
    background: var(--gray-light);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
  }

  .car-relocation-head {
    margin-bottom: 28px;
  }

  .car-relocation-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(227, 11, 11, 0.08);
    border: 1px solid rgba(227, 11, 11, 0.2);
    border-radius: 50px;
    padding: 7px 14px;
    margin-bottom: 12px;
  }

  .car-relocation-head h2 {
    color: var(--dark-color);
    font-size: clamp(1.55rem, 2.7vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0;
  }

  .car-relocation-card,
  .car-relocation-points {
    background: var(--light-color);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.06);
  }

  .car-relocation-card p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .car-relocation-points {
    background: linear-gradient(180deg, #fff8eb 0%, var(--light-color) 100%);
  }

  .car-relocation-points h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 14px;
    font-weight: 700;
  }

  .car-relocation-points ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  .car-relocation-points li {
    display: flex;
    gap: 9px;
    color: #3f4a58;
    line-height: 1.55;
    font-size: 14px;
  }

  .car-relocation-points i {
    color: var(--secondary-color);
    margin-top: 2px;
    flex-shrink: 0;
  }

  @media (max-width: 991.98px) {
    .car-relocation-section {
      padding: 52px 0;
    }
  }

  @media (max-width: 575.98px) {
    .car-relocation-card,
    .car-relocation-points {
      padding: 18px;
    }

    .car-relocation-card p {
      font-size: 14px;
      line-height: 1.7;
    }
  }