/* ===== HERO SECTION ===== */
.areas-hero {
  position: relative;
  height: 60vh;
  background: url('../images/areas-we-cover-header.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}

/* Gradient button reused */
.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: #fff !important;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== AREA GRID ===== */
.areas-grid {
  max-width: 1200px;
  margin-inline: auto;
}

.area-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.area-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.area-info {
  padding: 1.2rem 1.5rem;
}

.area-info h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.area-info p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Book Now: base (ensure this exists) ===== */
.book-now {
  position: relative;
  overflow: hidden; /* keep animated stripe inside */
  background: var(--gradient-primary);
  padding: 4rem 1rem;
  margin-top: 3rem;
  color: var(--text-inverse);
}

/* keep content on top of animated stripe */
.book-now .container {
  position: relative;
  z-index: 3;
}

.book-now .btn {
  display: inline-block;
  background: rgba(255,255,255,0.08); /* lightly translucent to contrast with gradient */
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  z-index: 4;
}

/* Hover: no white full background — subtle lighten + lift + glow */
.book-now .btn:hover,
.book-now .btn:focus {
  background: rgba(255,255,255,0.14); /* just a touch lighter, still translucent */
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(81,47,144,0.14); /* purple-tinted glow */
  color: #fff !important;
  outline: none;
}

/* Active state (pressed) */
.book-now .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(81,47,144,0.12);
}

/* Optional: small decorative underline under CTA text on hover */
.book-now .btn .cta-underline {
  display: inline-block;
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.85);
  margin-left: 8px;
  vertical-align: middle;
  transition: width 0.22s ease;
}
.book-now .btn:hover .cta-underline { width: 22px; }

/* ===== Accessibility: reduce motion preference ===== */
@media (prefers-reduced-motion: reduce) {
  .book-now .btn { transition: none; transform: none; box-shadow: none; }
}

.magnum-intro {
  position: relative;
  background-color: #fff;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.magnum-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9); /* allow subtle pattern visibility */
  border-left: 6px solid var(--primary-dark);
  border-radius: 12px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden; /* required for ::before effect */
}

.magnum-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(164,143,96,0.05), rgba(81,47,144,0.05)),
    repeating-linear-gradient(45deg, rgba(81,47,144,0.03) 0px, rgba(81,47,144,0.03) 2px, transparent 2px, transparent 18px);
  z-index: 0;
  opacity: 1;
}

.magnum-inner > * {
  position: relative;
  z-index: 2; /* ensures text and logo appear above pattern */
}


.magnum-logo {
  max-width: 150px;
  margin-bottom: 25px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.magnum-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.magnum-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.magnum-text {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.magnum-text strong {
  color: var(--primary-dark);
}

/* Subtle hover glow for interactivity */
.magnum-inner:hover {
  box-shadow: 0 10px 40px rgba(81,47,144,0.15);
  transition: all 0.4s ease;
}

.heading {
  color: var(--color-accent);
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #198754, #5fd068);
}

.bg-gradient-info {
  background: linear-gradient(135deg, #0dcaf0, #5bc0de);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #ffc107, #ffcd39);
}

.bg-gradient-danger {
  background: linear-gradient(135deg, #dc3545, #f87171);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, #6c757d, #adb5bd);
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .feature-card {
    padding: 1.5rem 1rem;
  }
  .icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
