/* ===== PREMIUM VARIABLES ===== */
:root {
  --navy: #0a1f4b;
  --navy-light: #122660;
  --navy-dark: #060f26;
  --red: #ac151c;
  --red-light: #c9191f;
  --gold: #ffffff;
  --light: #f8f8f6;
  --white: #ffffff;
  --text-muted: #8a8a8a;
 
  --transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== BASE ===== */
body {
  
  color: #1a1a1a;
  background: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
 
  font-weight: 400;
}

/* ===== HERO ===== */
.shower-hero {
  position: relative;
  isolation: isolate;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

   

.shower-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--light), transparent);
  z-index: 2;
  pointer-events: none;
}

.shower-hero-container {
  position: relative;
  z-index: 3;
}

.shower-hero-content {
  max-width: 700px;
  position: relative !important;
}
  

.shower-hero-content p {
  
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.shower-hero-content h2 {
  
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.shower-hero-content h2 span {
  color: var(--gold);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(172,21,28,0.15);
  border: 1px solid rgba(172,21,28,0.4);
  border-radius: 50px;
  padding: 6px 18px;
  color: #ff9999;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-badge span.dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.btn-1 {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-1:hover::before { transform: translateX(100%); }
.btn-1:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(172,21,28,0.4); }

.btn-2 {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 36px;
  
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-2:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== HERO STATS ===== */
.hero-stats {
  position: relative;
  z-index: 4;
  background: var(--navy-dark);
  padding: 0;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--red);
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  transition: var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(172,21,28,0.08); }

.stat-num {
  
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  display: block;
}

/* ===== SECTION COMMONS ===== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.section-title {
  
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title .highlight {
  color: var(--red);
}

.section-title .gold {
  color: var(--gold);
}

.divider-line {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.8rem;
  position: relative;
}

.divider-line::after {
  content: '';
  position: absolute;
  left: 58px;
  top: 0;
  width: 10px;
  height: 3px;
  background: var(--gold);
}

/* ===== SECTION 1 — intro ===== */
.egr-intro {
  background: var(--light);
  padding: 100px 0 80px;
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
}

.egl-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.egl-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  margin-bottom: 10px;
  background: var(--white);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(10,31,75,0.05);
}

.egl-list li:hover {
  border-left-color: var(--gold);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(10,31,75,0.1);
}

.egl-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.egl-list li:hover::before { background: var(--gold); }

.image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,31,75,0.18);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.image-card:hover img { transform: scale(1.04); }

.image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,31,75,0.35) 100%);
  pointer-events: none;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(6,15,38,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 14px 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.image-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.image-badge p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.image-badge strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

/* ===== SECTION 2 — rapid response (dark bg) ===== */
.egr-rapid {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.egr-rapid::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}

.egr-rapid::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(172,21,28,0.1);
}

.egr-rapid .section-title { color: var(--white); }
.egr-rapid .intro-text { color: rgba(255,255,255,0.65); }

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(172,21,28,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--gold);
}

.feature-card h4 {
  
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ===== SECTION 3 — availability (parallax strip) ===== */
.egr-availability {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  overflow: hidden;
}

.egr-availability::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,15,38,0.96) 0%, rgba(10,31,75,0.88) 55%, rgba(172,21,28,0.7) 100%);
}

.egr-availability .container { position: relative; z-index: 2; }

.avail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.avail-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.avail-card:hover {
  background: rgba(172,21,28,0.15);
  border-color: rgba(172,21,28,0.4);
  transform: translateY(-3px);
}

.avail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(172,21,28,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.avail-card h5 {
  
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.avail-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}

.section-title.white { color: var(--white); }
.section-label.gold { color: var(--gold); }

.right-col-content {
  padding-left: 2.5rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--red) 0%, #7a0f13 100%);
  border-radius: 12px;
  padding: 32px 28px;
  margin-top: 2rem;
}

.cta-box h4 {
 
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-box .btn-1 {
  background: var(--white);
  color: var(--red);
}

.cta-box .btn-1:hover {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ===== GALLERY ===== */
.shower-gallery {
  background: var(--light);
  padding: 100px 0;
}

.shower-gallery .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.sg-slider-wrapper {
  position: relative;
}

.sg-slide {
  padding: 0 10px;
}

.sg-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: var(--transition);
  box-shadow: 0 10px 35px rgba(10,31,75,0.1);
}

.sg-slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 55px rgba(10,31,75,0.18);
}

/* slick arrows override */
.slick-prev, .slick-next {
  width: 48px;
  height: 48px;
  background: var(--navy) !important;
  border-radius: 50%;
  z-index: 10;
}

.slick-prev:before, .slick-next:before {
  font-size: 16px;
  line-height: 48px;
}

.slick-dots li button:before {
  color: var(--navy);
  font-size: 10px;
}

.slick-dots li.slick-active button:before {
  color: var(--red);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-dark);
  padding: 22px 0;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.trust-item .ti-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .right-col-content { padding-left: 0; margin-top: 2rem; }
  .avail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 18px 12px; }
  .stat-num { font-size: 1.6rem; }
}
