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

/* BODY */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #0b0b0c;
  color: #fff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.navbar h1 {
  color: #d8a13a;
  font-size: 22px;
}

.navbar nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #d8a13a;
}

/* HERO BASE */
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.small-hero {
  height: 50vh;
}

.hero-content {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p {
  opacity: 0.8;
}

/* HERO BACKGROUNDS (FIXED ISSUE) */

/* HOME */
.home-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c') center/cover no-repeat;
}

/* LOGISTICS */
.logistics-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1503376780353-7e6692767b70') center/cover no-repeat;
}

/* PROPERTY */
.property-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1568605114967-8130f3a36994') center/cover no-repeat;
}

/* HEALTHCARE */
.healthcare-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1580281657527-47a3d0e5bfc8') center/cover no-repeat;
}

/* EVENT */
.event-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3') center/cover no-repeat;
}

/* CONTACT */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1556761175-4b46a572b786') center/cover no-repeat;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  background: linear-gradient(45deg, #d8a13a, #b88428);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin: 60px 0 30px;
}

.section-title h2 {
  font-size: 32px;
}

/* SERVICES GRID */
.services {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 14px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.card:hover {
  transform: translateY(-8px);
  border: 1px solid #d8a13a;
}

/* BOOKING FORM */
.booking {
  max-width: 700px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.booking input,
.booking textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: none;
  outline: none;
}

.booking textarea {
  height: 120px;
}

.booking button {
  width: 100%;
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  margin-top: 40px;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  color: white;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
  }

  .navbar nav {
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 26px;
  }
.logo img {
  height: 40px;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
.properties {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 25px;
}

.property-card {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-info {
  padding: 20px;
}

.property-info h3 {
  margin-bottom: 10px;
}

.price {
  color: #d8a13a;
  font-weight: bold;
  margin: 10px 0;
}

.property-card:hover {
  transform: translateY(-8px);
}
}