/* ============================================================
   KANNAN TRADERS & HOLLOW BRICKS - MAIN STYLESHEET
   Design tokens: deep construction-green, brick-terracotta,
   cement-cream background, safety-yellow CTA accent
   ============================================================ */

:root {
  --color-green-deep: #1B3A2F;
  --color-green-deep-light: #244C3D;
  --color-terracotta: #D9491F;
  --color-terracotta-dark: #B53A16;
  --color-cream: #F4EFE6;
  --color-charcoal: #2B2B2B;
  --color-yellow: #FFC93C;
  --color-white: #FFFFFF;
  --color-border: #E3DACB;

  --font-display: 'Archivo Expanded', 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 4px 16px rgba(27, 58, 47, 0.08);
  --shadow-card-hover: 0 10px 28px rgba(27, 58, 47, 0.14);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-green-deep);
  letter-spacing: 0.2px;
}

a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; }

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

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Section label / eyebrow ---------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  background: var(--color-terracotta);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: #5C6760;
  max-width: 620px;
  font-size: 1.02rem;
}

.section-pad { padding: 64px 0; }
@media (max-width: 767px) {
  .section-pad { padding: 42px 0; }
}

/* ---------- Brick course divider (signature motif) ---------- */
.brick-divider {
  display: flex;
  width: 100%;
  height: 10px;
  overflow: hidden;
  line-height: 0;
}
.brick-divider span {
  flex: 1 0 40px;
  height: 10px;
  margin-right: 3px;
  background: var(--color-terracotta);
  opacity: 0.85;
}
.brick-divider span:nth-child(even) {
  background: var(--color-green-deep);
  margin-top: 5px;
  opacity: 0.9;
}

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--color-terracotta);
  color: var(--color-white);
  font-weight: 700;
  border: none;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-brand:hover {
  background: var(--color-terracotta-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.btn-brand-outline {
  background: transparent;
  border: 2px solid var(--color-green-deep);
  color: var(--color-green-deep);
  font-weight: 700;
  padding: 9px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}
.btn-brand-outline:hover {
  background: var(--color-green-deep);
  color: var(--color-white);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-yellow {
  background: var(--color-yellow);
  color: var(--color-charcoal);
  font-weight: 800;
  border: none;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-yellow:hover {
  color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 201, 60, 0.45);
}

/* ============================================================
   TOPBAR (desktop only)
   ============================================================ */
.topbar {
  background: var(--color-green-deep);
  color: rgba(255,255,255,0.92);
  font-size: 0.86rem;
  padding: 7px 0;
}
.topbar a { color: rgba(255,255,255,0.92); }
.topbar a:hover { color: var(--color-yellow); }
.topbar .topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 22px; }
.topbar .topbar-item i { color: var(--color-yellow); }
.topbar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  margin-left: 6px;
  transition: background 0.15s ease;
}
.topbar .social-icons a:hover { background: var(--color-terracotta); }

@media (max-width: 991.98px) {
  .topbar { display: none; }
}

/* ============================================================
   MAIN NAVBAR
   ============================================================ */
.main-navbar {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo .brand-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.brand-logo .brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-green-deep);
  font-size: 1.18rem;
  line-height: 1.15;
}
.brand-logo .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--color-terracotta);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav-links a {
  font-weight: 600;
  color: var(--color-charcoal);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  position: relative;
  transition: color 0.15s ease;
}
.main-nav-links a:hover { color: var(--color-terracotta); }
.main-nav-links a.active { color: var(--color-terracotta); }
.main-nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 3px;
  background: var(--color-yellow);
  border-radius: 2px;
}

.nav-cta-btn {
  background: var(--color-green-deep);
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease;
}
.nav-cta-btn:hover { background: var(--color-terracotta); color: #fff; }

/* Hamburger button */
.hamburger-btn {
  background: var(--color-green-deep);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

@media (max-width: 991.98px) {
  .main-nav-links, .nav-cta-btn.desktop-only { display: none; }
  .hamburger-btn { display: flex; }
}

/* ============================================================
   MOBILE SIDEBAR (right to left)
   ============================================================ */
.mobile-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 58, 47, 0.55);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 82%;
  max-width: 340px;
  background: var(--color-green-deep);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-sidebar.active { transform: translateX(0); }

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-sidebar-header .brand-text { color: #fff; font-size: 1.05rem; }
.mobile-sidebar-header .brand-text small { color: var(--color-yellow); }
.mobile-sidebar-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
}
.mobile-sidebar-nav a {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-sidebar-nav a i { color: var(--color-yellow); width: 20px; }
.mobile-sidebar-nav a.active { color: var(--color-yellow); }

.mobile-sidebar-contact {
  margin-top: auto;
  padding: 18px 20px 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.mobile-sidebar-contact a i { color: var(--color-yellow); }
.mobile-sidebar-contact .social-icons { display: flex; gap: 8px; margin-top: 14px; }
.mobile-sidebar-contact .social-icons a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

body.sidebar-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, var(--color-green-deep) 0%, var(--color-green-deep-light) 60%);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .hero-slide { min-height: 460px; }
}
.hero-slide .brick-pattern-bg {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
}
.hero-slide .hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(27,58,47,0.92) 0%, rgba(27,58,47,0.55) 60%, rgba(27,58,47,0.35) 100%);
  z-index: 1;
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 620px;
  padding: 40px 0;
}
.hero-slide-content .section-eyebrow { color: var(--color-yellow); }
.hero-slide-content .section-eyebrow::before { background: var(--color-yellow); }
.hero-slide-content h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-slide-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  margin-bottom: 26px;
}
.hero-slide-content .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-slider .carousel-indicators [data-bs-target] {
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
}
.hero-slider .carousel-indicators .active { background-color: var(--color-yellow); }

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 6%; opacity: 0.85; }

