/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a5490;
  --secondary-color: #d4af37;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: var(--white);
}

.logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

.logo p {
  font-size: 0.85rem;
  color: var(--white);
  margin-top: -5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: var(--transition);
}

.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 26, 0.98);
  min-width: 250px;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  margin-top: 0.5rem;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  white-space: nowrap;
  transition: var(--transition);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--primary-color);
  padding-left: 2rem;
}

.language-switch a {
  color: var(--gray);
}

.language-switch a.active,
.language-switch a:hover {
  color: var(--secondary-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #1a5490 0%, #2d3e50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.3;
  animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 84, 144, 0.1) 0%,
    rgba(45, 62, 80, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--white);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--light-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--gray);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 84, 144, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card h3 {
  padding: 1.5rem;
  font-size: 1.3rem;
  color: var(--dark-color);
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
}

/* Tours Section */
.tours {
  padding: 6rem 0;
  background: var(--light-color);
}

.tours-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tour-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray);
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--dark-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tour-content {
  padding: 1.5rem;
}

.tour-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--dark-color);
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.tour-rating span {
  margin-left: 0.5rem;
  color: var(--dark-color);
  font-weight: 600;
}

.tour-content p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.tour-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.tour-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-price {
  margin: 1rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.tour-price > div {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.tour-price > div:last-child {
  margin-bottom: 0;
}

.tour-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.tour-price .price-note {
  font-size: 0.85rem;
  color: var(--gray);
}

/* About Montenegro Section */
.about-montenegro {
  padding: 6rem 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.reasons-list {
  list-style: none;
}

.reasons-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--dark-color);
}

.reasons-list i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--light-color);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.info-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.info-card p {
  color: var(--gray);
  line-height: 1.7;
}

.info-card a {
  color: var(--primary-color);
}

.info-card a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--gray);
  pointer-events: none;
  transition: var(--transition);
  background: var(--white);
  padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.7rem;
  left: 0.7rem;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  opacity: 0;
}

.contact-form button {
  border: none;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.btn-loading {
  display: none;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.footer-logo p {
  color: var(--white);
  margin-top: -5px;
}

.footer-text p {
  color: var(--gray);
  margin: 0.3rem 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    height: 350px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .services-grid,
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TRANSFERS PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(135deg, #1a5490 0%, #2d3e50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 70px;
}

.transfers-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--secondary-color);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Transfers Intro */
.transfers-intro {
  padding: 6rem 0;
  background: var(--white);
}

.transfers-intro .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.intro-content .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.intro-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Choose Section */
.why-choose {
  padding: 6rem 0;
  background: var(--light-color);
}

/* Airports Section */
.airports-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: -1rem auto 3rem;
}

.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.airport-card {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.airport-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.airport-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.airport-card h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.airport-name {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
  font-style: italic;
}

.airport-card > p {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.destinations-list {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--light-color);
  border-radius: 10px;
}

.destinations-list li {
  padding: 0.6rem 0;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background: var(--light-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.step-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.step-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Vehicle Fleet */
.vehicle-fleet {
  padding: 6rem 0;
  background: var(--white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vehicle-card {
  background: var(--light-color);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.vehicle-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.vehicle-card.featured {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.vehicle-card.featured h3,
.vehicle-card.featured p {
  color: var(--white);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: var(--dark-color);
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.vehicle-image {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.vehicle-card.featured .vehicle-image {
  color: var(--secondary-color);
}

.vehicle-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.vehicle-card .capacity,
.vehicle-card .luggage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.8rem 0;
  font-weight: 600;
  color: var(--dark-color);
}

.vehicle-card.featured .capacity,
.vehicle-card.featured .luggage {
  color: var(--white);
}

.vehicle-card > p:last-child {
  margin-top: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

.vehicle-card.featured > p:last-child {
  color: rgba(255, 255, 255, 0.9);
}

/* Quote Section */
.quote-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a5490 0%, #2d3e50 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0.5;
}

.quote-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.quote-content i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.quote-content h2 {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--white);
}

.quote-content p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  line-height: 1.4;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.7;
  margin-left: 2.5rem;
}

/* Form Row for Transfers */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.footer-links a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

/* Responsive - Transfers Page */
@media (max-width: 968px) {
  .transfers-intro .container {
    grid-template-columns: 1fr;
  }

  .intro-image {
    order: -1;
    height: 300px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .airports-grid,
  .steps-grid,
  .fleet-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .intro-content h2 {
    font-size: 1.8rem;
  }

  .quote-content h2 {
    font-size: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.success-icon {
  font-size: 6rem;
  color: #28a745;
  margin-bottom: 2rem;
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-content h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.thank-you-content .lead {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.thank-you-content > p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.thank-you-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-box i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.info-box h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 0.8rem;
}

.info-box p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.info-box a {
  color: var(--primary-color);
  font-weight: 600;
}

.info-box a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0 2rem;
}

.thank-you-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-connect {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}

.social-connect p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.social-connect .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-connect .social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.social-connect .social-links a:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

/* Responsive - Thank You Page */
@media (max-width: 768px) {
  .thank-you-content h1 {
    font-size: 2.5rem;
  }

  .thank-you-content .lead {
    font-size: 1.2rem;
  }

  .success-icon {
    font-size: 4rem;
  }

  .thank-you-info {
    grid-template-columns: 1fr;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
