* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f4f6f9;
  color: #333;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("/img/virtual-tour-hero.png"); /* your new image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  max-width: 800px;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 14px;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 40px;
}
.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 12px 30px rgba(0, 114, 255, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: pulse 2.5s infinite;
}

.explore-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 114, 255, 0.5);
}

.explore-btn .arrow {
  transition: transform 0.3s ease;
}

.explore-btn:hover .arrow {
  transform: translateX(6px);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 114, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 114, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 114, 255, 0);
  }
}

html {
  scroll-behavior: smooth;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.hero p {
  max-width: 620px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
}

.scroll-indicator {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.85;
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.tour-card {
  display: flex;
  flex-flow: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card .content {
  padding: 16px;
  text-align: center;
}

.tour-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

footer span {
  color: #fff;
}

/* MOBILE */
@media (max-width: 600px) {
  .tour-card img {
    height: 180px;
  }
}
/* HEADER */
.site-header {
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.site-header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

.site-header .logo img {
  height: 40px;
}

.site-header .nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.site-header .nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.site-header .nav ul li a:hover {
  color: #00c6ff;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
}

/* Responsive Mobile Navigation */
@media (max-width: 768px) {
  .site-header .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-header .nav ul {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.active {
    max-height: 300px; /* enough to show all links */
  }
}
#contact {
  padding-top: 100px; /* header height */
}
/* Hero specific for contact page */
.contact-hero {
  position: relative;
  min-height: 50vh;
  background-image: url("./img/contact-hero.jpg"); /* optional image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

form {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

form h2 {
  margin-bottom: 24px;
  font-size: 1.8rem;
  color: #0072ff;
}

label {
  margin-bottom: 6px;
  font-weight: 500;
}

input,
textarea {
  padding: 12px 14px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0072ff;
}

button {
  padding: 14px 0;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 35px rgba(0, 114, 255, 0.4);
}

.form-response {
  margin-top: 12px;
  font-size: 0.95rem;
  color: green;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  align-items: center;
}

.contact-info h2 {
  color: #0072ff;
  margin-bottom: 20px;
}

.contact-info a {
  color: #0072ff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
