/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  /* Uses viewport height so it scales perfectly, leaving room for the navbar */
  min-height: calc(100vh);
  display: flex;
  align-items: center;
  padding: 80px 5% 40px;
}

.hero-container {
  max-width: 1200px; /* Locked to your global section width */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

/* --- Left Side: Text Styling --- */
.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3.8rem; /* Slightly larger for a confident, editorial feel */
  font-weight: 700; /* Snapped to your loaded Plus Jakarta Sans weight */
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.highlight {
  color: var(--secondary-gold);
}

.hero-content p {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* --- Button Grouping --- */
.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Secondary Outlined Button */
.btn-secondary {
  background-color: transparent;
  color: var(--primary-navy);
  border: 1px solid var(--primary-navy);
}

.btn-secondary:hover {
  background-color: rgba(18, 41, 57, 0.05);
  transform: translateY(-2px); /* A smooth, premium lift effect */
}

/* --- Right Side: Visual Anchor --- */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.carousel-wrapper {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px; /* Crisp, clean spacing between the photo and the dots */
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 6;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid rgba(18, 41, 57, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

/* The Images */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* --- Hero Pagination Dots (Clean & Minimalist) --- */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  /* Absolute positioning and dark background removed! */
}

.hero-dot {
  width: 6px;
  height: 6px;
  /* Changed to a soft navy to contrast beautifully against your off-white background */
  background-color: rgba(18, 41, 57, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background-color: var(--secondary-gold);
  transform: scale(1.2);
}
/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 900px) {
  /* --- Hero Mobile (Centered & Action-Focused) --- */
  .hero {
    padding: 60px 5%;
    text-align: center;
    /* Lets the content center perfectly on the phone screen */
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero-container {
    flex-direction: column;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-content p {
    margin: 0 auto 35px auto;
    font-size: 1.1rem;
    max-width: 95%;
    color: #555555;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px; /* Constrains it so it looks elegant, not stretched */
    text-align: center;
    padding: 16px 20px; /* Taller buttons for easier thumb-tapping */
    font-size: 1.05rem;
  }

  /* --- Visual Anchor Mobile --- */
  .carousel-wrapper {
    /* This hides the entire slideshow on phones, 
           keeping the focus 100% on the Call to Action */
    display: none;
  }
}
