/* Sabir Tiles Contractor - Exact Visual Replica Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-peach: #c2653e;
  --primary-peach-hover: #af542e;
  --primary-peach-light: #fdf1ea;
  --primary-peach-border: #f0e1d5;
  --text-espresso: #2c1a12;
  --text-muted: #756257;
  --bg-peach: #fcf7f2;
  --white-bg: #ffffff;
  --dark-footer: #231710;
  --border-light: #f0e1d5;
  /* Compatibility aliases */
  --primary-yellow: #c2653e;
  --primary-yellow-hover: #af542e;
  --dark-hero: #2c1a12;
  --light-bg: #fcf7f2;
}

html, body {
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2c1a12;
  background-color: #fcf7f2;
  margin: 0;
  padding: 0;
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Terracotta Peach Pill Button matching Peach Theme */
.btn-gold-pill, .btn-peach-pill {
  background-color: #c2653e;
  color: #ffffff;
  font-weight: 700;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 14px rgba(194, 101, 62, 0.28);
}

.btn-gold-pill:hover, .btn-peach-pill:hover {
  background-color: #af542e;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(194, 101, 62, 0.38);
}

/* Peach / Terracotta Gradient Button */
.gold-gradient-btn, .peach-gradient-btn {
  background: linear-gradient(135deg, #c2653e 0%, #af542e 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 15px rgba(194, 101, 62, 0.32);
}

.gold-gradient-btn:hover, .peach-gradient-btn:hover {
  background: linear-gradient(135deg, #d3734a 0%, #c2653e 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 101, 62, 0.42);
}

/* Service Card Hover */
.service-card-item {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -8px rgba(0, 0, 0, 0.35);
}

.service-card-item .img-zoom {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-item:hover .img-zoom {
  transform: scale(1.06);
}

/* Scroll indicator bounce */
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.scroll-indicator-arrow {
  animation: bounceDown 2s infinite ease-in-out;
}

/* Lightbox styles */
#lightboxModal.active {
  display: flex !important;
  opacity: 1;
}

/* WhatsApp Pulse */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-pulse {
  animation: pulseGlow 2s infinite;
}

/* Service Cards Responsive (Mobile: Horizontal Swipe/Slide; Desktop: 15-Col Mosaic Grid) */
@media (max-width: 767px) {
  .services-mosaic-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    padding-top: 0.25rem;
    padding-left: 0.15rem;
    padding-right: 1rem;
    scrollbar-width: none;
  }
  .services-mosaic-grid::-webkit-scrollbar {
    display: none;
  }
  .services-mosaic-grid .service-card-item {
    flex: 0 0 46% !important;
    min-width: 145px !important;
    max-width: 220px !important;
    height: 185px !important;
    scroll-snap-align: start;
    border-radius: 1rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .services-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(15, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .services-mosaic-grid .mosaic-top {
    grid-column: span 5 / span 5;
  }
  .services-mosaic-grid .mosaic-bottom {
    grid-column: span 3 / span 3;
  }
}

/* Luxury Marble Texture Background */
.marble-texture-bg {
  position: relative;
  background-color: #fcf7f2;
  overflow: hidden;
}

.marble-texture-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/marble-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.marble-texture-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(252, 247, 242, 0.35) 0%, rgba(252, 247, 242, 0.05) 50%, rgba(252, 247, 242, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.marble-texture-bg > * {
  position: relative;
  z-index: 2;
}

/* Luxury Dark Marble Texture Background */
.marble-texture-dark {
  position: relative;
  background-color: #231710;
  overflow: hidden;
}

.marble-texture-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/marble-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: invert(1) contrast(1.2);
  pointer-events: none;
  z-index: 0;
}

.marble-texture-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 23, 16, 0.4) 0%, rgba(35, 23, 16, 0) 50%, rgba(35, 23, 16, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.marble-texture-dark > * {
  position: relative;
  z-index: 2;
}


