/* =============================================
   WAZIRI DRY CLEANERS – STYLESHEET
   Colors: #1a2a6c (deep blue), #b21f1f (red),
           #fdbb2d (gold/yellow), #ffffff (white)
   ============================================= */

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

:root {
  --blue-dark:  #0d1b5e;
  --blue-mid:   #1a2a6c;
  --blue-light: #2541b2;
  --red:        #b21f1f;
  --red-bright: #e53935;
  --gold:       #fdbb2d;
  --white:      #ffffff;
  --text-light: rgba(255,255,255,0.85);
  --card-bg:    #ffffff;
  --shadow:     0 8px 32px rgba(13,27,94,0.15);
  --radius:     14px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a2e;
  background: #f5f7ff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 18px 0;
}

.navbar.scrolled {
  background: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  padding: 12px 0;
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-waziri {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(178,31,31,0.45);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178,31,31,0.5);
}

.btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero-slideshow,
.hero-overlay,
.hero-bubbles {
  position: absolute;
  inset: 0;
}

.hero-slideshow {
  z-index: 0;
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,19,55,0.42) 0%, rgba(10,19,55,0.72) 60%, rgba(10,19,55,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-title {
  color: var(--white);
}

.hero-tagline,
.hero-subtitle {
  color: var(--text-light);
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Animated bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: floatBubble linear infinite;
}

.hero-bubbles span:nth-child(1)  { width:60px;  height:60px;  left:10%; bottom:-80px; animation-duration:8s;  animation-delay:0s; }
.hero-bubbles span:nth-child(2)  { width:40px;  height:40px;  left:25%; bottom:-60px; animation-duration:11s; animation-delay:2s; }
.hero-bubbles span:nth-child(3)  { width:80px;  height:80px;  left:40%; bottom:-100px;animation-duration:9s;  animation-delay:1s; }
.hero-bubbles span:nth-child(4)  { width:30px;  height:30px;  left:55%; bottom:-50px; animation-duration:7s;  animation-delay:3s; }
.hero-bubbles span:nth-child(5)  { width:90px;  height:90px;  left:70%; bottom:-120px;animation-duration:12s; animation-delay:0.5s; }
.hero-bubbles span:nth-child(6)  { width:25px;  height:25px;  left:80%; bottom:-40px; animation-duration:6s;  animation-delay:4s; }
.hero-bubbles span:nth-child(7)  { width:55px;  height:55px;  left:5%;  bottom:-70px; animation-duration:10s; animation-delay:2.5s; }
.hero-bubbles span:nth-child(8)  { width:45px;  height:45px;  left:90%; bottom:-60px; animation-duration:9s;  animation-delay:1.5s; }

@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-title {
  margin-bottom: 16px;
}

.title-waziri {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--white);
  line-height: 1;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.4);
}

.title-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 4px;
  padding: 10px 32px;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(178,31,31,0.5);
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--gold);
  margin: 18px 0 12px;
}

.hero-subtitle {
  color: var(--text-light);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
}

.hero-phones {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-phones a {
  color: var(--gold);
  transition: opacity var(--transition);
}
.hero-phones a:hover { opacity: 0.8; }
.hero-phones span { color: var(--white); }

/* Hero image / card */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.machine-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  animation: floatCard 4s ease-in-out infinite;
}

.machine-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: spin 3s linear infinite;
}

.washing-svg {
  width: 180px;
  height: 180px;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  font-size: 1rem;
}

.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: var(--text-light); }

/* ===== SERVICES ===== */
.services {
  padding: 90px 0;
  background: #f5f7ff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(13,27,94,0.18);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--blue-light);
}

.service-card h3 {
  color: var(--blue-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #4a1c96 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.feature.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: var(--gold);
}

.feature h4 {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  padding: 90px 0;
  background: #f5f7ff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.price-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.price-card:hover { transform: translateY(-6px); }

.price-card.featured {
  background: var(--card-bg);
  color: inherit;
  transform: scale(1.04);
}

.price-card.featured.visible { transform: scale(1.04); }
.price-card.featured:hover   { transform: scale(1.04) translateY(-6px); }

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.price-icon { font-size: 2.4rem; margin-bottom: 12px; color: var(--blue-light); }
.price-card.featured .price-icon { color: var(--blue-light); }

.price-card h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--blue-dark);
}

.price-card.featured h3 { color: var(--blue-dark); }

.price-tag {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 8px;
}

.price-card.featured .price-tag { color: var(--red); }

.price-card p {
  font-size: 0.82rem;
  color: #888;
}
.price-card.featured p { color: #888; }

.pricing-note {
  text-align: center;
  color: #888;
  font-size: 0.82rem;
  font-style: italic;
}

/* ===== CONTACT ===== */
.contact {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d1b5e 0%, #1a2a6c 60%, #4a1c96 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  width: 40px;
  text-align: center;
}

.contact-item h4 {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-item a,
.contact-item p {
  color: var(--text-light);
  font-size: 0.92rem;
  display: block;
  line-height: 1.7;
}

.contact-item a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.contact-form h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(39,174,96,0.2);
  border: 1px solid rgba(39,174,96,0.5);
  border-radius: 8px;
  color: #a8e6c0;
  font-size: 0.9rem;
  text-align: center;
}

.map-embed {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* ===== FOOTER ===== */
.footer {
  background: #080f2e;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 6px;
}

.footer-phones p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-phones a {
  color: var(--gold);
  font-weight: 600;
}
.footer-phones a:hover { text-decoration: underline; }

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ===== BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 52px; height: 52px;
  background: var(--blue-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(26,42,108,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  display: block;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-light);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    padding: 120px 20px 60px;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 260px;
    background: var(--blue-dark);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: -8px 0 30px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 1.1rem; }

  .hamburger { display: flex; z-index: 1000; }

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

  .contact-form { padding: 28px 20px; }

  .pricing-grid, .features-grid, .services-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured { transform: none; }
  .price-card.featured.visible { transform: none; }
}
