/* Jewel Laundry - आपले नार्वेकर - Main Styles */
:root {
  --color-gold: #c9a227;
  --color-gold-light: #e8d48b;
  --color-gold-dark: #9a7b1a;
  --color-charcoal: #2c2c2c;
  --color-charcoal-light: #3d3d3d;
  --color-cream: #faf8f5;
  --color-white: #ffffff;
  --color-text: #333;
  --color-text-muted: #666;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(201, 162, 39, 0.15);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Header & Nav */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
}

.brand-text h1 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.brand-text .tagline-en {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-list a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-charcoal);
  font-weight: 500;
  border-radius: 6px;
}

.nav-list a:hover,
.nav-list a.active {
  background: var(--color-cream);
  color: var(--color-gold-dark);
}

/* Main content wrapper */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  min-height: 60vh;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
  color: var(--color-white);
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/logo.jpg") center/cover;
  opacity: 0.12;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero .subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Section titles */
.section-title {
  font-size: 1.5rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-gold);
  display: inline-block;
}

.section-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-cream);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-body {
  padding: 1.25rem;
}

.card-body h3 {
  font-size: 1.1rem;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

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

/* About section on home */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .about-preview {
    grid-template-columns: 1fr;
  }
}

.about-preview img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-preview .text h2 {
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}

.about-preview .text p {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

/* Why choose us - list */
.why-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.why-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--color-text);
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Services list (full page) */
.services-list {
  list-style: none;
}

.services-list li {
  background: var(--color-white);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-gold);
}

.services-list li strong {
  color: var(--color-charcoal);
  display: block;
  margin-bottom: 0.35rem;
}

.services-list li p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid a {
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.gallery-grid a:hover {
  transform: scale(1.03);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info p,
.contact-info a {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.contact-form {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
}

/* Page title (inner pages) */
.page-title {
  font-size: 1.75rem;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.page-lead {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 2rem 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer a {
  color: var(--color-gold-light);
}

.site-footer p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Facebook floating button */
.facebook-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1877f2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.facebook-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(24, 119, 242, 0.6);
}

.facebook-float svg {
  width: 28px;
  height: 28px;
}

/* Google Maps floating button */
.maps-float {
  position: fixed;
  bottom: 156px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ea4335;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(234, 67, 53, 0.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.maps-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(234, 67, 53, 0.6);
}

.maps-float svg {
  width: 28px;
  height: 28px;
}

/* Utility */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
