/* ============================================
   GEAR ON HARIDWAR — City Landing Page Styles
   Layered on top of ../styles.css
   ============================================ */

/* ── Decorative Font for "Haridwar" ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400;1,700&display=swap');

/* ── Haridwar Accent Colors ── */
:root {
  --hw-saffron: #E65100;
  --hw-saffron-dark: #BF360C;
  --hw-saffron-light: #FFF3E0;
  --hw-gold: #F9A825;
  --hw-gold-dark: #F57F17;
  --hw-gold-light: #FFFDE7;
  --hw-cream: #FFF8F0;
  --hw-teal: #00695C;
}

/* ── Decorative Haridwar Font Class ── */
.haridwar-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--hw-gold);
}

/* ============================================
   HW NAVBAR OVERRIDE
   ============================================ */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

/* ============================================
   HW HERO SECTION
   ============================================ */
.hw-hero {
  position: relative;
  min-height: clamp(520px, 100svh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(100px, 16vw, 140px) 0 clamp(48px, 8vw, 100px);
}

.hw-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hw-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hw-hero .container {
  position: relative;
  z-index: 2;
}

.hw-hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  color: #FFFFFF;
}

.hw-hero-content h1 {
  font-size: clamp(1.65rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.75);
}

.hw-hero-content h1 .haridwar-script {
  color: var(--hw-gold);
  font-size: 1.15em;
}

.hw-hero-content > p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: clamp(28px, 4vw, 36px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 1px 8px rgba(0, 0, 0, 0.7);
}

.hw-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.hw-hero-buttons .btn {
  width: min(100%, 280px);
  justify-content: center;
}

.hw-hero-buttons .btn-primary {
  background: var(--hw-saffron);
  box-shadow: 0 4px 20px rgba(230, 81, 0, 0.5);
  border-color: var(--hw-saffron);
}

.hw-hero-buttons .btn-primary:hover {
  background: var(--hw-saffron-dark);
  border-color: var(--hw-saffron-dark);
}

.hw-hero-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
}

.hw-hero-buttons .btn-outline:hover {
  background: #FFFFFF;
  color: var(--hw-saffron);
  border-color: #FFFFFF;
}

/* Floating Decorative Orbs */
.hw-hero-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  display: none;
}

.hw-hero-decor--ring {
  width: 280px;
  height: 280px;
  border: 2px solid rgba(249, 168, 37, 0.18);
  border-radius: 50%;
  top: 8%;
  right: 4%;
}

.hw-hero-decor--ring2 {
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: 12%;
  left: 3%;
}

.hw-hero-decor--dot {
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(249, 168, 37, 0.25);
  border-radius: 50%;
  top: 52%;
  left: 7%;
}

@media (min-width: 769px) {
  .hw-hero-buttons {
    flex-direction: row;
  }

  .hw-hero-buttons .btn {
    width: auto;
    max-width: none;
  }

  .hw-hero-decor {
    display: block;
  }
}

/* ============================================
   HW PRICING BANNER
   ============================================ */
.hw-pricing-banner {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hw-price-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--hw-gold-light) 0%, #FFFFFF 100%);
  border: 1px solid rgba(249, 168, 37, 0.3);
  border-radius: var(--radius-btn);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: var(--transition);
}

.hw-price-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hw-price-chip .price-amount {
  color: var(--hw-saffron);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ============================================
   HW PLACES TO VISIT
   ============================================ */
.hw-places {
  background: var(--hw-cream);
}

.hw-places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hw-place-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.hw-place-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.hw-place-card .place-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hw-place-card .place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hw-place-card:hover .place-image img {
  transform: scale(1.08);
}

.hw-place-card .place-image .place-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(100, 30, 5, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: var(--radius-btn);
  font-size: 0.78rem;
  font-weight: 600;
}

.hw-place-card .place-body {
  padding: 20px;
}

.hw-place-card .place-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.hw-place-card .place-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hw-place-card .place-body .place-tip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--hw-saffron);
  font-weight: 600;
}

.hw-place-card .place-body .place-tip svg {
  flex-shrink: 0;
}

/* ============================================
   HW WHY RENT SECTION
   ============================================ */
.hw-why-rent {
  background: #FFFFFF;
}

.hw-why-rent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hw-rent-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hw-rent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hw-saffron), var(--hw-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hw-rent-card:hover::before {
  transform: scaleX(1);
}

.hw-rent-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 81, 0, 0.2);
  transform: translateY(-4px);
}

.hw-rent-card .rent-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  background: var(--hw-saffron-light);
}

.hw-rent-card:nth-child(even) .rent-icon {
  background: var(--hw-gold-light);
}

.hw-rent-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.hw-rent-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   HW FINAL CTA
   ============================================ */
.hw-final-cta {
  background: linear-gradient(135deg, #5D1A00 0%, #8D3B00 40%, #BF360C 70%, var(--hw-gold-dark) 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.hw-final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 168, 37, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hw-final-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hw-final-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hw-final-cta h2 .haridwar-script {
  color: var(--hw-gold);
}

.hw-final-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.hw-final-cta .btn-primary {
  background: var(--hw-saffron);
  border-color: var(--hw-saffron);
  box-shadow: 0 4px 20px rgba(230, 81, 0, 0.5);
  position: relative;
  z-index: 1;
}

.hw-final-cta .btn-primary:hover {
  background: var(--hw-saffron-dark);
  border-color: var(--hw-saffron-dark);
}

/* ── City card link wrapper ── */
.hw-city-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

/* ── Haridwar highlight ── */
.hw-highlight {
  color: var(--hw-saffron);
  font-weight: 700;
}

/* ============================================
   RESPONSIVE — TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hw-places-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hw-why-rent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hw-final-cta h2 {
    font-size: 2rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  .hw-pricing-banner {
    gap: 10px;
    margin-bottom: 28px;
  }

  .hw-price-chip {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hw-price-chip .price-amount {
    font-size: 1rem;
  }

  .hw-places-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hw-place-card .place-image {
    height: 200px;
  }

  .hw-why-rent-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hw-rent-card {
    padding: 20px 16px;
  }

  .hw-rent-card .rent-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .hw-rent-card h3 {
    font-size: 0.95rem;
  }

  .hw-rent-card p {
    font-size: 0.82rem;
  }

  .hw-final-cta {
    padding: 48px 0;
  }

  .hw-final-cta h2 {
    font-size: 1.6rem;
  }

  .hw-final-cta p {
    font-size: 0.92rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  .hw-pricing-banner {
    flex-direction: column;
    align-items: center;
  }

  .hw-price-chip {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .hw-places-grid {
    gap: 12px;
  }

  .hw-place-card .place-image {
    height: 160px;
  }

  .hw-place-card .place-body {
    padding: 14px;
  }

  .hw-place-card .place-body h3 {
    font-size: 1rem;
  }

  .hw-place-card .place-body p {
    font-size: 0.82rem;
  }

  .hw-why-rent-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hw-rent-card {
    padding: 18px 14px;
  }

  .hw-final-cta h2 {
    font-size: 1.3rem;
  }

  .hw-final-cta p {
    font-size: 0.85rem;
  }
}
