/* PCO Car Hire Page Styles */

/* Hero Section - Account for fixed header */
#content .pco-hero-section,
section.pco-hero-section {
  padding-top: 200px !important;
  padding-bottom: 80px !important;
  margin-top: 0 !important;
  background: linear-gradient(135deg, rgba(76, 178, 134, 0.05) 0%, rgba(0, 120, 125, 0.05) 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pco-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pco-hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.pco-hero-image {
  text-align: center;
}

.pco-hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

/* What is PCO Section */
.pco-what-is-section {
  padding: 80px 0;
  background: #ffffff;
}

.pco-what-is-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.pco-advantage-card {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.pco-advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pco-advantage-card .advantage-icon {
  margin-bottom: 20px;
}

.pco-advantage-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.pco-advantage-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* Top Picks Section */
.pco-top-picks-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.pco-top-picks-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.pco-top-picks-section > .container > .row:first-child p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.pco-car-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pco-car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pco-car-card .car-image {
  overflow: hidden;
  height: 250px;
  background: #f8f9fa;
}

.pco-car-card .car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pco-car-card:hover .car-image img {
  transform: scale(1.1);
}

.pco-car-card .car-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pco-car-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.pco-car-card .car-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pco-car-card .car-specs span {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pco-car-card .car-specs i {
  color: #4cb286;
}

.pco-car-card .car-price {
  margin-bottom: 20px;
  margin-top: auto;
}

.pco-car-card .price-label {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}

.pco-car-card .price-amount {
  color: #4cb286;
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.btn-car-rent {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
}

.btn-browse-all {
  margin-top: 40px;
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Why Choose Section */
.pco-why-choose-section {
  padding: 80px 0;
  background: #ffffff;
}

.pco-why-choose-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.pco-why-choose-section .row > [class*="col-"].mb-4 {
  margin-bottom: 1rem !important;
}

.pco-benefit-card {
  text-align: center;
  padding: 25px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.pco-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pco-benefit-card .benefit-icon {
  margin-bottom: 12px;
}

.pco-benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.pco-benefit-card p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Eligibility Section */
.pco-eligibility-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(76, 178, 134, 0.05) 0%, rgba(0, 120, 125, 0.05) 100%);
}

.pco-eligibility-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.pco-eligibility-section .eligibility-intro {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.pco-eligibility-section .eligibility-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pco-eligibility-section .eligibility-list li {
  padding: 12px 0;
  font-size: 1.05rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.6;
}

.pco-eligibility-section .eligibility-list li i {
  color: #4cb286;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.pco-eligibility-section .eligibility-image {
  text-align: center;
}

.pco-eligibility-section .eligibility-image img {
  max-width: 100%;
  height: auto;
}

/* CTA Section */
.pco-cta-section {
  padding: 80px 0;
  background: #4cb286;
  color: #ffffff;
}

.pco-cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.pco-cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 30px;
}

.pco-cta-section .btn-hero-primary {
  background: #ffffff;
  color: #4cb286;
  padding: 15px 40px;
  font-size: 1.1rem;
}

.pco-cta-section .btn-hero-primary:hover {
  background: #f0f0f0;
  color: #00787d;
}

/* Responsive */
@media (max-width: 991px) {
  .pco-hero-title {
    font-size: 2.5rem;
  }
  
  .pco-hero-section {
    padding: 180px 0 60px 0 !important;
    min-height: auto;
  }
  
  .pco-eligibility-section .eligibility-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .pco-hero-section {
    padding: 160px 0 60px 0 !important;
  }
}

