/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.btn {
  background: #d10000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin: 5px;
  transition: all 0.3s;
}

.btn:hover {
  background: #ff3333;
  transform: translateY(-2px);
}

.btn.secondary {
  background: #fff;
  color: #d10000;
}

.btn.secondary:hover {
    background: #eee;
}

/* ===== Header ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000; /* black background like business card */
  padding: 12px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  height: 80px; /* make the logo stand out */
}

header nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

header nav ul li a {
  color: #fff;
  font-weight: 600;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #d10000; /* red hover like branding */
}

header .cta-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  background: #d10000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
}

.btn:hover {
  background: #ff3333;
  transform: translateY(-2px);
}

.btn.secondary {
  background: #fff;
  color: #d10000;
}

.btn.secondary:hover {
  background: #eee;
}
/* ===== Hero Section ===== */
.hero {
  
  position: relative;
  color: #fff;
  text-align: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures video fills the section */
    z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6); /* dark overlay for contrast */
  z-index: 0;
}

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

.hero-logo {
  height: 150px; /* large logo in hero */
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
/* ===== Services Section ===== */
.services {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

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

.service {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.service img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.service h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #111;
}

.service p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 12px;
  min-height: 80px;
}
/* ===== Pricing Section ===== */
.pricing {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.pricing h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pricing .subtitle {
  color: #555;
  margin-bottom: 40px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  width: 320px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, border 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: #d10000;
}

.pricing-card.highlight {
  border: 2px solid #d10000;
  box-shadow: 0 8px 20px rgba(209,0,0,0.25);
}

.package-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding: 12px;
  color: #fff;
  border-radius: 4px;
}

.package-title.basic { background: #333; }
.package-title.premium { background: #d10000; }
.package-title.showroom { background: #111; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.pricing-table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.features {
  margin: 15px 0;
  padding-left: 15px;
}

.features li {
  margin: 6px 0;
  font-size: 0.9rem;
}
/* ===== About Section ===== */
.about {
  padding: 70px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.about-list {
  margin: 20px 0;
  padding-left: 0;
}

.about-list li {
  font-size: 1rem;
  margin: 8px 0;
  color: #111;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}
/* ===== FAQ Section ===== */
.faq {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #d10000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 12px;
}

.faq-answer p {
  margin: 10px 0;
  color: #333;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* expands on open */
  padding: 10px 12px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
/* ===== Contact Section ===== */
.contact {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact p {
  color: #444;
  margin-bottom: 30px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #d10000;
}

.contact-info p {
  margin: 10px 0;
  font-size: 0.95rem;
}

.contact-form {
  flex: 2;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #d10000;
}

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

.contact-form label {
  margin-top: 12px;
  font-weight: bold;
  color: #111;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  margin-top: 20px;
  align-self: flex-start;
}
/* ===== Footer ===== */
footer {
  background: #000;
  color: #fff;
  padding-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.footer-about {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ddd;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #d10000;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #fff;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d10000;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: #aaa;
}
/* Position the hamburger menu in top-right */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 15px;
  right: 20px; /* moves it to the corner */
  z-index: 1001;
}
/* Show hamburger on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* <— forces it to appear */
  }
}
/* Hide nav by default on mobile */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: black;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
    z-index: 999;
  }

  nav.active {
    display: block; /* when toggled */
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav ul li a {
    color: white;
    text-decoration: none;
  }
}

/* Common button styles */
.side-btn {
  position: fixed;
  top: 50%; /* middle of screen vertically */
  transform: translateY(-50%);
  padding: 15px 20px;
  background: #d10000;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  writing-mode: vertical-rl;  /* text runs vertically */
  text-align: center;
  transition: all 0.3s ease;
}

/* Left button */
.side-btn.left {
  left: 10px;
}

/* Right button */
.side-btn.right {
  right: 10px;
}

/* Vibrate animation */
@keyframes vibrate {
  0% { transform: translateY(-50%) translateX(0); }
  20% { transform: translateY(-50%) translateX(-2px); }
  40% { transform: translateY(-50%) translateX(2px); }
  60% { transform: translateY(-50%) translateX(-2px); }
  80% { transform: translateY(-50%) translateX(2px); }
  100% { transform: translateY(-50%) translateX(0); }
}

.vibrate {
  animation: vibrate 2s infinite;
}

/* On small screens: turn into floating circles */
@media (max-width: 480px) {
  .side-btn {
    writing-mode: horizontal-tb; /* back to normal text */
    font-size: 12px;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 30px;
  }

  .side-btn.left {
    left: 10px;
    bottom: 80px; /* move lower so it doesn’t block content */
    top: auto;
    transform: none;
  }

  .side-btn.right {
    right: 10px;
    bottom: 20px; /* bottom-right corner */
    top: auto;
    transform: none;
  }
}
