/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
header {
  background: #ff3c00;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1,
header .tagline {
  font-family: 'Poppins', sans-serif;
}

header img.header-logo {
  max-width: 180px;
  height: auto;
  image-rendering: auto;
}

/* Tagline */
header .tagline {
  font-weight: 300;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  background: #e9ecef;
  text-align: center;
  padding: 50px 20px;
}

.hero h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  background: #ff3c00;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Call Button */
.call-button {
  display: inline-block;
  background: #ff3c00;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
  font-size: 1.1rem;
}

/* Floating Call Now Button */
.call-now {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff3c00;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  font-weight: bold;
  font-family: sans-serif;
  text-decoration: none;
}

/* Van Image */
.van-wrapper {
  margin-top: 10px;
  text-align: center;
}

.van-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

/* Fly-in Animation */
.fly-in {
  opacity: 0;
  transform: translateX(-100%);
  animation: flyInFromLeft 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes flyInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Services Section */
.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

/* General Sections */
.about, .services, .contact {
  padding: 40px 20px;
  background: #fff;
  margin-bottom: 20px;
}

/* Contact Form */
.contact form {
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1rem;
}

.contact button {
  background: #ff3c00;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
  font-size: 0.9rem;
}

/* Accordion */
.accordion {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: #ff3c00;
  color: white;
  padding: 14px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #d93500;
}

.accordion-content {
  padding: 15px 20px;
  display: none;
  background: #fff8f4;
  color: #333;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }

  .contact form {
    max-width: 600px;
    margin: auto;
  }
}

/* Optional: Flip Container (if used) */
.flip-container {
  perspective: 1000px;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 10;
  position: relative;
}

@media (max-height: 500px) {
  .flip-container {
    aspect-ratio: auto;
    height: 100vh;
  }
}
