/* --- HERO SLIDER DOTS & ARROWS --- */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
}
.slider-dot.active {
  background: #f5b800;
  box-shadow: 0 0 0 2px #222;
  transform: scale(1.25);
}

/* Hide arrows by default, show on hero hover */
.slider-controls {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.hero:hover .slider-controls,
.hero:focus-within .slider-controls {
  opacity: 1;
  pointer-events: auto;
}
.slider-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
.slider-btn:hover {
  background: #ffe066;
  color: #111;
}
.contact-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
}
.contact-modern-info {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  color: #555;
  font-size: 1.1rem;
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-modern-info h2 {
  color: #f5b800;
  font-size: 2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.07rem;
}
.contact-icon {
  color: #f5b800;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
}
.contact-list a {
  color: #222;
  text-decoration: none;
  border-bottom: 1px dotted #f5b800;
  transition: color 0.2s, border 0.2s;
}
.contact-list a:hover {
  color: #f5b800;
  border-bottom: 1px solid #f5b800;
}
.contact-modern-form {
  flex: 2 1 340px;
  min-width: 280px;
  max-width: 480px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-modern-form form {
  width: 100%;
}
.form-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.form-group {
  flex: 1 1 160px;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 0.4rem;
  color: #444;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 1rem;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  font-size: 1rem;
  background: #fafafa;
  outline: none;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid #f5b800;
}
.contact-modern-form button[type="submit"] {
  padding: 0.7rem 1.2rem;
  background: #f5b800;
  color: #222;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5rem;
}
.contact-modern-form button[type="submit"]:hover {
  background: #ffe066;
  color: #111;
}
.form-feedback {
  font-size: 1.05rem;
  margin-top: 0.7rem;
}

.footer {
  background: #fff;
  color: #888;
  font-size: 1rem;
  margin-top: 0;
  padding: 0;
  border-top: 1px solid #eee;
}
.footer-main-modern {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem 0.7rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer-legal-modern {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.97rem;
  color: #888;
  text-align: left;
}
.footer-copy-modern {
  font-size: 0.97rem;
  color: #aaa;
  text-align: right;
}
@media (max-width: 800px) {
  .contact-modern {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .footer-main-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1.2rem 1rem 0.7rem 1rem;
  }
  .footer-copy-modern {
    text-align: left;
  }
}
/* Renamed from coming-soon.css. Expanded for multi-section, slider, and contact form. */

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  min-height: 100vh;
}

.header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 1.5rem 0 1rem 0;
  text-align: center;
}
.logo {
  max-width: 200px;
  height: auto;
}

.hero {
  position: relative;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
}
.hero-slider-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: background-image 0.7s cubic-bezier(.77,0,.18,1);
  filter: brightness(0.7) saturate(1.1);
}
.hero-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3.5rem 1rem 2.5rem 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: rgba(0,0,0,0.44);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}
.logo-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  width: 220px;
  height: 220px;
  max-width: 90vw;
  max-height: 220px;
}
.logo-bg .logo {
  max-width: 170px;
  max-height: 170px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.18));
}
.hero-overlay-content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 1px 0 #222;
}
.hero-overlay-content .subtitle {
  font-size: 1.25rem;
  color: #f7f7f7;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.32), 0 1px 0 #222;
}
.hero-caption {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  background: rgba(0,0,0,0.32);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  display: inline-block;
  min-width: 220px;
  max-width: 90vw;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero .slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
  margin: 0;
}
.hero .slider-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
.hero .slider-btn:hover {
  background: #ffe066;
  color: #111;
}



.info-section {
  background: #f7f7f7;
  padding: 2.5rem 1rem 2.5rem 1rem;
  text-align: center;
}
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  max-width: 320px;
  flex: 1 1 260px;
  min-width: 220px;
  text-align: left;
}
.info-card h3 {
  margin-top: 0;
  color: #f5b800;
  font-size: 1.2rem;
}

.contact-section {
  background: linear-gradient(120deg, #fffbe6 60%, #f7f7f7 100%);
  padding: 2.5rem 0 2.5rem 0;
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
}
.contact-form-wrap {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem 2.5rem 2rem;
  margin-right: 0;
}
.contact-section h2 {
  color: #f5b800;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: left;
  letter-spacing: 0.5px;
}
.contact-section form {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-align: left;
}
.contact-details {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  color: #555;
  font-size: 1.1rem;
  margin-top: 0;
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem 2.5rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
}
.contact-details h3 {
  margin-top: 0;
  color: #f5b800;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2px;
}
.contact-details p {
  margin-bottom: 1.2rem;
}
.contact-details a {
  color: #f5b800;
  text-decoration: none;
}
.contact-details a:hover {
  text-decoration: underline;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #444;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 1rem;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  font-size: 1rem;
  background: #fafafa;
  outline: none;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid #888;
}
.contact-section button[type="submit"] {
  padding: 0.7rem 1.2rem;
  background: #f5b800;
  color: #222;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-section button[type="submit"]:hover {
  background: #ffe066;
  color: #111;
}
.contact-details {
  margin-top: 2rem;
  color: #555;
  font-size: 1.1rem;
}

.footer {
  background: #fff;
  color: #888;
  font-size: 1rem;
  margin-top: 0;
  padding: 0;
  border-top: 1px solid #eee;
}
.footer-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 0.1rem 1.5rem;
  text-align: center;
  font-size: 0.96rem;
  color: #888;
  letter-spacing: 0.01em;
}
.footer-legal {
  line-height: 1.3;
  font-size: 0.96rem;
  color: #888;
}
.footer-sub {
  background: #f7f7f7;
  text-align: center;
  padding: 0.2rem 1.5rem 0.4rem 1.5rem;
  font-size: 0.92rem;
  color: #aaa;
  border-top: 1px solid #eee;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .info-cards {
    flex-direction: column;
    align-items: center;
  }
  .slider {
    max-width: 100vw;
    border-radius: 0;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 1rem 0 0.7rem 0;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .slide,
  .slide img {
    height: 180px;
  }
  .slider {
    border-radius: 0;
  }
  .slide-caption {
    font-size: 0.95rem;
    padding: 0.7rem 0.7rem;
    border-radius: 0 0 12px 12px;
  }
}
