* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  animation: fadeInBody 1s ease-in;
}

@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

header.top-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  background-color: #f5ee8c;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-logo {
  max-height: 40px;
  border-radius: 8px;
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: #000000;
}

.nav-menu {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 10px 0;
}

.nav-menu a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #cce6cc;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    padding: 10px 20px;
    background: #f5ee8c;
    border-top: 1px solid #ccc;
  }

  .nav-menu.show {
    display: flex;
    animation: fadeInMenu 0.3s ease-in-out;
  }

  @keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}




/* Main Container */
.container {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  text-align: center;
  animation: slideUp 1s ease-in-out;
  margin: 0 auto;
}

@keyframes slideUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
  animation: scaleIn 1.2s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

h1, h2, p {
  animation: fadeInText 1s ease forwards;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 2.2em;
  color: #222;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.6em;
  color: #444;
  margin-top: 20px;
}

.info {
  font-size: 1.1em;
  color: #555;
  margin: 8px 0;
}

.rate {
  font-size: 1.8em;
  color: #007b00;
  margin: 20px 0;
  font-weight: bold;
}

.car-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}


@keyframes imageZoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.car-image:hover {
  transform: scale(1.02);
}



.call-button {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 14px 32px;
  margin-top: 20px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-overlay{
    display:none; position:fixed; inset:0;
    background:rgba(0,0,0,.6); z-index:9999;
    justify-content:center; align-items:center;
  }
  .popup-box{
    background:#fff; padding:20px 25px; border-radius:10px;
    max-width:320px; width:90%; text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
  }
  .popup-box input{width:100%; padding:10px; margin:10px 0;}
  .popup-box button{padding:8px 16px; margin:4px;}

.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  animation: fadeInText 1s ease;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.footer {
  margin-top: 40px;
  font-size: 1em;
  color: #888;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.6em;
  }

  .call-button {
    padding: 12px 24px;
    font-size: 1em;
  }

  iframe {
    height: 300px;
  }
}

/* Container for cards */
.container-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
}

.travel-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  text-align: left;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.card-inner > div {
  flex: 1;
  min-width: 220px;
}

.middle-info {
  text-align: center;
}

.right-info {
  text-align: right;
}

.rating-badge {
  background-color: #e6f4ea;
  color: green;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 5px;
}

.travel-card a {
  display: inline-block;
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1em;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  .card-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .middle-info,
  .right-info {
    text-align: left;
  }

  .travel-card a {
    width: 100%;
    text-align: center;
  }
}
