/* === General Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f4f6f9;
  color: #2c3e50;
  line-height: 1.6;
}

/* === Header === */
.header {
  background-color: #1e272e;
  color: white;
  padding: 1rem 2rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allows wrap if too narrow */
}

@media (max-width: 600px) {
  .header-container {
    flex-direction: row;
    gap: 1rem;
  }

  .nav {
    justify-content: center;
  }
}

.logo {
  max-height: 60px;
  max-width: 250px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  color: #ffffff;
}

/* === Contact Shortcut === */
.contact-shortcut {
  background: linear-gradient(to right, #ffe259, #ffa751);
  padding: 4rem 2rem;
  text-align: center;
  color: #1e272e;
}

.contact-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-wrapper p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #333;
}

.shortcut-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.whatsapp {
  background-color: #25D366;
  color: white;
}

.btn.call {
  background-color: #2980b9;
  color: white;
}

/* === Gallery Section === */
.gallery-section {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #1e272e;
}

.slider {
  direction: ltr !important; /* Force left-to-right for slider layout */
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 300px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Features Section === */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
}

.feature {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature i {
  font-size: 2rem;
  color: #f1c40f;
  margin-bottom: 0.5rem;
}

/* === Footer === */
.footer {
  background: #1e272e;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}