/* ============================================================
   SERVICE CARDS (homepage row + services page)
   ============================================================ */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  border: 1px solid var(--color-border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.service-card .service-icon-wrap {
  width: 60px; height: 60px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--color-terracotta);
  margin-bottom: 18px;
}
.service-card .card-body { padding: 28px 24px; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { color: #5C6760; font-size: 0.94rem; margin-bottom: 18px; }
.service-card .service-link {
  font-weight: 700;
  color: var(--color-green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}
.service-card .service-link:hover { color: var(--color-terracotta); }
.service-card .service-link i { transition: transform 0.15s ease; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.product-card .product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-cream);
}
.product-card .product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-tag {
  position: absolute;
  top: 12px; left: 0;
  background: var(--color-terracotta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px 5px 14px;
  border-radius: 0 4px 4px 0;
}
.product-tag::after {
  content: "";
  position: absolute;
  left: 0; top: 100%;
  border-width: 4px 0 0 0;
  border-style: solid;
  border-color: var(--color-terracotta-dark) transparent transparent transparent;
}

.product-card .card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card .product-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 6px;
}
.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card p {
  font-size: 0.88rem;
  color: #5C6760;
  margin-bottom: 16px;
  flex-grow: 1;
}
.product-card .product-actions {
  display: flex;
  gap: 8px;
}
.product-card .product-actions a { flex: 1; justify-content: center; font-size: 0.86rem; padding: 9px 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  height: 100%;
  position: relative;
  border: 1px solid var(--color-border);
}
.testimonial-card .quote-icon {
  font-size: 2.2rem;
  color: var(--color-yellow);
  opacity: 0.8;
  margin-bottom: 12px;
}
.testimonial-card p.message { color: #44504A; font-size: 0.95rem; margin-bottom: 18px; min-height: 80px; }
.testimonial-card .stars { color: var(--color-yellow); font-size: 0.85rem; margin-bottom: 10px; }
.testimonial-card .customer-info { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-green-deep);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card .customer-name { font-weight: 700; font-size: 0.92rem; color: var(--color-green-deep); }
.testimonial-card .customer-location { font-size: 0.8rem; color: #899088; }

/* ============================================================
   GENERIC SECTION BACKGROUNDS
   ============================================================ */
.bg-green-deep { background-color: var(--color-green-deep); }
.bg-cream { background-color: var(--color-cream); }
.bg-white-section { background-color: var(--color-white); }
.text-yellow-accent { color: var(--color-yellow); }
.text-terracotta { color: var(--color-terracotta); }

/* ---------- Page header (breadcrumb banner) ---------- */
.page-header {
  background: var(--color-green-deep);
  padding: 50px 0 36px;
  position: relative;
  overflow: hidden;
}
.page-header h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 8px; }
.page-header .breadcrumb { margin-bottom: 0; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.75); font-weight: 600; }
.page-header .breadcrumb a:hover { color: var(--color-yellow); }
.page-header .breadcrumb-item.active { color: var(--color-yellow); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---------- Stats counter strip ---------- */
.stat-box { text-align: center; padding: 10px; }
.stat-box .stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--color-terracotta);
  line-height: 1;
}
.stat-box .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-green-deep);
  margin-top: 6px;
}

/* ---------- Why choose us ---------- */
.feature-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.feature-item .feature-icon {
  width: 52px; height: 52px;
  background: var(--color-terracotta);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; color: #5C6760; margin-bottom: 0; }

/* ---------- Brand strip ---------- */
.brand-strip-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  color: var(--color-green-deep);
  font-size: 0.85rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-charcoal); color: rgba(255,255,255,0.7); }
.site-footer h5 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,0.65); }
.site-footer a:hover { color: var(--color-yellow); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer .footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; }
.site-footer .footer-contact-item i { color: var(--color-yellow); margin-top: 3px; }
.site-footer .footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 8px;
}
.site-footer .footer-social a:hover { background: var(--color-terracotta); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* ---------- Floating WhatsApp button ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 1040;
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 6px 18px rgba(37,211,102,0.4); }
  70% { box-shadow: 0 6px 18px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.08); }
  100% { box-shadow: 0 6px 18px rgba(37,211,102,0.4); }
}

