/* Masar Alhelm Laundry - Main Stylesheet */
:root {
  --primary: #0077b6;
  --primary-dark: #023e8a;
  --primary-light: #48cae4;
  --accent: #00b4d8;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light: #e0f7fa;
  --gray: #64748b;
  --dark: #0f172a;
  --shadow-sm: 0 2px 8px rgba(0, 119, 182, 0.08);
  --shadow: 0 8px 24px rgba(0, 119, 182, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 119, 182, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.logo img {
  height: 120px;   /* 👈 big logo */
  width: auto;
  display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; color: var(--primary-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
p { color: var(--gray); }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title .subtitle { color: var(--primary); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; display: block; margin-bottom: 0.75rem; }
.section-title p { max-width: 650px; margin: 0.75rem auto 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 119, 182, 0.55), 0 0 25px rgba(72, 202, 228, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}
.btn-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.15rem;
}
.logo i {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.2rem;
}
.logo span small { display: block; font-size: 0.7rem; color: var(--primary); font-weight: 500; letter-spacing: 1px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 0.25rem 0;
  transition: var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, rgba(2, 62, 138, 0.88) 0%, rgba(0, 119, 182, 0.82) 100%),
              url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?w=1600&q=80') center/cover;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(72, 202, 228, 0.3), transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero .badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--primary-light); }
.hero p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 620px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-stats .stat h3 { color: var(--white); font-size: 2rem; }
.hero-stats .stat p { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; margin: 0; }

/* Page Header */
.page-header {
  padding: 9rem 0 4rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(72, 202, 228, 0.3), transparent 50%);
}
.page-header > * { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255, 255, 255, 0.9); max-width: 650px; margin: 0 auto; }
.breadcrumb { margin-top: 1rem; font-size: 0.9rem; color: var(--primary-light); }
.breadcrumb a { color: var(--white); }
.breadcrumb span { margin: 0 0.5rem; }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 119, 182, 0.08);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--light), #caf0f8);
  color: var(--primary);
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: rotate(-8deg) scale(1.08);
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; }

/* Why Choose */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 18px;
  transition: var(--transition);
  border: 1px solid rgba(0, 119, 182, 0.06);
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-item i {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-block;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 119, 182, 0.06);
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial .quote-icon {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary-light);
  opacity: 0.4;
}
.testimonial .stars { color: #fbbf24; margin-bottom: 0.75rem; }
.testimonial p { font-style: italic; margin-bottom: 1.25rem; }
.testimonial .author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.testimonial .author h4 { font-size: 1rem; color: var(--primary-dark); }
.testimonial .author p { font-size: 0.85rem; color: var(--gray); margin: 0; font-style: normal; }

/* Hours / CTA */
.hours-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 4rem 1.25rem;
}
.hours-section h2 { color: var(--white); }
.hours-section p { color: rgba(255, 255, 255, 0.9); }
.hours-big {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary-light);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.about-img:hover img { transform: scale(1.05); }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }
.about-list { list-style: none; margin: 1.5rem 0; }
.about-list li { padding: 0.5rem 0; display: flex; align-items: flex-start; gap: 0.75rem; color: var(--gray); }
.about-list i { color: var(--primary); margin-top: 0.35rem; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.mission-card {
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mission-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }

/* Service Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.area-item {
  padding: 1.75rem 1rem;
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 119, 182, 0.08);
  transition: var(--transition);
}
.area-item:hover { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); transform: translateY(-5px); }
.area-item:hover i, .area-item:hover h4 { color: var(--white); }
.area-item i { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; transition: var(--transition); }
.area-item h4 { font-size: 1rem; color: var(--primary-dark); transition: var(--transition); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 119, 182, 0.06);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.contact-card i {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--gray); margin: 0; }
.contact-card a:hover { color: var(--primary); }

.contact-form {
  background: var(--white);
  padding: 2.25rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--primary-dark); font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.map-wrap {
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 62, 138, 0.85), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition);
  font-weight: 600;
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

/* Booking CTA */
.booking-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 4rem 1.25rem;
  text-align: center;
  border-radius: 24px;
  margin: 3rem auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(72, 202, 228, 0.3), transparent 50%);
}
.booking-cta > * { position: relative; z-index: 2; }
.booking-cta h2 { color: var(--white); }
.booking-cta p { color: rgba(255, 255, 255, 0.9); margin-bottom: 1.5rem; }

/* Footer */
.footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 4rem 1.25rem 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.footer h4 { color: var(--white); margin-bottom: 1.25rem; font-size: 1.1rem; }
.footer .logo { color: var(--white); margin-bottom: 1rem; }
.footer .logo span small { color: var(--primary-light); }
.footer p { color: #94a3b8; font-size: 0.92rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #94a3b8; font-size: 0.92rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-links a:hover { color: var(--primary-light); transform: translateX(4px); }
.footer-contact li { list-style: none; margin-bottom: 0.75rem; color: #94a3b8; font-size: 0.92rem; display: flex; gap: 0.6rem; }
.footer-contact i { color: var(--primary-light); margin-top: 0.3rem; }
.socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.socials a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}
.socials a:hover { background: linear-gradient(135deg, var(--primary), var(--accent)); transform: translateY(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  color: #64748b;
  font-size: 0.88rem;
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 62px; height: 62px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2s infinite;
}
.wa-float:hover { transform: scale(1.12) rotate(8deg); background: #1ebe5d; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 35px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { display: block; padding: 0.75rem 0; border-bottom: 1px solid #e2e8f0; width: 100%; }
  .section { padding: 3.5rem 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem; }
  .booking-cta { margin: 2rem 1rem; padding: 2.5rem 1.25rem; }
  .logo { font-size: 1rem; }
  .logo i { width: 36px; height: 36px; font-size: 1rem; }
  .wa-float { width: 56px; height: 56px; font-size: 1.5rem; bottom: 1rem; right: 1rem; }
}
