/* ===========================
   POM POM CAR WASH - CSS
   Theme: Red & Light Grey
=========================== */

:root {
  --primary-red: #D32F2F;
  --dark-red: #B71C1C;
  --light-red: #FF5252;
  --bg-grey: #D8D8D8;
  --card-bg: #E5E5E5;
  --text-dark: #1A1A1A;
  --text-light: #757575;
  --white: #FFFFFF;
  
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 30px rgba(211, 47, 47, 0.15);
  
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-grey);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background-color: rgba(211, 47, 47, 0.1);
  color: var(--primary-red);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.highlight-desc {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.section-desc p {
  margin-bottom: 0.5rem;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.05); /* Even more subtle panel */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  background: var(--primary-red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 0.8rem 0;
  border-bottom: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 45px;
  border-radius: 8px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo-text {
  color: var(--white);
}

.nav-logo-text span {
  color: inherit;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--white);
}

.nav-links a:hover {
  color: var(--primary-red);
  transform: translateY(-2px);
}

.navbar.scrolled .nav-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.btn-nav {
  background: var(--primary-red);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}

.navbar.scrolled .btn-nav {
  background: var(--white);
  color: var(--primary-red);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* Offset for navbar */
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(245, 245, 245, 0.65); /* More visible background */
}

.hero-content {
  text-align: center;
  max-width: 1100px;
  padding: 0 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-big {
  width: 180px;
  max-width: 60%;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 25px rgba(211, 47, 47, 0.4));
  /* Animation removed as requested */
}



.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.hero-promo-badge {
  background: var(--primary-red);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-promo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
}

.promo-voucher {
  background: var(--white);
  border: 2px dashed var(--primary-red);
  padding: 1rem;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--text-dark);
}

.promo-voucher::before, .promo-voucher::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--bg-grey);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 2px dashed var(--primary-red);
}

.promo-voucher::before { left: -12px; }
.promo-voucher::after { right: -12px; }



.voucher-top {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0.6;
}

.voucher-amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.voucher-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.voucher-status {
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(211, 47, 47, 0.1);
  color: var(--primary-red);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin: 0 auto;
}



.promo-voucher:hover {
  transform: scale(1.1) rotate(2deg);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(211, 47, 47, 0.2);
}

/* BIRTHDAY SPECIAL VOUCHER */
.promo-voucher--birthday {
  background: var(--primary-red);
  border: 2px solid var(--dark-red);
  color: var(--white);
  transform: scale(1.08);
  z-index: 1;
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.5);
  animation: birthday-glow 2s ease-in-out infinite;
}

.promo-voucher--birthday::before,
.promo-voucher--birthday::after {
  background: var(--bg-grey);
  border-color: var(--dark-red);
}

.promo-voucher--birthday .voucher-top {
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}