/* ---------- Filter sidebar (products page) ---------- */
.filter-box {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.filter-box h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-cream);
}
.filter-box .form-check { margin-bottom: 10px; }
.filter-box .form-check-label { font-size: 0.92rem; cursor: pointer; }
.filter-box .form-check-input:checked { background-color: var(--color-terracotta); border-color: var(--color-terracotta); }

/* ---------- Pagination ---------- */
.pagination .page-link {
  color: var(--color-green-deep);
  border-color: var(--color-border);
  font-weight: 600;
}
.pagination .page-item.active .page-link {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}
.pagination .page-link:hover { color: var(--color-terracotta); }

/* ---------- Contact page ---------- */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  height: 100%;
  text-align: center;
}
.contact-info-card .icon-circle {
  width: 56px; height: 56px;
  background: var(--color-cream);
  color: var(--color-terracotta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.contact-info-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.contact-info-card p { font-size: 0.9rem; color: #5C6760; margin-bottom: 4px; }

.working-hours-table { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.working-hours-table table { width: 100%; margin-bottom: 0; }
.working-hours-table th, .working-hours-table td { padding: 14px 20px; font-size: 0.92rem; }
.working-hours-table th { background: var(--color-green-deep); color: #fff; font-weight: 700; }

.contact-form-box { background: #fff; border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); }
.contact-form-box .form-control, .contact-form-box .form-select {
  border-color: var(--color-border);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
}
.contact-form-box .form-control:focus, .contact-form-box .form-select:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(217,73,31,0.12);
}
.contact-form-box label { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }

/* ---------- Product view page ---------- */
.product-gallery-main {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.product-gallery-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-detail-meta { background: #fff; border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); }
.product-detail-meta .brand-badge {
  display: inline-block;
  background: var(--color-cream);
  color: var(--color-green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.product-detail-meta h1 { font-size: 1.5rem; margin-bottom: 14px; }
.product-detail-meta .specs-list { list-style: none; padding: 0; margin: 18px 0; }
.product-detail-meta .specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-cream);
  font-size: 0.92rem;
}
.product-detail-meta .specs-list li span:first-child { color: #899088; font-weight: 600; }
.product-detail-meta .specs-list li span:last-child { font-weight: 700; color: var(--color-green-deep); }
.product-detail-meta .detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.related-products-section { background: var(--color-cream); }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 3rem; color: var(--color-border); margin-bottom: 16px; }
.empty-state p { color: #899088; }

/* ---------- About page ---------- */
.about-img-wrap { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.about-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.experience-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--color-terracotta);
  color: #fff;
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card-hover);
}
@media (max-width: 575.98px) {
  .experience-badge { width: 90px; height: 90px; bottom: -14px; right: -10px; }
}
.experience-badge .num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.experience-badge .txt { font-size: 0.65rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.4px; }

/* ---------- Scroll reveal (subtle) ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 42px; height: 42px;
  background: var(--color-green-deep);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1040;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }

/* ============================================================
   GALLERY — photo grid, lightbox, service preview sections
   ============================================================ */

/* --- Gallery service preview section (in services.php) --- */
.gallery-service-section {
  padding: 64px 0;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media (max-width: 575.98px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
.gallery-preview-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  position: relative;
  cursor: pointer;
}
.gallery-preview-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-preview-thumb:hover img { transform: scale(1.07); }
.gallery-preview-thumb .thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(27,58,47,0);
  transition: background 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-preview-thumb:hover .thumb-overlay { background: rgba(27,58,47,0.25); }

.gallery-empty-state {
  grid-column: 1 / -1;
  padding: 40px 20px;
  text-align: center;
  color: #899088;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 2px dashed var(--color-border);
}
.gallery-empty-state i { font-size: 2.4rem; display: block; margin-bottom: 10px; color: var(--color-border); }

/* --- Full gallery page grid --- */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 991.98px) {
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575.98px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
.gallery-page-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  position: relative;
  cursor: pointer;
}
.gallery-page-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-page-thumb:hover img { transform: scale(1.06); }
.gallery-page-thumb .caption-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-page-thumb:hover .caption-bar { opacity: 1; }
.gallery-page-thumb .zoom-icon {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--color-green-deep);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-page-thumb:hover .zoom-icon { opacity: 1; }

/* --- Lightbox --- */
.gallery-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.gallery-lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin-top: 12px;
  text-align: center;
}
.gallery-lightbox-close {
  position: fixed; top: 18px; right: 22px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.gallery-lightbox-close:hover { background: var(--color-terracotta); }
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.gallery-lightbox-prev { left: 14px; }
.gallery-lightbox-next { right: 14px; }
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover { background: var(--color-terracotta); }
@media (max-width: 575.98px) {
  .gallery-lightbox-prev { left: 6px; }
  .gallery-lightbox-next { right: 6px; }
}

