/* ==========================================================================
   KOVAI BRICKS — Custom Design System
   A premium construction-industry visual identity built on top of Bootstrap 5.
   The recurring visual motif is a "brick course": offset horizontal bars
   that echo the way bricks are laid — used as dividers, loaders and accents
   instead of generic card/eyebrow chrome.
   ========================================================================== */

/* ---------------------------------------------------------------------- *
 * 1. DESIGN TOKENS
 * ---------------------------------------------------------------------- */
:root {
  /* Brand Colors (New Emerald Theme) */
  --brick: #107548; /* Emerald Green */
  --brick-dark: #0b5032;
  --brick-light: #d1f2df;
  --clay: #0a1c18; /* Dark Charcoal/Forest */
  --clay-light: #18332a;
  
  /* Neutrals */
  --charcoal: #111827;
  --charcoal-2: #374151;
  --stone: #6b7280;
  --stone-light: #9ca3af;
  --stone-100: #efece7;
  --cream: #f3f5f4; /* Very light gray instead of cream */
  --sand: #ffffff;  /* White instead of sand */
  --white: #ffffff;
  --line: #e5e7eb;
  --line-on-dark: rgba(250, 246, 239, 0.14);

  /* Typography */
  --font-head: 'Manrope', 'Noto Sans Tamil', sans-serif;
  --font-body: 'Inter', 'Noto Sans Tamil', sans-serif;

  /* Spacing / shape */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-max: 1280px;
  --section-pad: clamp(2.5rem, 4.5vw, 4rem);

  /* Shadows (Premium soft depth) */
  --shadow-sm: 0 4px 14px rgba(33, 29, 26, 0.04);
  --shadow-md: 0 12px 32px rgba(33, 29, 26, 0.08);
  --shadow-lg: 0 24px 64px rgba(33, 29, 26, 0.12);
  --shadow-glass: 0 8px 32px rgba(33, 29, 26, 0.15);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-micro: 250ms;
  --dur-normal: 500ms;
  --dur-reveal: 900ms;
}

@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;
  }
}

/* ---------------------------------------------------------------------- *
 * 2. BASE
 * ---------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.lang-ta, .ta-text {
  font-family: 'Noto Sans Tamil', var(--font-body);
}

h1, h2, h3, h4, .font-head {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.12;
}

p { color: var(--stone); line-height: 1.7; }

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

.container-xl-custom {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

section { position: relative; }

.section-pad { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section-pad-sm { padding-top: clamp(1.75rem, 3.5vw, 2.75rem); padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }

/* Global Hover & Motion Utility Classes */
.transition-all { transition: all 0.35s var(--ease-out) !important; }

