/* ===== BASE STYLES ===== */
:root {
  --primary: #FD9C00;
  --primary-dark: #e68a00;
  --dark: #222;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border-radius: 8px;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
              url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  min-height: 100vh;
  color: white;
}

.container-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  transition: var(--transition);
}

.container-menu.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.colorized {
  color: var(--primary);
}

.header-nav-menu ul {
  display: flex;
  gap: 25px;
}

.header-nav-menu a {
  color: white;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.header-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.header-nav-menu a:hover::after {
  width: 100%;
}

.burger-btn {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.burger-btn span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  left: 0;
  transition: var(--transition);
}

.burger-btn span:nth-child(1) { top: 0; }
.burger-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger-btn span:nth-child(3) { bottom: 0; }

.burger-btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.burger {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  padding: 80px 30px 30px;
  transition: var(--transition);
  z-index: 1000;
  overflow-y: auto;
}

.burger.active {
  right: 0;
}

.burger ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.burger a {
  color: white;
  font-size: 1.1rem;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ===== HERO SECTION ===== */
.description {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
}

.description .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.description .left {
  flex: 1;
  color: white;
}

.description .left h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.benefits-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
}

.benefits-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.description .right {
  flex: 1;
  margin-bottom: 30px;
}

.form {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form h2 {
  color: var(--dark);
  text-align: center;
  margin-bottom: 25px;
}

.form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(253, 156, 0, 0.2);
}

.form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.form button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===== MAIN CONTENT SECTIONS ===== */
main section {
  padding: 70px 0;
}

.main-text {
  text-align: center;
  background: #f9f9f9;
}

.main-text .container {
  max-width: 900px;
}

.main-text h2 {
  margin-bottom: 20px;
}

.main-text h3 {
  color: var(--primary);
  margin-bottom: 25px;
}

.main-text p {
  margin-bottom: 15px;
}

.main-text p span {
  display: block;
  margin-top: 10px;
  font-weight: 500;
}

/* More Benefits */
.more-benefits {
  background: var(--light);
}

.more-benefits .container {
  text-align: center;
}

.more-benefits h2 {
  margin-bottom: 40px;
}

.more-benefits .benefits-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.more-benefits .benefits-item {
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: block;
}

.more-benefits .benefits-item:hover {
  transform: translateY(-10px);
}

.more-benefits .benefits-item i {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.more-benefits .benefits-item p {
  font-size: 1.1rem;
}

/* Procedure */
.procedure {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
              url('https://images.unsplash.com/photo-1556388158-158ea5ccacbd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: white;
}

.procedure .container {
  position: relative;
  z-index: 1;
}

.procedure h2 {
  text-align: center;
  margin-bottom: 40px;
  color: white;
  position: relative;
  padding-bottom: 15px;
}

.procedure h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: white;
}

.procedure-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.procedure-list li {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.procedure-list li span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Washing Section */
#washing.our_parking {
  background: white;
  text-align: center;
}

#washing .container {
  max-width: 1000px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.price-item {
  background: white;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.price-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.price-item h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.price-item .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.procedure-list_box{
  display: contents;
}
/* Reservation */
.reservation {
  background: var(--primary);
  color: white;
  text-align: center;
}

.reservation h2 {
  color: white;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.reservation h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: white;
}

.reservation .form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reservation .form input {
  background: rgba(255, 255, 255, 0.9);
}

/* Where We */
.where_we .container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.map {
  flex: 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
}

.address {
  flex: 1;
}

.address h2 {
  margin-bottom: 25px;
}

.address p {
  margin-bottom: 20px;
}

/* Airport */
.airport .container {
  max-width: 1000px;
}

.airport h2 {
  text-align: center;
  margin-bottom: 10px;
}

.airport .small {
  text-align: center;
  margin-bottom: 40px;
  display: block;
  color: var(--gray);
}

.airport_description {
  display: flex;
  gap: 50px;
  align-items: center;
}

.airport_description .left {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.airport_description .right {
  flex: 1;
}

.airport_description h3 {
  margin-bottom: 20px;
}

/* Final Our Parking */
.our_parking:not(#washing) {
  background: var(--dark);
  color: white;
  text-align: center;
}

.our_parking:not(#washing) h2 {
  color: white;
  position: relative;
  padding-bottom: 15px;
}

.our_parking:not(#washing) h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.our_parking:not(#washing) .desc {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .description .container {
    margin-top: 30px;
    flex-direction: column;
  }
  
  .more-benefits .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .where_we .container {
    flex-direction: column;
  }
  
  .airport_description {
    flex-direction: column;
  }
  
  .price-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav-menu {
    display: none;
  }
  
  .burger-btn {
    display: block;
  }
  
  .procedure-list {
    grid-template-columns: 1fr;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .more-benefits .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .price-list {
    grid-template-columns: 1fr;
  }
  
  .description .left h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .form {
    padding: 25px;
  }
  
  .description .left h1 {
    font-size: 2rem;
  }
  
  .description .left p {
    font-size: 1.1rem;
  }
  
  .benefits-item {
    padding: 12px;
  }
  
  .procedure-list li {
    padding: 20px;
  }
  
  .map {
    height: 300px;
  }
}