.promo-voucher--birthday .voucher-amount {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.promo-voucher--birthday .voucher-title {
  color: rgba(255, 255, 255, 0.95);
}

.promo-voucher--birthday .voucher-status {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.65rem;
}

.promo-voucher--birthday:hover {
  transform: scale(1.18) rotate(2deg);
  box-shadow: 0 25px 50px rgba(211, 47, 47, 0.6);
  background: var(--dark-red);
}

@keyframes birthday-glow {
  0%   { box-shadow: 0 8px 30px rgba(211, 47, 47, 0.5); }
  50%  { box-shadow: 0 8px 45px rgba(211, 47, 47, 0.85), 0 0 20px rgba(255, 82, 82, 0.4); }
  100% { box-shadow: 0 8px 30px rgba(211, 47, 47, 0.5); }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* PROMOS */
.promos-section {
  background-color: var(--card-bg);
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-card {
  background: var(--bg-grey);
  padding: 2.5rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  height: 100%;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: var(--white);
  border-color: var(--primary-red);
}

.promo-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.05);
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.promo-card:hover .promo-tag {
  background: var(--primary-red);
  color: var(--white);
}

.promo-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.promo-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.promo-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.promo-card strong {
  color: var(--primary-red);
}

/* BIRTHDAY PROMO CARD */
.promo-card--birthday {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  border: 2px solid var(--dark-red);
  color: var(--white);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.45);
  animation: birthday-card-glow 2.5s ease-in-out infinite;
}

.promo-card--birthday .promo-icon {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.promo-card--birthday h3 {
  color: var(--white);
}

.promo-card--birthday p {
  color: rgba(255, 255, 255, 0.88);
}

.promo-card--birthday strong {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-card--birthday span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.promo-card--birthday .promo-tag {
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.promo-card--birthday:hover {
  transform: translateY(-14px) scale(1.05);
  box-shadow: 0 25px 55px rgba(211, 47, 47, 0.65);
  background: linear-gradient(135deg, #e53935 0%, var(--primary-red) 100%);
  border-color: var(--primary-red);
}

.promo-card--birthday:hover .promo-tag {
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
}

@keyframes birthday-card-glow {
  0%   { box-shadow: 0 15px 40px rgba(211, 47, 47, 0.45); }
  50%  { box-shadow: 0 15px 55px rgba(211, 47, 47, 0.75), 0 0 25px rgba(255, 82, 82, 0.35); }
  100% { box-shadow: 0 15px 40px rgba(211, 47, 47, 0.45); }
}


/* PRICING */
.pricing-section {
  background-color: var(--bg-grey);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pricing-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pricing-box-header {
  border-bottom: 2px dashed rgba(0,0,0,0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-box-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list span {
  color: var(--text-light);
  font-weight: 500;
}

.pricing-list strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.add { color: var(--text-dark); }
.disc { color: var(--primary-red); }

.pricing-details {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  opacity: 0.9;
}

.pricing-details::before {
  content: "SUDAH TERMASUK:";
  display: block;
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--primary-red);
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.price-group {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.price-group small {
  font-size: 0.85rem;
  color: var(--primary-red);
  font-weight: 700;
  margin-top: 2px;
}

/* SUBSKRIPSI */
.subskripsi-section {
  background-color: var(--card-bg);
}

.subskripsi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.sub-card {
  background: var(--bg-grey);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.sub-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.sub-card.popular {
  background: var(--white);
  border: 2px solid var(--primary-red);
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
}

.sub-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-red);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sub-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.sub-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.sub-rate {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.w-full {
  width: 100%;
}

/* LOCATION */
.location-section {
  background-color: var(--bg-grey);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-info {
  padding: 4rem;
}

.location-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.location-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon {
  font-size: 1.8rem;
}

.contact-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-item a {
  color: var(--primary-red);
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.location-map {
  height: 100%;
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.map-placeholder:hover .map-overlay {
  opacity: 1;
}

.map-overlay span {
  background: var(--white);
  color: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* FOOTER */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 50px;
  border-radius: 8px;
}

.footer-logo h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .location-container {
    grid-template-columns: 1fr;
  }
  .navbar {
    display: none; /* Remove top panel for mobile */
  }
  .hero {
    padding-top: 0;
  }
  .hero-promo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
    width: 100%;
  }
  .promo-voucher {
    min-width: unset;
    padding: 0.8rem 0.4rem;
    border-width: 1.5px;
  }

  .promo-voucher::before, .promo-voucher::after {
    width: 12px;
    height: 12px;
  }
  .promo-voucher::before { left: -7px; }
  .promo-voucher::after { right: -7px; }

  .voucher-top {
    font-size: 0.55rem;
    letter-spacing: 0;
  }
  .voucher-amount {
    font-size: 1.1rem;
  }
  .voucher-title {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  .voucher-status {
    font-size: 0.55rem;
    padding: 2px 6px;
  }

  /* Grid for Promos Grid on mobile */
  .promos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
    width: 100%;
  }
  
  .promo-card {
    min-width: unset;
    padding: 1.5rem 1rem;
    height: auto;
  }

  .promo-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  .promo-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .promo-card p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .promo-tag {
    font-size: 0.6rem;
    padding: 0.3rem;
  }
}

@media (max-width: 768px) {
  .hero-logo-big {
    width: 200px;
    margin-bottom: 0.2rem;
    margin-top: -10px; /* Pull up even more */
  }
  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 0.2rem;
    line-height: 1;
    max-width: 90%; /* Symmetrical balance */
    margin-left: auto;
    margin-right: auto;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  .section {
    padding: 4rem 0;
  }
  .location-info {
    padding: 2rem;
  }
  .sub-card.popular {
    transform: scale(1);
  }
  .sub-card.popular:hover {
    transform: translateY(-5px);
  }
  .promo-voucher {
    width: 100%;
  }
}
