
        /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  /*background: linear-gradient(135deg, #1e293b 0%, #334155 100%);*/
  background: linear-gradient(135deg, #3E2723 0%, #6D4C41 100%);
  color: #e2e8f0;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Hero Section-mobile */
.hero-section-mobile {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  height: 100vh;
  align-items: center;
}

.hero-video,
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.hero-video {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  /*background: linear-gradient(135deg, rgba(30,41,59,0.8) 0%, rgba(51,65,85,0.9) 100%);*/
  background: linear-gradient(135deg, rgba(62, 39, 35, 0.7) 0%, rgba(109, 76, 65, 0.8) 100%);
  z-index: -1;
}

.banner-content {
  color: #fff;
  padding-right: 40px;
  z-index: 1;
}

.banner-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #DAA520, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Highlight Features */
.highlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: #DAA520;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

/* Callback Form */
.callback-form-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  padding: 40px;
  border: 1px solid #334155;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-subtitle {
  color: #64748b;
  font-size: 1rem;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.required::after {
  content: " *";
  color: #ef4444;
}

input {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  background: #fff;
}

input:focus {
  outline: none;
  border-color: #DAA520;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}

input::placeholder {
  color: #9ca3af;
}

.submit-btn {
  background: linear-gradient(45deg, #DAA520, #DAA520);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245,158,11,0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

 


/* Welcome Section */
.welcome-section {
  /*background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);*/
  background: linear-gradient(135deg, #4B3621 0%, #7B4F36 100%);
  padding: 80px 20px;
  /*max-width: 1200px;*/
  margin: 0 auto;
  text-align: center;
}

.welcome-container {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}

.welcome-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.welcome-highlight {
  background: linear-gradient(45deg, #DAA520, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.scroll-btn {
  background: linear-gradient(45deg, #DAA520, #DAA520);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.scroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245,158,11,0.3);
}

.top-btn {
    text-align: center;
}


/* Amenities & Highlights */
.amenities-section,
.highlights-section {
  padding: 80px 20px;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

.amenities-section {
  /*background: linear-gradient(135deg, #1e293b 0%, #334155 100%);*/
  background: linear-gradient(135deg, #3E2723 0%, #6D4C41 100%);
}

.highlights-section {
  /*background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);*/
  background: linear-gradient(135deg, #4B3621 0%, #7B4F36 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #DAA520;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(251,191,36,0.2);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  /*box-shadow: 0 10px 30px rgba(251,191,36,0.2);*/
}

.feature-icon-large {
  width: 50px;
  height: 50px;
  background: #DAA520;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon-large svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.feature-text {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

/* Centered Form Section */
.form-section {
  /*background: linear-gradient(135deg, #1e293b 0%, #334155 100%);*/
  background: linear-gradient(135deg, #3E2723 0%, #6D4C41 100%);
  padding: 80px 20px;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

.centered-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  padding: 40px;
  border: 1px solid #334155;
}

.hero-section-mobile,
.hero-section {
    display: none;
}

/* Responsive */

@media (min-width: 969px) {
    .hero-section {
        display: block; 
    }
}

@media (max-width: 968px) {
    
  .hero-section-mobile {
    display: block; 
    }
  .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
    height: auto;
  }

  .banner-content {
    padding-right: 0;
    /*text-align: center;*/
  }

  .banner-heading {
    font-size: 2.5rem;
    text-align: center;
  }
  .banner-subtitle {
      text-align: center;
  }

  .highlight-features {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 40px auto 0;
  }

  .welcome-title,
  .section-title {
    font-size: 2.2rem;
  }

  .welcome-section,
  .amenities-section,
  .highlights-section,
  .form-section {
    padding: 60px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .callback-form-container {
    margin: 40px 0px;
}


}

@media (max-width: 480px) {
  .banner-heading {
    font-size: 2rem;
  }

  .welcome-title,
  .section-title {
    font-size: 1.8rem;
  }

  .welcome-description,
  .feature-text {
    font-size: 1rem;
  }

  .centered-form-container {
    padding: 30px 20px;
  }

  input {
    padding: 12px 14px;
  }
}