.hover-lift {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out) !important;
}
.hover-lift:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 16px 36px rgba(16, 117, 72, 0.12), 0 4px 12px rgba(33, 29, 26, 0.06) !important;
  border-color: rgba(16, 117, 72, 0.35) !important;
}
.hover-lift:hover i, .hover-lift:hover svg {
  transform: scale(1.15);
  color: var(--brick);
}
.hover-lift i, .hover-lift svg {
  transition: transform 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.hover-scale {
  transition: transform 0.35s var(--ease-out) !important;
}
.hover-scale:hover {
  transform: scale(1.03) !important;
}

/* Card & Image hover interactions */
.img-fluid.rounded-4 {
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.img-fluid.rounded-4:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.bg-charcoal { background: var(--charcoal); color: var(--cream); }
.bg-charcoal p { color: rgba(250, 246, 239, 0.72); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 { color: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-cream { background: var(--cream); }
.bg-brick { background: var(--brick); color: var(--cream); }

.text-brick { color: var(--brick) !important; }
.text-clay { color: var(--clay) !important; }
.text-stone { color: var(--stone) !important; }
.text-stone-light { color: var(--stone-light) !important; }
.text-cream { color: var(--cream) !important; }

/* ---------------------------------------------------------------------- *
 * 3. BRICK-COURSE MOTIF — signature structural device
 * ---------------------------------------------------------------------- */
.brick-course {
  display: flex;
  width: 100%;
  height: 10px;
  overflow: hidden;
}
.brick-course span {
  flex: 1 0 48px;
  height: 100%;
  background: var(--brick);
  margin-right: 3px;
}
.brick-course span:nth-child(even) { background: var(--clay); }
.brick-course.on-dark span { background: var(--clay); }
.brick-course.on-dark span:nth-child(even) { background: var(--brick-light); }
.brick-course-row-2 { transform: translateX(24px); margin-top: 3px; opacity: 0.55; }

.brick-divider {
  position: relative;
  height: 1px;
  background: var(--line);
  margin: 0 auto;
}

/* ---------------------------------------------------------------------- *
 * 4. TYPE SCALE
 * ---------------------------------------------------------------------- */
.display-1-custom { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
.display-2-custom { font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.015em; }
.h-section { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 1rem; }
.h-card { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
.lead-custom { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--stone); max-width: 58ch; line-height: 1.8; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--brick);
  margin-bottom: 0.85rem;
}
.kicker::before {
  content: '';
  width: 22px;
  height: 3px;
  background: var(--brick);
  display: inline-block;
}
.bg-charcoal .kicker, .bg-charcoal .kicker::before { color: var(--clay-light); background: var(--clay-light); }

/* ---------------------------------------------------------------------- *
 * 5. BUTTONS
 * ---------------------------------------------------------------------- */
.btn-brick, .btn-outline-cream, .btn-charcoal, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform var(--dur-micro) var(--ease-out), background var(--dur-micro) var(--ease-out), border-color var(--dur-micro) var(--ease-out), color var(--dur-micro) var(--ease-out);
  white-space: nowrap;
}

.btn-brick {
  background: var(--brick);
  color: var(--white);
  border: 1px solid var(--brick);
  transition: all 0.3s var(--ease-out);
}
.btn-brick:hover { 
  background: var(--clay); 
  border-color: var(--clay); 
  color: var(--white); 
  transform: translateY(-3px); 
  box-shadow: 0 10px 24px rgba(16, 117, 72, 0.25); 
}

.btn-whatsapp { 
  background: #2f7a4f; 
  color: var(--cream); 
  transition: all 0.3s var(--ease-out);
}
.btn-whatsapp:hover { 
  background: #256440; 
  transform: translateY(-3px); 
  color: var(--cream); 
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25); 
}

.btn-charcoal {
  background: var(--sand);
  color: var(--charcoal);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease-out);
}
.btn-charcoal:hover { 
  background: var(--white); 
  transform: translateY(-3px); 
  border-color: rgba(16, 117, 72, 0.3);
  box-shadow: 0 8px 20px rgba(33, 29, 26, 0.08); 
}

.btn-outline-cream {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease-out);
}
.btn-outline-cream:hover { 
  background: var(--white); 
  transform: translateY(-3px); 
  box-shadow: 0 8px 20px rgba(33, 29, 26, 0.08); 
}
.bg-charcoal .btn-outline-cream { color: var(--cream); border-color: var(--line-on-dark); }
.bg-charcoal .btn-outline-cream:hover { background: var(--cream); color: var(--charcoal); }

.btn-arrow { display: inline-flex; transition: transform var(--dur-micro) var(--ease-out); }
.btn-brick:hover .btn-arrow, .btn-charcoal:hover .btn-arrow, .btn-whatsapp:hover .btn-arrow { transform: translateX(4px); }

.link-underline {
  position: relative;
  font-weight: 700;
  font-family: var(--font-head);
}
.link-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-normal) var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------------------------------------------------------------------- *
 * 5. HEADER & NAVIGATION
 * ---------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: all var(--dur-micro) var(--ease-out);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 var(--line);
  padding: 0.5rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease-out);
}
.brand:hover {
  transform: translateY(-1px);
}
.brand-logo {
  height: 68px;
  width: 68px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(16, 117, 72, 0.22);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  flex-shrink: 0;
}
.brand:hover .brand-logo {
  transform: rotate(6deg) scale(1.08);
  box-shadow: 0 8px 24px rgba(16, 117, 72, 0.32) !important;
}
@media (max-width: 991.98px) {
  .brand-logo { height: 48px; width: 48px; }
  .brand { font-size: 1.05rem; gap: 0.6rem; margin-left: 0.5rem; }
  .hamburger { margin-right: 0.5rem; }
}
@media (max-width: 575.98px) {
  .brand-logo { height: 44px; width: 44px; }
  .brand { font-size: 1rem; margin-left: 0.35rem; }
  .hamburger { margin-right: 0.35rem; }
}
.brand-mark {
  width: 34px; height: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  flex-shrink: 0;
}
.brand-mark span { background: var(--brick); }
.brand-mark span:nth-child(2), .brand-mark span:nth-child(3) { background: var(--charcoal); }

