/* Convertible City Tours - Main Styles */

:root {
  /* Primary Color Palette */
  --primary-1: #FF6B35; /* Sunset Orange - Energy of convertible rides */
  --primary-2: #2C3E50; /* Midnight Blue - Premium feel */
  --primary-3: #F7DC6F; /* Sunny Yellow - Joy of open-air driving */
  --primary-4: #1ABC9C; /* Turquoise - Freedom and adventure */
  --primary-5: #8E44AD; /* Royal Purple - Luxury experience */
  
  /* Light/Dark Shades */
  --light-1: #FFF4EC;
  --light-2: #ECF0F1;
  --dark-1: #1A252F;
  --dark-2: #2C3E50;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  /* Conservative Font Sizes */
  --fs-h1: 2.5rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-h5: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--dark-1);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
  margin-bottom: 1rem;
  font-size: var(--fs-body);
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-1) 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
    font-size: 12px !important;
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--primary-3) !important;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
  color: #fff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-3) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(44,62,80,0.9) 0%, rgba(26,37,47,0.9) 100%), url('../VIS_images/vss_hero-bg.webp') center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-1) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-50px, -50px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--dark-2);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-1);
}

/* About Section */
.about-section {
  background: var(--light-1);
}

.about-feature {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 20px;
}

/* Services Section */
.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-body {
  padding: 30px;
}

.service-price {
  font-size: 2rem;
  color: var(--primary-1);
  font-weight: 700;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--primary-4) 0%, var(--primary-5) 100%);
  color: #fff;
}

.feature-box {
  text-align: center;
  padding: 40px 20px;
}

.feature-box i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary-3);
}

/* Price Plans */
.price-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-1) 0%, var(--primary-4) 100%);
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  border: 2px solid var(--primary-1);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 20px 0;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 40px;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-1);
  margin-bottom: 20px;
}

/* Reviews Slider */
.review-item {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.review-stars {
  color: var(--primary-3);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Process Section */
.process-step {
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-step-content {
  margin-left: 70px;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-1);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: 20px 0;
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

/* Career Section */
.career-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-1);
}

/* Contact Form */
.contact-section {
  background: var(--light-2);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control, .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(255,107,53,0.25);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-2) 100%);
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* Blog Section */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  background: var(--primary-1);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-2);
}

.faq-answer {
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/* Gallery */
.gallery-section {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--dark-1);
  color: #fff;
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--primary-3);
  margin-bottom: 20px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeIn 0.6s ease-out;
  }
  
  .slide-up {
    animation: slideUp 0.6s ease-out;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 20px 0;
  background: var(--light-2);
}

.breadcrumb {
  margin: 0;
  background: transparent;
}

.breadcrumb img {
  height: 20px;
  width: auto;
}

/* Additional Pages Specific Styles */
.add-page-section {
  padding: 60px 0;
}

.add-page-section:nth-child(even) {
  background: var(--light-1);
}

.element-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.element-card:hover {
  transform: translateY(-5px);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-4) 0%, var(--primary-5) 100%);
} 