/*
Theme Name: Rentigo
Theme URI: https://rentigo.in
Author: Rentigo / Keshav Manek
Author URI: https://rentigo.in
Description: Custom rental website theme for Rentigo (cars, bikes, activa, taxis).
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: rentigo
*//* =======================
   Navbar
======================= */

:root {
  --primary: #ff6b2f;
  --dark: #202b32;
  --muted: #6b7a81;
  --bg: #f6f7f8;
  --card-bg: #fff;
  --radius: 12px;
}
.navbar-custom {
  transition: all 0.3s ease-in-out;
  padding: 12px 0;
}

/* Logo text styles */
.logo-renti {
  color: #000; /* default black */
}

.logo-go {
  color: var(--primary); /* orange highlight */
}

/* When navbar is transparent (desktop top state) */
@media (min-width: 992px) {
  .navbar-custom:not(.scrolled) .logo-renti {
    color: #fff !important; /* white on dark bg */
  }
  .navbar-custom:not(.scrolled) .logo-go {
    color: var(--primary) !important; /* keep orange highlight */
  }
}


/* Desktop: transparent until scroll */
@media (min-width: 992px) {
  .navbar-custom {
    background: transparent !important;
  }
  .navbar-custom .nav-link,
  .navbar-custom .navbar-brand {
    color: #fff !important;
  }
  .navbar-custom.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  .navbar-custom.scrolled .nav-link,
  .navbar-custom.scrolled .navbar-brand {
    color: #000 !important;
  }
}
.nav-link:hover{
	 color:var(--primary);
}
/* Mobile: always solid */
@media (max-width: 991px) {
  .navbar-custom {
    background: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  .navbar-custom .nav-link,
  .navbar-custom .navbar-brand {
    color: #000 !important;
  }
}

/* Book Button */
.navbar-custom .btn-book {
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
}
/* Logo Image */
.logo-img {
  height: 42px;   /* adjust logo size */
  width: auto;
  border-radius: var(--radius); /* optional: rounded edges */
  object-fit: contain;
}

/* =======================
   Hero Section
======================= */


.hero-section {
  background: linear-gradient(rgba(32, 43, 50, 0.85), rgba(32, 43, 50, 0.85)),
              url('https://rentigo.in/wp-content/uploads/2025/09/taxi-sign-car-night-scaled.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.hero-section h1 span {
  color: var(--primary);
}

.hero-section p.lead {
  color: var(--bg);
  font-size: 1.2rem;
}

.hero-section .btn-primary {
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  transition: 0.3s;
}
.hero-section .btn-primary:hover {
  background: #e45c23;
}

.hero-section .btn-outline-light {
  border: 2px solid #fff;
  border-radius: var(--radius);
  color: #fff;
  transition: 0.3s;
}
.hero-section .btn-outline-light:hover {
  background: #fff;
  color: var(--dark);
}

.booking-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: none;
}
.booking-card .form-label {
  font-weight: 500;
  color: var(--dark);
}
.booking-card .btn {
  border-radius: var(--radius);
}

/* Fleet grid */
.section {
    padding: 70px 0
}

.section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vehicle-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(10, 20, 30, 0.04)
}

.vehicle-card img {
    max-width: 100%;
    height: 160px;
    object-fit: contain
}

.vehicle-card .label {
    margin-top: 10px;
    background: #263238;
    color: #fff;
    padding: 10px;
    border-radius: 8px
}

/* Responsive */
@media (max-width:1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero {
        flex-direction: column;
        text-align: center
    }

    .hero .hero-image {
		transform: scaleX(-1);
        text-align: center
			
    }
}

@media (max-width:640px) {
    .fleet-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 32px
    }
}

.fleet-section {
  background: var(--bg);
  padding: 80px 0;
}

.fleet-section h2 {
  color: var(--dark);
  font-weight: 700;
}

.fleet-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
    flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.fleet-card img {
  width:  inherit; 
    height: 200px;
    object-fit: contain;
}

.fleet-card .card-body {
  padding: 20px;
}

.fleet-card h5 {
  color: var(--dark);
  font-weight: 600;
}

.fleet-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.fleet-card .btn {
  border-radius: var(--radius);
}

.city-section {
  background: var(--bg);
  padding: 80px 0;
}

.city-section h2 {
  color: var(--dark);
  font-weight: 700;
}

.city-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.city-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.city-card .card-body {
  padding: 18px;
}

.city-card h5 {
  color: var(--dark);
  font-weight: 600;
}

.city-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Why Choose Us */
.why-section {
  background: var(--bg);
  padding: 80px 0;
}

.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.why-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.why-card h5 {
  color: var(--dark);
  font-weight: 600;
}

/* How It Works */
.how-section {
  background: var(--card-bg);
  padding: 80px 0;
}

.step-box {
  text-align: center;
  padding: 20px;
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.step-box h5 {
  color: var(--dark);
  font-weight: 600;
}

.step-box p {
  color: var(--muted);
}
/* Base Content Area Styling */
.content-area {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

/* Heading */
.content-area h1 {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.content-area h1 span {
  color: var(--primary);
}

/* Paragraphs */
.content-area p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* List Styling */
.content-area ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.content-area ul li {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.content-area ul li::before {
  content: "✔";
  color: var(--primary);
  font-weight: bold;
  margin-right: 10px;
}

/* Call-to-Action Buttons */
.content-area .btn-primary {
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  padding: 10px 24px;
  transition: all 0.3s ease-in-out;
}

.content-area .btn-primary:hover {
  background: #e55a20; /* darker shade of primary */
}

.content-area .btn-outline-dark {
  border-radius: var(--radius);
  font-weight: 600;
  padding: 10px 24px;
}