.main-nav { display: flex; align-items: center; gap: 1.9rem; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--dur-micro) var(--ease-out);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--brick);
  transition: width var(--dur-normal) var(--ease-out);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--brick); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.header-cta .btn-brick, .header-cta .btn-whatsapp { padding: 0.65rem 1.15rem; font-size: 0.85rem; }

/* Language Switcher */
.lang-switch {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--cream);
  padding: 0.2rem 0.4rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: all 0.25s var(--ease-out);
}
.lang-switch:hover {
  border-color: rgba(16, 117, 72, 0.35);
  box-shadow: 0 2px 8px rgba(16, 117, 72, 0.1);
}
.lang-switch button {
  background: transparent;
  border: none;
  padding: 0.25rem 0.55rem;
  color: var(--stone);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 14px;
  transition: all 0.25s var(--ease-out);
  line-height: 1.2;
}
.lang-switch button:hover {
  color: var(--brick);
}
.lang-switch button.active {
  background: var(--brick);
  color: var(--white) !important;
  box-shadow: 0 2px 6px rgba(16, 117, 72, 0.3);
}

.mobile-menu .lang-switch {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.mobile-menu .lang-switch button {
  color: rgba(255, 255, 255, 0.7);
}
.mobile-menu .lang-switch button.active {
  background: var(--brick);
  color: #ffffff !important;
}

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 20px; height: 2px; background: var(--charcoal);
  transition: transform var(--dur-normal) var(--ease-out), opacity var(--dur-micro) var(--ease-out);
}
.hamburger.is-open { z-index: 1001; border-color: rgba(255,255,255,0.3); }
.hamburger.is-open span { background: #ffffff; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex; flex-direction: column;
  padding: 5rem 1.75rem 2rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--dur-reveal) var(--ease-out), opacity var(--dur-reveal) var(--ease-out);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.2s ease, color 0.2s ease;
}
.mobile-menu-close:hover {
  color: #34d399;
  transform: scale(1.1);
}
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-on-dark);
  transition: color 0.2s ease, transform 0.2s ease;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: #34d399;
  transform: translateX(6px);
}
.mobile-menu .mobile-cta { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.8rem; }

@media (max-width: 991.98px) {
  .main-nav, .header-cta .btn-outline-cream { display: none; }
  .header-cta .btn-brick { display: none; }
  .hamburger { display: inline-flex; }
}

/* ---------------------------------------------------------------------- *
 * 7. HERO (Clean Real Estate Template)
 * ---------------------------------------------------------------------- */
.hero-clean {
  position: relative;
  padding-top: 105px;
  padding-bottom: 24px;
  background: var(--cream);
  min-height: auto;
  display: flex;
  flex-direction: column;
}
.hero-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero-clean { padding-top: 60px; }
  .hero-clean-grid { grid-template-columns: 1fr; row-gap: 0; }
  .hero-clean-visual { 
    order: -1; 
    margin-bottom: 0; 
    margin-left: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
    margin-right: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
  }
  .hero-clean-content { text-align: center; order: 0; padding-top: 2rem; }
  .hero-clean-content .d-flex { justify-content: center; }
}
.hero-clean-content {
  padding-right: clamp(1rem, 4vw, 3rem);
}
.hero-clean-visual {
  height: 100%;
}
.hero-poster-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.hero-poster-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(16, 117, 72, 0.12), 0 8px 24px rgba(33, 29, 26, 0.08);
}
.hero-poster-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.hero-poster-wrap:hover .hero-poster-img {
  transform: scale(1.02);
}
.hero-poster-wrap .position-absolute {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.hero-poster-wrap .position-absolute:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 36px rgba(16, 117, 72, 0.2) !important;
}
@media (max-width: 991.98px) {
  .hero-poster-wrap { max-width: 100%; margin: 0; border-radius: 0; }
  .hero-poster-wrap .carousel-inner { border-radius: 0 !important; }
  .hero-poster-img { aspect-ratio: 4 / 3; object-fit: cover; }
}

