/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1f2b35;
  color: #e0e6ed;
  line-height: 1.6;
}

/* === Navbar === */
.navbar {
  background: #000;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo .logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 200px;
  background: transparent;
  mix-blend-mode: normal;
}

.logo .logo-img[alt]:after {
  content: attr(alt);
  display: block;
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 200px;
  background: transparent;
  mix-blend-mode: normal;
}

.hamburger {
  font-size: 2rem;
  cursor: pointer;
  display: none;
  padding: 8px;
  background: none;
  border: none;
  color: white;
  min-height: 44px;
  min-width: 44px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

nav a[href^="tel"] {
  background-color: #ffd700;
  color: #111;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

nav a[href^="tel"]:hover {
  background-color: #ffcf00;
  transform: translateY(-1px);
}

/* === Hero Slider Section === */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-bottom: 0;
}

.hero .slide {
  display: none;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.hero .slide.active {
  display: block;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero .dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.hero .dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero .dot.active {
  background-color: #ffd700;
}

/* === Modern Text Section === */
.modern-hero-text {
  text-align: center;
  padding: 100px 20px 80px;
  background: rgba(31, 43, 53, 0.85);
  color: #f5f5f5;
}

.modern-hero-text h1 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* === Glow Button === */
.glow-btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
  background: #ffd700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
  transition: all 0.3s ease-in-out;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.glow-btn:hover {
  background: #ffcf00;
  box-shadow: 0 0 25px rgba(255, 215, 0, 1);
  transform: translateY(-2px);
}

.glow-btn:active {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* === Info Section === */
.info-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
  color: #1f2b35;
}

.info-img,
.info-text {
  flex: 1 1 300px;
  max-width: 500px;
  padding: 15px;
}

.info-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.info-text h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.info-text p {
  font-size: 1em;
  margin-bottom: 30px;
}

/* === Reserve Button === */
.reserve-btn {
  padding: 12px 25px;
  font-size: 1em;
  font-weight: bold;
  background-color: #ffd700;
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  transition: 0.3s ease;
}

.reserve-btn:hover {
  background-color: #ffcf00;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
}

/* === Why Choose Us === */
.why-choose {
  padding: 80px 20px;
  background-color: #f5f5f5;
  color: #1f2b35;
  text-align: center;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.why-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
}

.why-features {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.feature .icon {
  font-size: 2em;
  background-color: #1f2b35;
  color: #ffd700;
  padding: 15px;
  border-radius: 50%;
}

.feature h3 {
  margin-bottom: 8px;
}

/* === Warning Section === */
.warning-section {
  background-color: #ffe8e8;
  color: #1f2b35;
  padding: 60px 20px;
  text-align: center;
}

.warning-section h2 {
  color: #c0392b;
  font-size: 2em;
  margin-bottom: 20px;
}

/* === Home Button === */
.back-to-home {
  margin-bottom: 20px;
}

.home-btn {
  display: inline-block;
  background-color: #1f2b35;
  color: #ffd700;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.home-btn:hover {
  background-color: #ffd700;
  color: #1f2b35;
  transform: translateY(-2px);
}

/* === Experience Section === */
.experience {
  padding: 80px 20px;
  text-align: center;
  background-color: #f5f5f5;
  color: #1f2b35;
}

.experience-subtext {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1em;
  color: #444;
}

.exp-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.exp-card {
  background-color: #fff;
  color: #1f2b35;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 300px;
  text-align: center;
  transition: 0.3s ease;
}

.exp-card:hover {
  transform: scale(1.05);
}

.exp-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  background-color: #ffd700;
  color: #1f2b35;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
}

.exp-btn {
  background-color: #ffd700;
  color: #1f2b35;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
  transition: 0.3s ease;
}

.exp-btn:hover {
  background-color: #fbbf24;
  transform: scale(1.05);
}

/* === Contact Section === */
.contact-section {
  background: #1f2b35;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #ffd700;
}

.contact-section .subtext {
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contact-options p {
  margin: 10px 0;
  font-size: 1.1em;
}

.contact-options a {
  color: #ffd700;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid #ffd700;
  border-radius: 25px;
  display: inline-block;
  margin: 5px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-options a:hover {
  background: #ffd700;
  color: #1f2b35;
  transform: translateY(-1px);
}

.contact-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

/* === Pricing Section === */
.pricing-section {
  background-color: #2b3a48;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

/* === Disclaimer Section === */
.disclaimer-section {
  background-color: #c0392b;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid #444;
}

/* === Footer === */
.site-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

/* === Responsive Enhancements === */
@media screen and (max-width: 768px) {
  /* Layout adjustments */
  .info-block,
  .why-container,
  .exp-cards {
    flex-direction: column;
    align-items: center;
  }

  /* Hero section mobile optimization */
  .hero {
    height: 400px;
  }

  .hero .slide,
  .hero .slide.active {
    height: 400px;
  }

  /* Navigation mobile styles */
  .hamburger {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111;
    padding: 20px 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  nav a {
    padding: 15px 25px;
    border-top: 1px solid #333;
    margin: 0;
    min-height: 50px;
    font-size: 1.1em;
  }

  nav.show {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  nav a[href^="tel"] {
    background: #ffd700;
    color: #111;
    font-weight: bold;
    margin: 10px 20px;
    border-radius: 25px;
    border-top: none;
    font-size: 1.2em;
    text-align: center;
  }

  nav a[href^="tel"]:hover {
    background: #ffcf00;
  }

  /* Improved contact section for mobile */
  .contact-options {
    gap: 15px;
  }

  .contact-options a {
    width: 100%;
    max-width: 280px;
    padding: 16px 20px;
    font-size: 1.1em;
  }

  /* Hero text adjustments */
  .modern-hero-text {
    padding: 60px 15px 50px;
  }

  .modern-hero-text h1 {
    font-size: 1.8em;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .glow-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Slide captions mobile optimization */
  .slide-caption {
    bottom: 10%;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .slide-caption h2 {
    font-size: 1.3em;
    line-height: 1.2;
  }

  .caption {
    font-size: 1em;
  }

  /* Sections padding adjustments */
  .info-block,
  .why-choose,
  .experience {
    padding: 50px 15px;
  }

  .contact-section,
  .pricing-section,
  .disclaimer-section {
    padding: 40px 15px;
  }

  .warning-section {
    padding: 40px 15px;
  }

  /* Typography adjustments */
  .why-choose h2,
  .experience h2,
  .contact-section h2,
  .pricing-section h2,
  .disclaimer-section h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .info-text h2 {
    font-size: 1.6em;
    text-align: center;
  }

  .info-text p {
    text-align: center;
    margin-bottom: 25px;
  }

  /* Experience cards mobile layout */
  .exp-cards {
    gap: 20px;
  }

  .exp-card {
    width: 100%;
    max-width: 320px;
    padding: 25px 15px;
  }

  .exp-icon {
    margin: 0 auto 15px;
  }

  /* Contact section mobile */
  .contact-options p {
    font-size: 1em;
    margin: 15px 0;
    word-break: break-word;
  }

  /* Pricing section mobile */
  .pricing-details p {
    font-size: 1em;
    margin: 8px 0;
  }

  /* Why choose us mobile */
  .feature {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .feature .icon {
    align-self: center;
  }

  /* Images responsive */
  .info-img,
  .why-img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .info-img img,
  .why-img img {
    max-width: 100%;
    height: auto;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  .modern-hero-text h1 {
    font-size: 1.5em;
  }

  .slide-caption h2 {
    font-size: 1.1em;
  }

  .hero {
    height: 300px;
  }

  .hero .slide,
  .hero .slide.active {
    height: 300px;
  }

  .navbar {
    padding: 8px 15px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hamburger {
    font-size: 1.6rem;
  }
}

/* === Accessibility === */
a:focus, button:focus {
  outline: 2px solid #ffd700;
}

/* === Slide Caption (for Slide 3 Only) === */
.slide-caption {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: 90%;
}

.slide-caption h2 {
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.caption {
  font-size: 1.3em;
  color: #ffffff;
  margin-top: 10px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}