/* HouseStar Main Styles */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #1a1a1a;
  color: #fff;
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  @media screen and (max-width: 700px) {
    display: none;
    
  }
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #E30613;
}
.book-btn {
  background: #E30613;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(227,6,19,0.3);
  transition: all 0.3s ease;
}
.interactive-btn {
  transition: all 0.3s ease;
}

.interactive-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.interactive-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  max-width: 600px;
  margin: 2rem auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}
.hero-btn {
  background: #E30613;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(227,6,19,0.3);
  transition: all 0.3s ease;
  display: inline-block;
}
.hero-btn:hover {
  background: #FF3333;
}

.core-services {
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
  position: relative;
}

.core-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/housestarhero1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
  z-index: -1;
  opacity: 0.5;
}
.core-services h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem 1rem 1.2rem 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}
.service-card span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.9rem;
  color: #eee;
}

.why-choose-us {
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/housestarhero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
  z-index: -1;
  opacity: 0.5;
}
.why-choose-us h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.why-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.why-col {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem 1rem 1.2rem 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  min-width: 220px;
  transition: all 0.3s ease;
}
.why-col:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.why-col h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.why-col p {
  color: #fff;
  font-size: 1rem;
}

.footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer a {
  color: #E30613;
  text-decoration: none;
  font-weight: 600;
}

.services-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1rem 2rem 1rem;
}
.services-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}
.service-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.service-section h2 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.service-section p {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.service-book-btn {
  background: #E30613;
  color: #fff;
  padding: 0.7rem 1.7rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(227,6,19,0.10);
  transition: background 0.2s;
  display: inline-block;
}
.service-book-btn:hover {
  background: #FF3333;
}

.book-main {
  max-width: 500px;
  margin: 0 auto;
  padding: 2.5rem 1rem 2rem 1rem;
}
.book-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.book-contact {
  text-align: center;
  margin-bottom: 2rem;
}
.book-contact a {
  color: #E30613;
  text-decoration: none;
  font-weight: 600;
}
.booking-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #fff;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  margin-top: 0.1rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #E30613;
  outline: none;
}
.submit-btn {
  background: #E30613;
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(227,6,19,0.12);
  transition: background 0.2s;
  display: block;
  margin: 1.2rem auto 0 auto;
}
.submit-btn:hover {
  background: #FF3333;
}
#form-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  color: #E30613;
}

@media (max-width: 700px) {
  .nav-container {
    /* flex-direction: column; */
    gap: 0.5rem;
  }
  .why-columns {
    flex-direction: column;
    gap: 1.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-main {
    padding: 1.2rem 0.5rem;
  }
  .service-section {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

@media (max-width: 600px) {
  .book-main {
    padding: 1.2rem 0.5rem;
  }
  .booking-form {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 1.2rem 0.5rem;
  }
}