/* Hero Search Form Interaction */
#heroSearchForm {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
#heroSearchForm:hover {
  box-shadow: 0 18px 45px rgba(16, 117, 72, 0.12), 0 4px 14px rgba(33, 29, 26, 0.06) !important;
}
#heroSearchForm .form-select {
  cursor: pointer;
  transition: color 0.25s var(--ease-out);
}
#heroSearchForm .form-select:hover {
  color: var(--brick) !important;
}
@keyframes morph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
.hero-slider {
  width: 100%; height: 100%;
  position: relative;
}
.hero-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  animation: hero-crossfade 15s infinite;
}
.hero-slider img:nth-child(1) { animation-delay: 0s; }
.hero-slider img:nth-child(2) { animation-delay: 5s; }
.hero-slider img:nth-child(3) { animation-delay: 10s; }

@keyframes hero-crossfade {
  0% { opacity: 0; transform: scale(1.1); }
  15% { opacity: 1; transform: scale(1.05); }
  33% { opacity: 1; transform: scale(1.02); }
  45% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}

/* Floating Premium Badge */
.floating-badge {
  position: absolute;
  bottom: 10%;
  left: -10%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,1);
}
@media (max-width: 991.98px) {
  .floating-badge { left: 5%; bottom: -5%; }
}
.floating-badge .icon {
  width: 48px; height: 48px;
  background: var(--brick);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.floating-badge .text .title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.2;
}
.floating-badge .text .sub {
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 600;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Background Parallax Shapes */
.hero-shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.hero-shape.s1 {
  width: 400px; height: 400px;
  background: var(--brick-light);
  top: -10%; right: -10%;
  animation: orbit 15s linear infinite;
}
.hero-shape.s2 {
  width: 300px; height: 300px;
  background: var(--clay-light);
  bottom: -5%; left: -5%;
  animation: orbit 20s linear infinite reverse;
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(20px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

/* ---------------------------------------------------------------------- *
 * 8. TRUST STRIP
 * ---------------------------------------------------------------------- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.trust-strip .row-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  transition: all 0.3s var(--ease-out);
  cursor: default;
}
.trust-item:hover {
  background: var(--white);
  transform: translateY(-3px);
}
.trust-item i, .trust-item svg {
  color: var(--brick);
  transition: transform 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.trust-item:hover i, .trust-item:hover svg {
  transform: scale(1.18);
  color: var(--clay);
}
.trust-item:last-child { border-right: none; }
@media (max-width: 767.98px) {
  .trust-strip .row-items { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
}

/* ---------------------------------------------------------------------- *
 * 9. REVEAL ON SCROLL (fallback for AOS off / custom sections)
 * ---------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="left"].is-visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="right"].is-visible { transform: translateX(0); }

/* ---------------------------------------------------------------------- *
 * 9. ABOUT / PRODUCT ZIGZAG LAYOUT
 * ---------------------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-split.zigzag-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
@media (min-width: 992px) {
  .about-split.zigzag-reverse .about-image { order: 2; }
  .about-split.zigzag-reverse > div:not(.about-image) { order: 1; }
}
@media (max-width: 991.98px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split.zigzag-reverse { grid-template-columns: 1fr; }
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
  transform: translateY(-20px);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-quote {
  margin: 1.75rem 0;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 4px solid var(--brick);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--charcoal);
  line-height: 1.4;
}

/* ---------------------------------------------------------------------- *
 * 11. PRODUCT
 * ---------------------------------------------------------------------- */
.product-panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 991.98px) { .product-panel { grid-template-columns: 1fr; } }
.product-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3.4;
}
.product-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.product-visual:hover img { transform: scale(1.055); }
.spec-panel {
  position: absolute; right: 1rem; bottom: -1.5rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
}
.spec-panel .spec-label { font-size: 0.72rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }
.spec-panel .spec-value { font-size: 1.35rem; font-weight: 800; }

.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 1.5rem; }
.feature-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  padding: 0.4rem 0;
}
.feature-list li svg { color: var(--brick); flex-shrink: 0; transition: transform var(--dur-micro) var(--ease-out); }
.feature-list li:hover svg { transform: translateX(3px); }
@media (max-width: 575.98px) { .feature-list { grid-template-columns: 1fr; } }

