/* ========================================
   VIP CONVOY - Modern Professional Style
   ======================================== */

:root {
  --primary-dark: #0a0a0a;
  --primary-color: #1a1a2e;
  --secondary-color: #d4af37;
  --accent-color: #0f3460;
  --light-bg: #f8f9fa;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --success-color: #27ae60;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --border-color: #e0e0e0;
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

/* ========================================
   Navigation & Header
   ======================================== */

header {
  background: white;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 2px;
}

.logo:hover {
  color: var(--secondary-color);
  transition: var(--transition);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--secondary-color);
}

nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
  color: var(--text-light);
  padding: 100px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 42px;
  margin: 10px;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: #e5c158;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

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

/* ========================================
   Sections & Layout
   ======================================== */

section {
  padding: 80px 2rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.underline {
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ========================================
   Services Section
   ======================================== */

.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: white;
  padding: 36px 28px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* ========================================
   Fleet Section
   ======================================== */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.fleet-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--primary-color);
  height: 280px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fleet-item:hover img {
  transform: scale(1.08);
}

.fleet-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4));
  color: white;
  padding: 24px;
  transform: translateY(60%);
  transition: var(--transition);
}

.fleet-item:hover .fleet-info {
  transform: translateY(0);
}

.fleet-info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.fleet-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Features Section
   ======================================== */

.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

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

.feature-number {
  font-size: 2.8rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 8px;
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   About Section
   ======================================== */

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.9;
}

.about-list {
  list-style: none;
  margin-top: 20px;
}

.about-list li {
  padding: 10px 0;
  color: #666;
  border-bottom: 1px solid #eee;
  padding-left: 30px;
  position: relative;
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.faq-item {
  padding: 28px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border-left: 4px solid var(--secondary-color);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.faq-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
  background: var(--light-gray);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.contact-item a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-note {
  font-size: 0.9rem;
  margin-top: 5px;
  color: var(--muted-color);
}

/* Scroll to top button styling (moved from inline styles) */
.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #d4af37;
  color: #1a1a2e;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  z-index: 999;
  transition: all 0.3s ease;
}

.scroll-to-top[aria-hidden="false"] {
  display: block;
}
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========================================
   Footer
   ======================================== */

footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 50px 2rem 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin: 5px 0;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

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

  .hero .tagline {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

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

  .about-grid,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .btn {
    padding: 10px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  .hero {
    padding: 60px 1rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero .tagline {
    font-size: 0.95rem;
  }

  section {
    padding: 40px 1rem;
  }
}

/* ========================================
   Utility Classes
   ======================================== */

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--secondary-color);
}

.mt-2 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.opacity {
  opacity: 0.8;
}
