/* Airport Chauffeur Rental Service Template Main CSS */

:root {
  /* Primary Colors */
  --primary-1: #1C2E4A; /* Deep navy blue - primary brand color */
  --primary-2: #A67C52; /* Gold/bronze - luxury accent */
  --primary-3: #EFEFEF; /* Light silver/gray - clean background */
  --primary-4: #2C3E50; /* Dark slate - secondary dark */
  --primary-5: #E0E6ED; /* Soft gray - neutral tone */
  
  /* Light/Dark Variants */
  --primary-1-light: #2d4367;
  --primary-1-dark: #0d1c32;
  --primary-2-light: #c4996f;
  --primary-2-dark: #8c6542;
  --primary-3-light: #ffffff;
  --primary-3-dark: #d4d4d4;
  --primary-4-light: #3d5168;
  --primary-4-dark: #1a2530;
  --primary-5-light: #f7f9fb;
  --primary-5-dark: #cad3dd;
}

/* Base Styles */
html, body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  background-color: var(--primary-3);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-2-dark);
}

.btn-primary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}

.btn-primary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary-2);
}

/* Header Styles */
.navbar {
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(28, 46, 74, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 5px;
  position: relative;
}

.navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  width: 70%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-color: var(--primary-1);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 46, 74, 0.7);
  z-index: 1;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Services Section */
.services-section {
  background-color: var(--primary-3-light);
}

.service-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-1-light);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-price {
  font-size: 24px;
  color: var(--primary-2);
  font-weight: 700;
  margin-top: 15px;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
}

.service-features li {
  padding: 5px 0;
  list-style-type: none;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-2);
}

/* About Section */
.about-section {
  overflow: hidden;
}

.about-img {
  position: relative;
  z-index: 1;
}

.about-img:after {
  content: '';
  position: absolute;
  top: 30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background-color: var(--primary-2);
  z-index: -1;
}

.about-content {
  padding-left: 30px;
}

.about-features {
  margin-top: 30px;
}

.about-feature-item {
  margin-bottom: 20px;
}

.about-feature-icon {
  color: var(--primary-2);
  font-size: 24px;
  margin-right: 15px;
}

.about-feature-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

/* Features Section */
.features-section {
  background-color: var(--primary-1);
  color: #fff;
}

.features-section .section-title h2 {
  color: #fff;
}

.feature-item {
  text-align: center;
  margin-bottom: 30px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.feature-item h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--primary-3-light);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-3-light);
}

.price-item {
  background-color: #fff;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
}

.price-item.featured {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid var(--primary-2);
}

.price-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-2);
}

.price-item h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 42px;
  color: var(--primary-1);
  font-weight: 700;
  margin-bottom: 20px;
}

.price-features {
  padding-left: 0;
  margin-bottom: 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--primary-5);
  list-style-type: none;
}

/* Team Section */
.team-section {
  overflow: hidden;
}

.team-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.team-img {
  overflow: hidden;
  border-radius: 10px;
}

.team-img img {
  transition: all 0.4s ease;
  width: 100%;
}

.team-item:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  background-color: rgba(28, 46, 74, 0.9);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.team-item:hover .team-info {
  transform: translateY(0);
}

.team-info h4 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 20px;
}

.team-info p {
  color: var(--primary-2);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-3-light);
}

.review-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 15px;
}

.review-text {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-2);
  font-size: 20px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-name {
  font-weight: 600;
  color: var(--primary-1);
}

/* Core Info Section */
.coreinfo-section {
  padding: 100px 0;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
}

.coreinfo-icon {
  font-size: 36px;
  color: var(--primary-2);
  margin-bottom: 20px;
}

.coreinfo-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid var(--primary-5);
  border-radius: 5px;
  padding: 0 20px;
}

textarea.form-control {
  height: 150px;
  padding: 15px 20px;
}

.form-check-label {
  font-size: 14px;
}

.btn-submit {
  background-color: var(--primary-2);
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-2-dark);
}

/* Blog Section */
.blog-section {
  background-color: var(--primary-3-light);
}

.blog-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content p {
  color: #777;
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-2);
  font-weight: 600;
  display: inline-block;
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background-color: var(--primary-3);
  color: var(--primary-1);
  font-weight: 600;
  padding: 15px 20px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-2-light);
  color: #fff;
}

.accordion-body {
  padding: 20px;
  background-color: var(--primary-3-light);
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-1);
  color: #fff;
  padding: 70px 0 20px;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-2);
}

.footer-widget p {
  color: var(--primary-5);
}

.footer-links {
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
  list-style-type: none;
}

.footer-links li a {
  color: var(--primary-5);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-2);
  padding-left: 5px;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-info i {
  margin-right: 15px;
  color: var(--primary-2);
  font-size: 18px;
  margin-top: 5px;
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.copyright p {
  color: var(--primary-5);
  margin-bottom: 0;
  font-size: 14px;
} 