.note-box {
  margin-top: 1.5rem;
  padding: 0.9rem 1.1rem;
  background: var(--sand);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--stone);
  border-left: 3px solid var(--clay);
}

/* ---------------------------------------------------------------------- *
 * 12. WHY US — numbered editorial blocks
 * ---------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 991.98px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: all var(--dur-normal) var(--ease-out);
}
.why-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--brick);
}
.why-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brick);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------------------------------------------------------------------- *
 * 13. SERVICE AREAS
 * ---------------------------------------------------------------------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 991.98px) { .area-grid { grid-template-columns: 1fr; } }
.area-map-visual {
  position: relative;
  aspect-ratio: 4/3.6;
  background: var(--charcoal);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.area-map-visual svg { width: 100%; height: 100%; }
.area-pin-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  fill: var(--cream);
}
.area-chip-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
.area-chip {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: all 0.25s var(--ease-out);
  cursor: default;
}
.area-chip:hover {
  background: var(--brick);
  color: var(--white);
  border-color: var(--brick);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(16, 117, 72, 0.2);
}

/* ---------------------------------------------------------------------- *
 * 14. BULK ORDER (dark, large bg image feel via gradient)
 * ---------------------------------------------------------------------- */
.bulk-section {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a281f 100%);
  color: var(--cream);
  overflow: hidden;
}
.bulk-section .bulk-bg-course { position: absolute; bottom: 0; left: 0; right: 0; opacity: 0.9; }
.bulk-content { position: relative; z-index: 2; max-width: 680px; }

/* ---------------------------------------------------------------------- *
 * 15. HOW TO ORDER — steps
 * ---------------------------------------------------------------------- */
.steps-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; counter-reset: step; }
@media (max-width: 991.98px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { .steps-row { grid-template-columns: 1fr; } }
.step-item { 
  position: relative; 
  padding-top: 1.4rem; 
  border-top: 2px solid var(--line); 
  transition: all 0.3s var(--ease-out);
}
.step-item:hover {
  border-top-color: var(--brick);
  transform: translateY(-4px);
}
.step-item .step-num { font-family: var(--font-head); font-weight: 800; color: var(--brick); font-size: 0.85rem; margin-bottom: 0.6rem; }
.step-item p { font-size: 0.88rem; margin-bottom: 0; }

/* ---------------------------------------------------------------------- *
 * 16. QUALITY / STORY SECTION
 * ---------------------------------------------------------------------- */
.quality-flow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  margin: 2rem 0;
}
.quality-flow .arrow { color: var(--brick); font-weight: 400; }
.quality-final-quote {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.35;
  color: var(--charcoal);
}

/* ---------------------------------------------------------------------- *
 * 17. CALCULATOR
 * ---------------------------------------------------------------------- */
.calc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}
.calc-card label { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--charcoal); }
.calc-card .form-control {
  border-radius: var(--radius-sm);
  border-color: var(--line);
  padding: 0.7rem 0.9rem;
}
.calc-card .form-control:focus { border-color: var(--brick); box-shadow: 0 0 0 3px rgba(154,51,36,0.12); }
.calc-result {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--sand);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--brick);
  display: none;
}
.calc-result.is-visible { display: block; animation: fade-up var(--dur-reveal) var(--ease-out); }
.calc-result .result-value { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--brick); }
.calc-result .result-disclaimer { font-size: 0.82rem; color: var(--stone); margin-top: 0.6rem; margin-bottom: 0; }
.calc-error { color: var(--brick-dark); font-size: 0.85rem; margin-top: 0.4rem; display: none; }
.calc-error.is-visible { display: block; }
.is-invalid-field { border-color: var(--brick) !important; }

/* ---------------------------------------------------------------------- *
 * 18. TESTIMONIALS
 * ---------------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial-card p.quote { font-size: 1rem; color: var(--charcoal); margin-bottom: 1.2rem; }
.testimonial-meta { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brick); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.testimonial-name { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.8rem; color: var(--stone-light); }
.placeholder-badge {
  font-size: 0.68rem; font-weight: 700; font-family: var(--font-head);
  color: var(--clay); text-transform: uppercase; letter-spacing: 0.04em;
}

/* ---------------------------------------------------------------------- *
 * 19. GALLERY
 * ---------------------------------------------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.gallery-filter-btn {
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--line);
  background: transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--stone);
  cursor: pointer;
  transition: all var(--dur-micro) var(--ease-out);
}
.gallery-filter-btn.active, .gallery-filter-btn:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 991.98px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 1/1; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: attr(data-cat);
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(33,29,26,0.75), transparent);
  opacity: 0; transition: opacity var(--dur-micro) var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.hidden-item { display: none; }

/* ---------------------------------------------------------------------- *
 * 20. FAQ ACCORDION (custom skin over Bootstrap accordion)
 * ---------------------------------------------------------------------- */
