/* Shree Ram Precast – Light grey profile theme */

:root {
  --bg: #f8f9fa;
  --bg-card: #ffffff;
  --text: #2d3748;
  --text-muted: #64748b;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --border: #e2e8f0;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
  --font-sans: "Outfit", "DM Sans", system-ui, sans-serif;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top bar */
.topbar {
  background: var(--grey-100);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-contact a {
  color: var(--text-muted);
}
.topbar-contact a:hover {
  color: var(--accent);
}
.topbar-contact .sep {
  color: var(--grey-300);
  margin: 0 0.5rem;
}

.topbar-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar-cta .topbar-link {
  color: var(--accent);
  font-weight: 500;
}
.topbar-cta .topbar-link-text {
  font-weight: 400;
}
.topbar-cta .topbar-sep {
  color: var(--grey-300);
  font-weight: 300;
}

/* Main nav */
.main-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.main-nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 1.125rem;
}
.logo:hover {
  color: var(--text);
}
.logo-icon {
  width: 40px;
  height: 24px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  color: var(--text);
}
.logo img.logo-icon {
  color: inherit;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}
.nav-menu a:hover {
  color: var(--text);
  background: var(--grey-100);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: var(--grey-100);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  top: -200px;
  right: -150px;
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(180deg, #f1f5f9 0%, transparent 100%);
  bottom: -100px;
  left: -100px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero-content { grid-column: 1; grid-row: 1; }
.hero-image { grid-column: 2; grid-row: 1; }
.hero-stats { grid-column: 1 / -1; grid-row: 2; }

.hero-label {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.hero-desc {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 480px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--grey-100);
}
.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Hero stats strip (count-up) */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 1.5rem 0 0;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-num {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-suffix {
  font-size: inherit;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

/* Section common */
.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.section-subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Products */
.products {
  padding: 4.5rem 0;
  background: var(--bg-card);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
}
.product-card-link:hover,
.product-card-link:focus {
  color: inherit;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow var(--transition), border-color var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-link:hover .product-card {
  transform: scale(1.06);
  box-shadow: var(--shadow-hover);
  border-color: var(--grey-300);
}

.product-card-image {
  aspect-ratio: 4/3;
  background: var(--grey-100);
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  margin: 1rem 1.25rem 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}
.product-card > p {
  margin: 0 1.25rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  flex: 1;
}

.product-card-hover {
  margin: 0 1.25rem 1.25rem;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.3s ease, padding 0.25s ease;
}
.product-card-link:hover .product-card-hover,
.product-card-link:focus-within .product-card-hover {
  opacity: 1;
  max-height: 160px;
}
.product-card-hover ul {
  margin: 0 0 0.5rem;
  padding: 0 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.product-card-hover .product-card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.product-card-link:hover .product-card-cta {
  text-decoration: underline;
}

/* Product detail page */
.product-page {
  padding: 2rem 0 4rem;
  min-height: 60vh;
}
.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb-sep {
  margin: 0 0.35rem;
  color: var(--grey-400);
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-100);
  box-shadow: var(--shadow);
  position: sticky;
  top: 6rem;
}
.product-detail-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}
.product-detail-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
}
.product-detail-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.product-detail-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.product-detail-content h2:first-of-type {
  margin-top: 0;
}
.product-detail-content ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.product-detail-content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.product-detail-content .btn {
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-detail-image {
    position: static;
    max-height: 320px;
  }
  .product-detail-image img {
    max-height: 320px;
  }
}

/* About */
.about {
  padding: 4.5rem 0;
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.about .section-title {
  text-align: left;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--grey-100);
}
.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}
.about-lead {
  font-size: 1.125rem;
  color: var(--text) !important;
}

.about-areas {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--grey-100);
  border-radius: var(--radius);
}
.about-areas strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.about-areas ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.about-areas li {
  padding: 0.25rem 0.5rem;
  background: var(--bg-card);
  border-radius: 6px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Gallery (infinite auto-moving accordion cards) */
.gallery {
  padding: 4.5rem 0;
  background: var(--bg-card);
}

.gallery-carousel-wrap {
  width: 100%;
  overflow: hidden;
}

.gallery-carousel-wrap:hover .gallery-carousel-track {
  animation-play-state: paused;
}

.gallery-carousel-track {
  display: flex;
  gap: 1rem;
  width: 400%;
  animation: galleryCarousel 15s linear infinite;
}

.gallery-card {
  flex: 0 0 calc((100% - 11 * 1rem) / 12);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-100);
  border: 1px solid var(--border);
  min-width: 0;
  aspect-ratio: 1;
  transition: transform 0.25s ease;
  position: relative;
  z-index: 0;
}

.gallery-card:hover {
  transform: scale(1.12);
  z-index: 1;
  box-shadow: var(--shadow-hover);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes galleryCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Testimonials (one at a time, prev/next, dots) */
.testimonials {
  padding: 4.5rem 0;
  background: var(--bg);
}

.testimonial-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-viewport {
  position: relative;
  min-height: 260px;
}

.testimonial-card {
  display: none;
  margin: 0;
  padding: 2.75rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  box-shadow: var(--shadow);
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: outline-color 0.2s ease, box-shadow var(--transition);
}
.testimonial-card.is-active {
  display: block;
}
.testimonial-card:hover {
  outline-color: var(--grey-300);
  box-shadow: var(--shadow-hover);
}
.testimonial-card p {
  margin: 0 0 1.5rem;
  font-style: italic;
  font-size: 1.2rem;
}
.testimonial-card footer {
  font-size: 1rem;
  color: var(--grey-500);
  font-style: normal;
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.testimonial-btn:hover {
  background: var(--grey-100);
  border-color: var(--accent);
  color: var(--accent);
}
.testimonial-btn-prev {
  left: -28px;
}
.testimonial-btn-next {
  right: -28px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--grey-300);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-dot:hover {
  background: var(--grey-400);
}
.testimonial-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-btn-prev {
    left: 0.5rem;
  }
  .testimonial-btn-next {
    right: 0.5rem;
  }
  .testimonial-card {
    padding: 2rem 1.75rem;
    font-size: 1.0625rem;
  }
  .testimonial-card p {
    font-size: 1.0625rem;
  }
}

/* Contact */
.contact {
  padding: 4.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 3rem;
}

.contact .section-title {
  text-align: left;
}

.contact-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.contact-maps-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-maps-wrap .contact-map {
  flex: 1;
  min-height: 200px;
  height: auto;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-100);
  border: 1px solid var(--border);
  min-height: 280px;
  height: 100%;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

/* Areas we serve (homepage) */
.areas-section {
  padding: 4.5rem 0;
  background: var(--bg);
}
.areas-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: stretch;
  min-height: 380px;
}
.areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.areas-item {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: default;
  transition: color 0.2s ease, background 0.2s ease, margin-left 0.25s ease;
  margin-left: 0;
}
/* Bent list: selected item stays left, others shift right by distance */
.areas-item[data-distance="1"] {
  margin-left: 0.6rem;
}
.areas-item[data-distance="2"] {
  margin-left: 1.1rem;
}
.areas-item[data-distance="3"] {
  margin-left: 1.6rem;
}
.areas-item[data-distance="4"] {
  margin-left: 2rem;
}
.areas-item[data-distance="5"] {
  margin-left: 2.4rem;
}
.areas-item:hover,
.areas-item.is-active {
  color: var(--accent);
  background: rgba(14, 165, 233, 0.08);
}
.areas-item span {
  pointer-events: none;
}
.areas-map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-100);
  border: 1px solid var(--border);
  min-height: 320px;
}
.areas-map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.areas-map-frame.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.areas-map-wrap iframe {
  display: block;
}
@media (max-width: 768px) {
  .areas-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .areas-map-wrap {
    min-height: 280px;
  }
}

