@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --accent: #7b1f2e;
  --accent-weak: rgba(123, 31, 46, 0.06);
  --text: #222;
  --muted: #666;
  --muted-weak: #370606;
  --bg: #f9f9f9;
  --card-pad: 26px;
  --max-width: 1100px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
}

.top-banner {
  width: 100%;
  text-align: center;
  font-size: 14px;
  background: var(--accent);
  color: white;
  padding: 6px 0;
}

.navbar {
  width: 100%;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 40px;
}

.nav-icons {
  display: flex;
  gap: 20px;
  text-decoration: none !important;
  list-style: none !important;
}

.icon {
  font-size: 22px;
  cursor: pointer;
  text-decoration: none !important;
  list-style: none !important;
}

.hero2 h2 {
  font-family: "Playfair Display", serif;
  font-weight: 200;
}

.hero2 p {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 15px;
}

.hero2-cards {
  display: flex;
  gap: 20px;
}

.card-body h5 {
  color: var(--accent) !important;
}
.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--accent);
}

/* HERO SECTION 2 */
.hero2-content h2 {
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.hero2-content p {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 15px;
  padding: 20px;
}

/* HERO SECTION 3 */
.hero3-content h2 {
  padding: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: var(--accent);
}

.hero-sec4 {
  list-style: disc;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: var(--accent) !important;
  color: white !important;
}

/* HERO SECTION 4 */
.hero4-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: white;
}

.latest-cars {
  display: flex;
  gap: 20px;
}

.latest-car-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.latest-car-card:hover {
  transform: translateY(-5px);
}

.latest-car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.latest-car-card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.latest-car-card p {
  font-size: 14px;
  color: #888;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--accent);
}
.card-title a {
  text-decoration: none;
  color: inherit;
}

/* HERO SECTION 4 */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.hero-sec4 {
  padding: 3rem 1.5rem;
  background: #f9fafb;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.hero-sec4-content ul {
  list-style: disc;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.hero-sec4 h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  justify-content: center;
  align-items: center;
}

/* CAR CARD */
.car-card {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* IMAGE SECTION */
.car-card-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.car-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BODY SECTION */
.car-card-body {
  padding: 0.9rem 1rem 1rem;
}

.car-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.car-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.car-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: #16a34a;
}

/* SUBTEXT */
.car-card-subtitle {
  margin: 0;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  color: #6b7280;
}

/* TAGS */
.car-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.car-tag {
  font-size: 0.75rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #4b5563;
}

/* FOOTER BUTTONS */
.car-card-footer {
  display: flex;
  gap: 0.5rem;
}

.car-card-btn {
  flex: 1;
  font-size: 0.85rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease,
    transform 0.1s ease;
}

.car-card-btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.car-card-btn.ghost {
  border-color: #d1d5db;
  color: #111827;
  background: #ffffff;
}

.car-card-btn.primary:hover {
  background: #020617;
  transform: translateY(-1px);
}

.car-card-btn.ghost:hover {
  border-color: #9ca3af;
  background: #f3f4f6;
  transform: translateY(-1px);
}

.car-card:hover {
  border-color: #d1d5db;
}

.cards-flex {
  display: flex;
  gap: 20px;
}

.cards-flex {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 0;

  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards-flex {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-flex {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* TESTIONAL STUFF */

.testimonials {
  padding: 3rem 0;
}

.testimonials-heading {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.testimonials-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.2rem 1.3rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #374151;
  margin: 0 0 1rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
}

.testimonial-tag {
  font-size: 0.8rem;
  color: #6b7280;
}
.testimonial-rating {
  color: #fbbf24;
}

/* FOOTER */

.footer-logo img {
  vertical-align: middle;
  margin-right: 8px;
  width: 50px;
}

.site-footer {
  background: var(--accent);
  color: #ffffff;
  padding: 2.5rem 1.5rem 1.5rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: #ffffff;
}

.footer-text {
  margin: 0;
  line-height: 1.6;
  color: #ffffff !important;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.4rem;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #f9fafb;
}

.footer-social {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  font-size: 0.75rem;
  text-decoration: none;
  color: #e5e7eb;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover {
  background: #ffffff;
  border-color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom-text {
  margin: 0;
  font-size: 0.8rem;
  color: #ffffff !important;
}

/* OUR SERVICES CARDS */

body {
  margin: 0;
  color: var(--text);
  background: #fff;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
  align-items: start;
}

/* single feature card */
.feature {
  text-align: center;
  padding: var(--card-pad) 12px;
  background: transparent;
}

.icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--accent-weak);
  border: 3px solid rgba(123, 31, 46, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.icon svg {
  width: 34px;
  height: 34px;
  fill: var(--accent);
  display: block;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.feature p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.feature:hover .icon {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 18px 30px rgba(123, 31, 46, 0.12);
}

/* responsive */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    padding: 26px 16px 0;
  }
}

/* TERMS AND CONDITIONS */

.terms-conditions {
  margin: 0 auto;
  max-width: 800px;
  padding: 1rem;
  line-height: 1.6;
}

.terms-conditions h1 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.terms-conditions h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.terms-conditions p {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* PROFILE PAGE */
.profile-body {
  font-family: "Poppins", sans-serif;
  background-image: url(./images/car\ photo.avif);
  color: var(--text);
}

.profile-container {
  max-width: 400px;
  height: 400px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.profile-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.profile-container p {
  margin-bottom: 1rem;
  color: var(--muted);
  list-style: none;
}
.profile-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.profile-container input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #f9fafb;
  color: var(--text);
}

.profile-container button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
}

.profile-container button:hover {
  background: var(--muted-weak);
}

/* SIGNUP PAGE CSS */

.signup-body {
  font-family: "Poppins", sans-serif;
  background-image: url(./images/car\ photo.avif);
  color: var(--text);
}

.signup {
  max-width: 400px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #e7e5e5de;
  justify-content: right !important;
}

.signup h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.signup h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.signup label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.signup input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #f9fafb;
  color: var(--text);
}

.signup button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
}

.signup button:hover {
  background: var(--muted-weak);
}

.signup-terms {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--muted);
}



/* TOYOTA CAMRY 2018 DETAILS */



.car-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--accent);
}

.car-card-price {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--accent);
}

.car-card-subtitle {
  font-size: 0.8rem;
  margin: 0;
  color: var(--muted);
}

.car-card-tags {
  margin: 0;
  color: var(--muted);
}

.hero-section {
  padding: 1rem;
  background: #f9fafb;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}

.car-card-footer {

  text-decoration: none!important;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}










/* PRIVACY POLICY CSS */

.privacy {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.privacy h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.privacy p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.privacy h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}