.faq-accordion .accordion-item { background: transparent; border: none; border-bottom: 1px solid var(--line); border-radius: 0; }
.faq-accordion .accordion-button {
  background: transparent; box-shadow: none;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  color: var(--charcoal); padding: 1.35rem 0;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--brick); }
.faq-accordion .accordion-button::after { width: 1.1rem; height: 1.1rem; background-size: 1.1rem; }
.faq-accordion .accordion-body { padding: 0 0 1.5rem; color: var(--stone); }

/* ---------------------------------------------------------------------- *
 * 21. FINAL CTA
 * ---------------------------------------------------------------------- */
.final-cta { background: var(--charcoal); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.final-cta .cta-buttons { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 2.2rem; }

/* ---------------------------------------------------------------------- *
 * 22. FOOTER
 * ---------------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: rgba(250,246,239,0.75); padding-top: 4rem; }
.site-footer h5 { font-family: var(--font-head); color: var(--cream); font-weight: 700; font-size: 0.95rem; margin-bottom: 1.2rem; }
.site-footer a { 
  color: rgba(255, 255, 255, 0.72); 
  font-size: 0.9rem; 
  transition: all 0.25s var(--ease-out);
}
.site-footer a:hover { 
  color: #34d399 !important; 
}
.site-footer .footer-links a {
  display: inline-block;
  transition: transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.site-footer .footer-links a:hover {
  color: #34d399 !important;
  transform: translateX(5px);
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-bottom { border-top: 1px solid var(--line-on-dark); margin-top: 3rem; padding: 1.5rem 0; font-size: 0.8rem; }
.footer-bottom-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }

/* ---------------------------------------------------------------------- *
 * 23. FLOATING / STICKY CTA (mobile)
 * ---------------------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 998;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 18px rgba(33,29,26,0.08);
}
.mobile-cta-bar .row-flex { display: flex; gap: 0.6rem; }
.mobile-cta-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem;
}
@media (max-width: 767.98px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}

.desktop-float-cta {
  position: fixed; right: 1.75rem; bottom: 1.75rem; z-index: 998;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.desktop-float-cta a {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(33,29,26,0.22);
  transition: transform var(--dur-micro) var(--ease-out);
}
.desktop-float-cta a:hover { transform: scale(1.08); }
.float-calc-btn {
  background: var(--brick) !important;
  color: #ffffff !important;
  position: relative;
  animation: calcPulse 2.5s ease-in-out infinite;
}
@keyframes calcPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(16, 117, 72, 0.25); }
  50% { box-shadow: 0 8px 30px rgba(16, 117, 72, 0.55); }
}
@media (max-width: 767.98px) { .desktop-float-cta { display: none; } }

/* Back to top */
.back-to-top {
  position: fixed; left: 1.75rem; bottom: 6.5rem; z-index: 997;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brick); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--dur-normal) var(--ease-out);
  box-shadow: var(--shadow-md);
}
.back-to-top:hover { background: var(--clay); transform: translateY(-2px); opacity: 1; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 767.98px) { .back-to-top { bottom: 6.2rem; left: 1rem; } }

/* ---------------------------------------------------------------------- *
 * 24. PAGE HEADER (interior pages)
 * ---------------------------------------------------------------------- */