/* Contact page (full page) */
.contact-page {
  padding: 2.5rem 0 4rem;
}
.contact-page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
}
.contact-page-lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: 560px;
}
.contact-page-global {
  margin-bottom: 2rem;
}
.contact-locations {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-location-block .contact-page-grid {
  align-items: start;
}
.contact-location-block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}
.contact-address {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-page-info .contact-list {
  margin-bottom: 1.5rem;
}
.contact-page-map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-100);
  border: 1px solid var(--border);
  min-height: 360px;
}
.contact-page-map iframe {
  display: block;
  min-height: 360px;
}
@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .contact-page-map {
    min-height: 300px;
  }
  .contact-page-map iframe {
    min-height: 300px;
  }
}

/* Footer */
.site-footer {
  padding: 1.5rem;
  background: var(--grey-100);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-image {
    max-width: 480px;
    margin: 0 auto;
  }
  .about .section-title {
    text-align: center;
  }

  .contact-map {
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .topbar-contact .sep {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 0 3.5rem;
  }
  .hero-image img {
    height: 240px;
  }
  .section-subtitle {
    margin-bottom: 1.5rem;
  }
  .products,
  .about,
  .gallery,
  .testimonials,
  .contact {
    padding: 3rem 0;
  }
}

/* Floating actions (phone + WhatsApp) */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  pointer-events: none;
}
.floating-actions a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: var(--shadow-hover);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
}
.floating-actions a:hover {
  transform: scale(1.08);
  color: #fff;
}
.floating-actions .floating-phone {
  background: var(--accent);
}
.floating-actions .floating-phone:hover {
  background: var(--accent-hover);
}
.floating-actions .floating-whatsapp {
  background: #25d366;
}
.floating-actions .floating-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.floating-actions svg {
  width: 26px;
  height: 26px;
}

/* Back to top – left bottom */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-hover);
  color: #fff;
}
.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* Product page action buttons */
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.product-detail-actions .btn {
  margin-top: 0;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Products section Get a Quote */
/* Products – custom block */
.products-custom-block {
  margin-top: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border: 1px solid rgba(14, 165, 233, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.products-custom-inner {
  padding: 2rem 2.25rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.products-custom-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.products-custom-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.products-custom-text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.products-custom-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.products-custom-btn {
  margin: 0;
}
.products-custom-inner .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.products-custom-inner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.products-custom-btn:hover {
  transform: translateY(-2px);
}
.products-custom-btn.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

.products-cta {
  text-align: center;
  margin-top: 2rem;
}
.products-cta .btn {
  margin: 0 0.25rem;
}

/* Areas we serve page */
.areas-page {
  padding-bottom: 3rem;
}
.areas-page-hero {
  background: var(--bg);
  color: #1a1a1a;
  padding: 2.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.areas-page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
}
.areas-page-hero-sub {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.areas-state-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 1.25rem;
  padding: 0.5rem 0;
}
.areas-state-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.areas-state-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.areas-state-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.areas-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
}
.areas-page-intro {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
.areas-page-heading {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.areas-cities-wrap {
  margin-bottom: 0.5rem;
}
.areas-cities-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}
.areas-city-btn {
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.areas-city-btn:hover,
.areas-city-btn.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(14, 165, 233, 0.06);
}
.areas-page-map-wrap {
  position: sticky;
  top: 100px;
  min-height: 320px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg);
}
.areas-page-map-wrap iframe {
  display: block;
}
@media (max-width: 900px) {
  .areas-page-grid {
    grid-template-columns: 1fr;
  }
  .areas-page-map-wrap {
    min-height: 280px;
    height: 300px;
    position: static;
  }
}
