/* ============================================
   Lumina Interiors - Premium Corporate CSS
   Modern Luxury Interior Design Aesthetic
   ============================================ */

:root {
  --ivory: #faf8f5;
  --off-white: #f5f2eb;
  --warm-beige: #e8dfd0;
  --sand: #d4c4a8;
  --wood: #8b7355;
  --charcoal: #2c2c2c;
  --black: #1a1a1a;
  --gold: #c9a227;
  --gold-light: #d4af37;
  --brass: #b5a642;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-desc {
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--gold); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 4px;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn { padding: 10px 18px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  padding: 90px 28px 40px;
  transition: right 0.35s ease;
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--charcoal);
}
.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.overlay.show { opacity: 1; visibility: visible; }

/* Hero Slider */
.hero {
  position: relative;
  height: 85vh;
  min-height: 520px;
  max-height: 800px;
  overflow: hidden;
}

.hero-slides { position: relative; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.4) 60%, rgba(26,26,26,0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 620px;
  color: var(--white);
}
.hero-text .section-label { color: var(--gold-light); }
.hero-text h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  opacity: 0.92;
  max-width: 480px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active,
.hero-dot:hover { background: var(--gold); transform: scale(1.15); }

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  pointer-events: none;
}
.hero-arrow {
  position: absolute;
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* Stats */
.stats {
  background: var(--charcoal);
  color: white;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}
.stat-item p { font-size: 0.95rem; opacity: 0.85; }

/* Sections common */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.5rem 0;
}
.about-features span {
  background: var(--warm-beige);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card-body .icon {
  width: 40px;
  height: 40px;
  background: rgba(201,162,39,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.25rem;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* Modular Kitchen types */
.kitchen-types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.kitchen-type {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
}
.kitchen-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.kitchen-type:hover img { transform: scale(1.05); }
.kitchen-type-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.kitchen-type h3 { color: white; font-size: 1.25rem; }

/* Projects */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--sand);
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.project-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  cursor: pointer;
}
.project-card-body { padding: 20px; }
.project-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.project-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.project-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }

/* Before After */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--charcoal);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.process-step h4 { margin-bottom: 8px; font-size: 1.05rem; }
.process-step p { font-size: 0.875rem; color: var(--text-light); }

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--gold);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* Testimonials */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 8px;
}
@media (min-width: 768px) {
  .testimonial-card { min-width: 50%; }
}
@media (min-width: 1024px) {
  .testimonial-card { min-width: 33.333%; }
}
.testimonial-inner {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}
.stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-inner p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--charcoal);
  font-family: var(--font-body);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-form {
  background: white;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sand);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--ivory);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #c0392b; }
.form-group.error .form-error { display: block; }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}
.footer a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.footer a:hover { color: var(--gold); }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer p { font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding: 0;
}
.social-links a:hover { background: var(--gold); color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { display: inline; padding: 0; cursor: pointer; }

/* Floating buttons */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
  font-size: 1.5rem;
  color: white;
}
.float-btn:hover { transform: scale(1.08); }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--charcoal); }

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: white;
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.show .modal { transform: translateY(0); }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.modal-header h2 { font-size: 1.35rem; margin: 0; }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--warm-beige); }
.modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}
.modal-body h3 { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.modal-body p { margin-bottom: 0.75rem; }
.modal-body ul { margin: 0.5rem 0 1rem 1.25rem; list-style: disc; }
.modal-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: right;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.show { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--charcoal);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { opacity: 0.85; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.7;
}
.breadcrumb a:hover { color: var(--gold); }

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-outline { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .before-after { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { height: 70vh; min-height: 460px; }
  .hero-arrow { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-btns { bottom: 16px; right: 16px; }
  .float-btn { width: 50px; height: 50px; }
  .section { padding: 56px 0; }
  .hero-text p { font-size: 1rem; }
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }

/* ===== Fixes: single-line nav, mobile actions, photo page-hero ===== */

.nav-desktop {
  flex-wrap: nowrap;
  gap: 2px;
}
.nav-desktop a {
  padding: 6px 10px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.header-inner {
  gap: 12px;
}

/* Keep WhatsApp + Call visible on mobile in header as compact buttons */
@media (max-width: 1024px) {
  .header-actions {
    display: flex !important;
    gap: 8px;
    margin-left: auto;
    margin-right: 8px;
  }
  .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  /* Hide full phone text on very small screens, keep icons via content if needed */
  .header-actions .btn-primary {
    /* keep visible */
  }
}

@media (max-width: 480px) {
  .header-actions .btn {
    padding: 8px 10px;
    font-size: 0.7rem;
  }
  .logo {
    font-size: 1.2rem;
  }
}

/* Floating buttons always visible and prominent on mobile */
.float-btns {
  display: flex !important;
}
@media (max-width: 640px) {
  .float-btns {
    bottom: 20px;
    right: 16px;
  }
  .float-btn {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
}

/* Page hero with background photo (non-home pages) */
.page-hero {
  position: relative;
  background: var(--charcoal);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0 70px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.75), rgba(26,26,26,0.65));
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { opacity: 0.9; max-width: 560px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.8;
}
.page-hero .breadcrumb a:hover { color: var(--gold); }

/* Specific hero images per page type via class */
.page-hero-about { background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&q=80'); }
.page-hero-services { background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&q=80'); }
.page-hero-kitchen { background-image: url('https://images.unsplash.com/photo-1556911220-bff31c812dce?w=1600&q=80'); }
.page-hero-projects { background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1600&q=80'); }
.page-hero-gallery { background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1600&q=80'); }
.page-hero-why { background-image: url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?w=1600&q=80'); }
.page-hero-faq { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80'); }
.page-hero-contact { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80'); }
.page-hero-home-int { background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&q=80'); }
.page-hero-office { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80'); }
.page-hero-wardrobe { background-image: url('https://images.unsplash.com/photo-1595428774223-ef52624120d2?w=1600&q=80'); }

/* Extra: keep nav single line on medium-large screens */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-desktop a {
    padding: 6px 8px;
    font-size: 0.78rem;
  }
  .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .logo { font-size: 1.3rem; }
}

/* Ensure floating WhatsApp/Call always visible on all devices */
.float-btns {
  z-index: 950;
}