.page-header {
  position: relative;
  padding-top: clamp(7.5rem, 12vw, 9.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: 
    linear-gradient(135deg, rgba(10, 28, 24, 0.72) 0%, rgba(17, 24, 39, 0.65) 100%),
    var(--page-header-bg, url('../img/bg-1.jpeg')) center/cover no-repeat;
  border-bottom: none;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brick), var(--brick-dark), var(--brick));
}
.page-header .display-2-custom {
  color: #ffffff;
}
.page-header .lead-custom {
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb-custom { 
  font-size: 0.85rem; 
  color: rgba(255, 255, 255, 0.6); 
  font-family: var(--font-head); 
  font-weight: 600; 
  margin-bottom: 0.8rem; 
  letter-spacing: 0.02em;
}
.breadcrumb-custom a { 
  color: rgba(255, 255, 255, 0.7); 
  transition: color 0.25s var(--ease-out);
}
.breadcrumb-custom a:hover { 
  color: #34d399; 
}

/* ---------------------------------------------------------------------- *
 * 25. UTILITY
 * ---------------------------------------------------------------------- */
.divider-line { height: 1px; background: var(--line); border: none; margin: 0; }
.rounded-custom { border-radius: var(--radius-md); }
:focus-visible { outline: 2.5px solid var(--brick); outline-offset: 2px; }
img { max-width: 100%; display: block; }

.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(33,29,26,0.94); z-index: 1100;
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(250,246,239,0.12); color: var(--cream);
  display: flex; align-items: center; justify-content: center; border: none; cursor: pointer;
}

/* ---------------------------------------------------------------------- *
 * 26. CATEGORY TILES & ADVANCED HOVER ANIMATIONS
 * ---------------------------------------------------------------------- */
.category-tile-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
  height: 100%;
}

.category-tile {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, box-shadow;
  z-index: 1;
}

/* Glass/Shimmer Light Sweep on Hover */
.category-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    rgba(16, 117, 72, 0.08),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  pointer-events: none;
  z-index: 2;
}

.category-tile-link:hover .category-tile::before,
.category-tile:hover::before {
  left: 150%;
}

/* Card Lift & Glowing Shadow */
.category-tile-link:hover .category-tile,
.category-tile:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--brick) !important;
  box-shadow: 0 20px 38px -10px rgba(16, 117, 72, 0.22), 0 0 0 1.5px rgba(16, 117, 72, 0.35) !important;
}

/* Icon Container & Spring Animation */
.category-tile .tile-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.category-tile .tile-icon-circle i {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Standard Cards Icon (1 to 4) */
.category-tile .tile-icon-circle.bg-cream {
  background-color: #f3f5f4 !important;
}
.category-tile .tile-icon-circle.bg-cream i {
  color: var(--brick) !important;
}

.category-tile-link:hover .tile-icon-circle.bg-cream,
.category-tile:hover .tile-icon-circle.bg-cream {
  background-color: var(--brick) !important;
  box-shadow: 0 10px 22px rgba(16, 117, 72, 0.35) !important;
  transform: scale(1.15) rotate(6deg);
}

.category-tile-link:hover .tile-icon-circle.bg-cream i,
.category-tile:hover .tile-icon-circle.bg-cream i {
  color: #ffffff !important;
  transform: scale(1.12);
}

/* Exposed Red Card (Card 5) */
.category-tile .tile-icon-circle.bg-brick {
  background-color: var(--brick) !important;
  box-shadow: 0 6px 16px rgba(16, 117, 72, 0.25);
}
.category-tile .tile-icon-circle.bg-brick i {
  color: #ffffff !important;
}

.category-tile-link:hover .tile-icon-circle.bg-brick,
.category-tile:hover .tile-icon-circle.bg-brick {
  background-color: var(--brick-dark) !important;
  box-shadow: 0 12px 26px rgba(11, 80, 50, 0.45) !important;
  transform: scale(1.18) rotate(-6deg);
}

.category-tile-link:hover .tile-icon-circle.bg-brick i,
.category-tile:hover .tile-icon-circle.bg-brick i {
  color: #ffffff !important;
  transform: scale(1.12);
}

/* Badge Hover Animation */
.category-tile .badge {
  transition: all 0.3s ease;
}
.category-tile-link:hover .badge,
.category-tile:hover .badge {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(16, 117, 72, 0.2);
}

/* Title & Text Hover Animation */
.category-tile h3 {
  transition: color 0.3s ease;
}
.category-tile-link:hover h3,
.category-tile:hover h3 {
  color: var(--brick) !important;
}

.category-tile .text-stone {
  transition: color 0.3s ease;
}
.category-tile-link:hover .text-stone,
.category-tile:hover .text-stone {
  color: var(--charcoal) !important;
}


