* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}


.hero-bg {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out; /* same feel as your bottom slider */
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.hero-text,
nav {
  position: relative;
  z-index: 2;
}

/* NAVBAR */
nav {
  width: 100%;
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav .logo {
  font-size: 28px;
  font-weight: 50;
  color: white;
  letter-spacing: 1px;
}

.logo img {
    height: 50px;     /* adjust size */
    width: auto;      /* keeps proportions */
    margin-right: 10px; 
    vertical-align: middle;
}


nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

nav ul li a:hover {
  color: #e0e0e0;
}

/* HAMBURGER (for mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: white;
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

.hero-text h1 {
  font-size: 70px;
  font-weight: 10;
  margin-bottom: 20px;
  color:rgba(255, 255, 255, 0.8);
  text-shadow: 0px 0px 2px rgba(0,0,0,0.09);
}

.hero-text p {
  font-size: 19px;
  color:rgba(255, 255, 255, 0.8);
  text-shadow: 0px 0px 2px rgba(0,0,0,0.0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-text h1 {
    font-size: 45px;
  }
}

.contact-info {
  background: white;
  text-align: center;
  padding: 60px 20px;
}
.contact-info h2 { font-size: 2.7rem; color: rgb(42,165,118); margin-bottom: 10px; }
.contact-info p { color: #555; max-width: 700px; margin: 0 auto 40px; }
.info-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}
.info-box {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  width: 250px;
  transition: 0.3s;
}
.info-box:hover {
  transform: translateY(-5px);
  background: #e8fff6;
}

.info-box i { 
  font-size: 2rem;
  color: rgb(42,165,118);
  margin-bottom: 10px; 
}

.contact-icons a {
  color: #000;
  font-size: 28px;
  margin: 0 12px;
  transition: 0.3s;
}
.contact-icons  {
   padding: 30px;
}

.contact-icons a:hover { 
  color: rgb(42,165,118);
 }

.email-link {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #0dbbff; /* or your brand color */
}

.phone-number {
  text-decoration: none;
  color: black;
}

#map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 1.2s ease;
  background-color: #000;
}

#map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: brightness(80%);
}

/* clickable map text */
.map-toggle {
  color: rgb(0, 46, 49);
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.s ease;
}

.map-toggle:hover {
  color: rgb(0, 121, 94);
}

.directions-btn {
  position: absolute;
  top: 50px;
  right: 50px;
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #0a5cff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 19px;
  transition: 0.95s ease;
  z-index: 2;
}


.directions-btn:hover {
  background: #083ecf;          
  transform: scale(1.08);       
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


.contact-form-section {
  padding: 60px 20px;
  text-align: center;
  background: #0b0b0b;
  color: white;
}
.contact-form-section h2 {
  color: rgb(0, 236, 253);
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 2px solid transparent;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
  background-color: #1a1a1a;
  color: #fff; /* text color white */
  transition: border 0.4s ease, box-shadow 0.4s ease;
}

/* Smooth glowing border when clicked */
/* Smooth cyan glow on focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgb(0, 236, 253);
  box-shadow: 0 0 10px rgba(0, 236, 253, 0.2);
}


/* Submit button */
.submit-btn {
  background: transparent;
  border: 1px solid white;
  color: rgb(0, 236, 253);
  font-weight: bold;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Button hover effect */
.submit-btn:hover {
  background: rgba(0, 236, 253, 0.1);
  transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
}
.social-icons a {
  color: white;
  font-size: 22px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: rgb(0, 236, 253);
  transform: scale(1.1);
}