/* Global Styles */
:root {
  --primary-gold: #d4af37;
  --dark-gold: #b8941f;
  --light-gold: #f4e4bc;
  --primary-black: #1a1a1a;
  --secondary-black: #2d2d2d;
  --light-gray: #f8f8f8;
  --medium-gray: #666666;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  color: var(--primary-black);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-black);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--secondary-black);
  line-height: 1.8;
}

/* Header Styles */
header {
  background-color: var(--primary-black);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  color: var(--primary-gold);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a:hover,
nav a.active {
  color: var(--primary-gold);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-gold);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 8rem 0 4rem;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
  font-size: 1.3rem;
  color: var(--light-gold);
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-gold);
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
  cursor: pointer;
  font-family: 'Arial', sans-serif;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background-color: var(--primary-gold);
  color: var(--primary-black);
}

/* Service Tiers */
.service-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tier-card {
  background-color: var(--white);
  border: 1px solid var(--light-gold);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--primary-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.tier-card:hover::before {
  transform: scaleX(1);
}

.tier-name {
  color: var(--primary-gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

/* Image Placeholders */
.image-placeholder {
  background-color: var(--light-gray);
  border: 2px dashed var(--medium-gray);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--medium-gray);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '🚗';
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Vehicle Grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.vehicle-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.vehicle-info {
  padding: 2rem;
}

.vehicle-name {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Forms */
.form-section {
  background-color: var(--light-gray);
  padding: 3rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  color: var(--primary-black);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Arial', sans-serif;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ Section */
.faq-item {
  background-color: var(--white);
  margin-bottom: 1rem;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--light-gray);
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding-right: 3rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: '−';
}

/* Testimonials */
.testimonial {
  background-color: var(--light-gray);
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--primary-gold);
  font-style: italic;
}

.testimonial-author {
  text-align: right;
  color: var(--primary-gold);
  font-weight: 600;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--secondary-black);
  color: var(--medium-gray);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-gold);
  color: var(--primary-black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}

.back-to-top:hover {
  background-color: var(--dark-gold);
  transform: translateY(-5px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .header-content {
    padding: 0.8rem 0;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--primary-black);
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
  
  nav a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--secondary-black);
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 5rem 0 3rem;
  }
  
  .service-tiers {
    grid-template-columns: 1fr;
  }
  
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

table th {
  background-color: var(--primary-black);
  color: var(--primary-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

table tr:hover {
  background-color: var(--light-gray);
}

/* Lists */
ul.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

ul.feature-list li {
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  position: relative;
}

ul.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: var(--light-gray);
}