/* ============================================================
   Sunrize Paints — Main Stylesheet
   Primary Brand: #FF6B2B (Sunrise Orange)
   Accent: #1A3C6B (Deep Navy)
   ============================================================ */

/* ---------- Google Font Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --brand-orange: #FF6B2B;
  --brand-orange-dark: #e05520;
  --brand-orange-light: #fff4ef;
  --brand-navy: #1A3C6B;
  --brand-navy-dark: #122c52;
  --brand-navy-light: #eef2f9;
  --text-primary: #1a1a2e;
  --text-secondary: #6b7280;
  --border-color: #e5e7eb;
  --bg-light: #f8f9fc;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-orange-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--brand-navy-dark);
  padding: 8px 0;
  font-size: 13px;
}

.topbar-link {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: var(--transition);
}

.topbar-link:hover {
  color: var(--brand-orange);
}

.topbar-social {
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  transition: var(--transition);
}

.topbar-social:hover {
  color: var(--brand-orange);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
#mainNavbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  padding: 12px 0;
  transition: var(--transition);
}

.navbar-brand .logo-img {
  object-fit: contain;
  max-height: 100px;
  width: auto;
  transition: var(--transition);
}

.logo-img-footer {
  object-fit: contain;
  max-height: 120px;
  width: auto;
  transition: var(--transition);
}

.logo-img:hover, 
.logo-img-footer:hover {
  transform: scale(1.05);
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand-orange);
  background: var(--brand-orange-light);
}

/* ---------- Buttons ---------- */
.btn-primary-brand {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 43, .35);
}

.btn-primary-brand:hover {
  background: linear-gradient(135deg, var(--brand-orange-dark), #c44018);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 43, .45);
}

.btn-outline-brand {
  border: 2px solid var(--brand-orange);
  color: var(--brand-orange);
  border-radius: 50px;
  font-weight: 600;
  padding: 8px 28px;
  transition: var(--transition);
}

.btn-outline-brand:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white-brand {
  background: #fff;
  color: var(--brand-navy);
  border-radius: 50px;
  font-weight: 700;
  padding: 10px 28px;
  transition: var(--transition);
}

.btn-white-brand:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white-brand {
  border: 2px solid rgba(255, 255, 255, .6);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 28px;
  transition: var(--transition);
}

.btn-outline-white-brand:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}

/* ---------- Section Helpers ---------- */
.section-pad {
  padding: 90px 0;
}

.section-pad-slim {
  padding: 20px 0;
}

.bg-light-brand {
  background: var(--bg-light);
}

.bg-dark-brand {
  background: var(--brand-navy-dark);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--brand-orange-light);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-label-light {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(255, 107, 43, .15);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-orange), #ff9a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--brand-navy-dark) 0%, #1e4d8c 60%, #2d6abf 100%);
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 43, .2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-overlay {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  color: var(--brand-orange);
  background: rgba(255, 107, 43, .15);
  border: 1px solid rgba(255, 107, 43, .3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
}

.hero-trust {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 24px;
}

.trust-item {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .5);
  font-size: 22px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* Hero decorative paint cards */
.hero-image-wrap {
  position: relative;
  height: 500px;
}

.hero-paint-card {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 4px solid #fff;
  overflow: hidden;
  background: var(--bg-light);
}

.hero-paint-card.card-1 {
  width: 240px;
  height: 330px;
  top: 15px;
  right: 10%;
  z-index: 3;
  transform: rotate(6deg);
  animation: float1 6s ease-in-out infinite;
}

.hero-paint-card.card-2 {
  width: 190px;
  height: 260px;
  top: 110px;
  right: 48%;
  z-index: 2;
  transform: rotate(-12deg);
  animation: float2 7s ease-in-out infinite;
}

.hero-paint-card.card-3 {
  width: 170px;
  height: 230px;
  top: 220px;
  right: -5%;
  z-index: 4;
  transform: rotate(14deg);
  animation: float1 5s ease-in-out infinite;
}

.hero-paint-blob {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 107, 43, .08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes float1 {

  0%,
  100% {
    transform: rotate(6deg) translateY(0)
  }

  50% {
    transform: rotate(6deg) translateY(-15px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: rotate(-8deg) translateY(0)
  }

  50% {
    transform: rotate(-8deg) translateY(-20px)
  }
}

/* ---------- Stats Section ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  padding: 60px 0;
}

.stat-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .2);
}

.stat-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 12px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  margin-top: 6px;
  font-weight: 500;
}

/* ---------- About Intro ---------- */
.about-image-grid {
  position: relative;
}

.paint-placeholder-main {
  background: linear-gradient(135deg, var(--brand-orange-light), #ffd7c2);
  border-radius: var(--radius-xl);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--brand-orange);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand-navy-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-orange);
}

.badge-text {
  font-size: 12px;
  opacity: .8;
}

/* ---------- Feature List ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  color: var(--brand-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Category Cards ---------- */
.category-card {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.category-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 107, 43, .15);
}

.category-icon {
  width: 72px;
  height: 72px;
  background: var(--brand-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-orange);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--brand-orange);
  color: #fff;
  transform: scale(1.1);
}

.category-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.category-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.category-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange);
}

.card-link {
  text-decoration: none;
  display: block;
  height: 100%;
  color: inherit;
}

/* ---------- Product Cards ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-img-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--brand-orange-light), var(--brand-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--brand-orange);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
}

/* ---------- Service Cards (Dark) ---------- */
.service-card-dark {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
}

.service-card-dark:hover {
  background: rgba(255, 107, 43, .15);
  border-color: var(--brand-orange);
  transform: translateY(-6px);
}

.service-icon-dark {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 43, .2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-orange);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card-dark:hover .service-icon-dark {
  background: var(--brand-orange);
  color: #fff;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange);
}

.service-link:hover {
  color: #ff9a5c;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--brand-orange-light), var(--brand-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--brand-orange);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 60, 107, .8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-title {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

/* ---------- Gallery Page Cards ---------- */
.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
}

.gallery-placeholder-card {
  height: 260px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-secondary);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 60, 107, .85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-tag-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-card-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 4px 0;
}

.gallery-card-loc {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  margin: 0;
}

.gallery-zoom-icon {
  color: #fff;
  font-size: 1.5rem;
  position: absolute;
  top: 14px;
  right: 14px;
}

.badge-category {
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-light);
  color: var(--text-secondary);
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
}

.badge-category:hover,
.badge-category.active {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-secondary);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--brand-navy-dark), #1e4d8c);
  border-radius: var(--radius-xl);
  padding: 60px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brand-navy-dark) 0%, #1e4d8c 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-sm {
  background: var(--bg-light);
  padding: 24px 0;
}

.page-hero-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, .75);
  font-size: 1.1rem;
  margin: 0;
}

.breadcrumb-light {
  margin-bottom: 20px;
}

.breadcrumb-light .breadcrumb-item a {
  color: rgba(255, 255, 255, .65);
}

.breadcrumb-light .breadcrumb-item a:hover {
  color: var(--brand-orange);
}

.breadcrumb-light .breadcrumb-item.active {
  color: rgba(255, 255, 255, .45);
}

.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

/* ---------- Filter Bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}

/* ---------- Contact Page ---------- */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-color);
}

.form-control-brand {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  transition: var(--transition);
}

.form-control-brand:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 43, .15);
  outline: none;
}

.contact-info-wrap {
  padding-left: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.bg-orange {
  background: var(--brand-orange);
}

.bg-blue {
  background: #3b82f6;
}

.bg-green {
  background: #10b981;
}

.bg-purple {
  background: #8b5cf6;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ---------- About Page ---------- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand-orange);
}

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-orange);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline-content h5 {
  font-size: 15px;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.mv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.mv-card:hover,
.mv-card.featured {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 24px;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.values-list li:last-child {
  border: none;
}

.capability-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
}

.capability-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.capability-card i {
  font-size: 2.8rem;
  color: var(--brand-orange);
  margin-bottom: 16px;
  display: block;
}

.capability-card h5 {
  font-weight: 800;
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Product Detail ---------- */
.product-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.product-img-placeholder-lg {
  height: 400px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--text-secondary);
}

.product-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2.5px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--brand-orange);
  transform: scale(1.05);
}

.product-detail-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-badge-lg {
  background: var(--brand-orange);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
}

.product-detail-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.product-specs {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
  border: none;
}

.spec-label {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
}

.spec-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

/* ---------- Services Page ---------- */
.service-placeholder-img {
  height: 360px;
  background: linear-gradient(135deg, var(--brand-navy-light), var(--brand-orange-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--brand-orange);
}

.service-icon-sm {
  width: 56px;
  height: 56px;
  background: var(--brand-orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-orange);
  margin-bottom: 20px;
}

.service-feature-list {
  list-style: none;
  padding: 0;
}

.service-feature-list li {
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border-color);
}

.service-feature-list li:last-child {
  border: none;
}

.service-cta-card {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.other-service-link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.other-service-link:last-child {
  border: none;
}

.other-service-link:hover {
  color: var(--brand-orange);
  padding-left: 6px;
}

.hero-service-icon {
  font-size: 3rem;
  color: var(--brand-orange);
}

.category-hero-banner {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border: 1.5px solid var(--border-color);
}

.category-hero-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--brand-orange);
}

/* ---------- Empty State ---------- */
.empty-state i {
  filter: grayscale(100%);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brand-navy-dark);
  color: rgba(255, 255, 255, .8);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-about {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.logo-img-footer {
  filter: brightness(0) invert(1);
  opacity: .9;
  max-height: 36px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: var(--transition);
  font-size: 16px;
}

.footer-social-link:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.footer-contact-list li i {
  color: var(--brand-orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, .6);
}

.footer-contact-list li a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45);
}

.footer-bottom a:hover {
  color: var(--brand-orange);
}

/* ---------- Utilities ---------- */
.mb-6 {
  margin-bottom: 80px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .section-pad {
    padding: 60px 0;
  }

  .cta-box {
    padding: 40px 28px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-img-badge {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
}

/* ---------- Animations / AOS Alternatives ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

/* ---------- About Page — Product Highlights Grid ---------- */
.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  cursor: default;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
  border-color: transparent;
}

.hc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #fff;
  transition: var(--transition);
}

.highlight-card:hover .hc-icon {
  transform: scale(1.12) rotate(-4deg);
}

.hc-body h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.hc-body p {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Colour Themes */
.hc-orange {
  border-color: rgba(255, 107, 43, .25);
}

.hc-orange .hc-icon {
  background: linear-gradient(135deg, #FF6B2B, #ff9a5c);
}

.hc-orange:hover {
  box-shadow: 0 12px 32px rgba(255, 107, 43, .18);
}

.hc-blue {
  border-color: rgba(26, 60, 107, .2);
}

.hc-blue .hc-icon {
  background: linear-gradient(135deg, #1A3C6B, #2d6abf);
}

.hc-blue:hover {
  box-shadow: 0 12px 32px rgba(26, 60, 107, .15);
}

.hc-teal {
  border-color: rgba(13, 148, 136, .2);
}

.hc-teal .hc-icon {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.hc-teal:hover {
  box-shadow: 0 12px 32px rgba(13, 148, 136, .15);
}

.hc-purple {
  border-color: rgba(109, 40, 217, .2);
}

.hc-purple .hc-icon {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
}

.hc-purple:hover {
  box-shadow: 0 12px 32px rgba(109, 40, 217, .15);
}

.hc-green {
  border-color: rgba(22, 163, 74, .2);
}

.hc-green .hc-icon {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

.hc-green:hover {
  box-shadow: 0 12px 32px rgba(22, 163, 74, .15);
}

.hc-navy {
  border-color: rgba(15, 23, 42, .2);
}

.hc-navy .hc-icon {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.hc-navy:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, .15);
}

.hc-rust {
  border-color: rgba(194, 65, 12, .2);
}

.hc-rust .hc-icon {
  background: linear-gradient(135deg, #c2410c, #ea580c);
}

.hc-rust:hover {
  box-shadow: 0 12px 32px rgba(194, 65, 12, .15);
}

.hc-olive {
  border-color: rgba(101, 163, 13, .2);
}

.hc-olive .hc-icon {
  background: linear-gradient(135deg, #65a30d, #a3e635);
}

.hc-olive:hover {
  box-shadow: 0 12px 32px rgba(101, 163, 13, .15);
}

@media (max-width: 576px) {
  .about-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Services Page
   ============================================================ */

/* Hero */
.services-hero {
  background: linear-gradient(135deg, var(--brand-navy-dark) 0%, #1e4d8c 60%, #2563b0 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 43, .18) 0%, transparent 70%);
  border-radius: 50%;
}

.services-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.services-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .75);
  max-width: 500px;
  line-height: 1.75;
}

/* Hero visual */
.services-hero-visual {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .12);
}

.shv-ring-1 {
  width: 100%;
  height: 100%;
}

.shv-ring-2 {
  width: 70%;
  height: 70%;
  border-color: rgba(255, 107, 43, .25);
}

.shv-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  z-index: 1;
}

.shv-cell {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  animation: floatCell 4s ease-in-out infinite;
}

.shv-c1 {
  background: linear-gradient(135deg, #FF6B2B, #ff9a5c);
  animation-delay: 0s;
}

.shv-c2 {
  background: linear-gradient(135deg, #1A3C6B, #2d6abf);
  animation-delay: .5s;
}

.shv-c3 {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  animation-delay: 1s;
}

.shv-c4 {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  animation-delay: 1.5s;
}

@keyframes floatCell {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Services Grid */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-card {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-orange);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: var(--transition);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
  border-color: transparent;
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
  transition: var(--transition);
}

.svc-card:hover .svc-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

.svc-or {
  background: linear-gradient(135deg, #FF6B2B, #ff9a5c);
}

.svc-bl {
  background: linear-gradient(135deg, #1A3C6B, #2d6abf);
}

.svc-tl {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.svc-pu {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
}

.svc-gr {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

.svc-nv {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.svc-rs {
  background: linear-gradient(135deg, #c2410c, #ea580c);
}

.svc-ol {
  background: linear-gradient(135deg, #65a30d, #a3e635);
}

.svc-content h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.svc-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-bullets li {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-bullets li i {
  color: var(--brand-orange);
  font-size: 14px;
  flex-shrink: 0;
}

.svc-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: var(--transition);
}

.svc-cta:hover {
  color: var(--brand-orange-dark);
  gap: 8px;
}

/* Advantage Cards */
.adv-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 24px;
  height: 100%;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.adv-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.adv-card:hover .adv-icon {
  transform: scale(1.1);
}

.adv-card h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.adv-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding: 70px 0 50px;
  }
}

@media (max-width: 576px) {
  .about-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Services Catalog Page
   ============================================================ */

/* Sidebar */
.svc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

.svc-sidebar-block {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.svc-sidebar-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.svc-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-filter-link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}

.svc-filter-link:hover,
.svc-filter-link.active {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-weight: 600;
}

/* Sidebar CTA block */
.svc-sidebar-cta {
  background: var(--brand-navy-dark);
  border-color: transparent;
  text-align: center;
}

.svc-cta-icon {
  font-size: 2rem;
  color: var(--brand-orange);
  display: block;
  margin-bottom: 10px;
}

.svc-sidebar-cta h6 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.svc-sidebar-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 16px;
}

/* Count badge */
.svc-count-badge {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
}

.svc-count-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
}

.svc-count-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Info bar */
.svc-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1.5px solid var(--border-color);
}

.svc-info-count {
  font-size: 14px;
  color: var(--text-secondary);
}

.svc-info-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--brand-orange-light);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Catalog grid */
.svc-catalog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Catalog card */
.cat-card {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  opacity: 1;
}

.cat-card:hover {
  border-color: transparent;
  box-shadow: 0 10px 36px rgba(0, 0, 0, .10);
  transform: translateY(-3px);
}

/* Icon box */
.cat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
}

.cat-card:hover .cat-icon-box {
  transform: scale(1.08) rotate(-3deg);
}

.ci-or {
  background: linear-gradient(135deg, #FF6B2B, #ff9a5c);
}

.ci-bl {
  background: linear-gradient(135deg, #1A3C6B, #2d6abf);
}

.ci-tl {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.ci-pu {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
}

.ci-gr {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

.ci-nv {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.ci-rs {
  background: linear-gradient(135deg, #c2410c, #ea580c);
}

.ci-ol {
  background: linear-gradient(135deg, #65a30d, #a3e635);
}

/* Card body */
.cat-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.cat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 4px 0 6px;
}

.cat-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Tags */
.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cat-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

/* Enquire link */
.cat-enquire {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  text-decoration: none;
  transition: var(--transition);
}

.cat-enquire:hover {
  gap: 10px;
  color: var(--brand-orange-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .svc-sidebar {
    position: static;
  }

  .svc-catalog {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .svc-catalog {
    grid-template-columns: 1fr;
  }
}

/*  Hero texture image cards  */
.hero-tex-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-paint-card {
  transition: border-color 0.4s ease;
}

.hero-paint-card:hover {
  border-color: var(--brand-orange);
}

.hero-paint-card:hover .hero-tex-img {
  transform: scale(1.12);
}

.hero-tex-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.hero-paint-card:hover .hero-tex-label {
  bottom: 20px;
  background: var(--brand-orange);
  color: #fff;
}

/* ============================================================
   Visualize Your Colour Section
   ============================================================ */

.visualizer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px;
  height: auto;
}

.preview-card {
  padding: 10px;
  background: #f1f3f7;
  overflow: hidden;
}

.viz-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f8f9fa;
}

.visualizer-container {
  max-width: 1100px;
  margin: 0 auto;
}

#visualizer .section-title {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

#visualizer .section-desc {
  font-size: 0.9rem;
  max-width: 520px !important;
  margin-bottom: 1rem;
}

#visualizer .section-label {
  margin-bottom: 6px;
  font-size: 11px;
}

.viz-base-img,
.viz-overlay-color, 
.viz-overlay-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.viz-base-img {
  z-index: 1;
}

.viz-overlay-color, 
.viz-overlay-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease, background-position 0s;
}

/* Zoom & Pan Controls */
.viz-zoom-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.viz-zoom-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.viz-zoom-btn:hover {
  background: var(--brand-primary);
  color: white;
  transform: scale(1.1);
}

.viz-zoom-btn:active {
  transform: scale(0.95);
}

.viz-base-img,
.viz-overlay-color, 
.viz-overlay-texture {
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#vizCanvas.zoomed {
  cursor: grab;
}

#vizCanvas.zoomed:active {
  cursor: grabbing;
}

.viz-overlay-color {
  z-index: 2;
  mix-blend-mode: multiply;
  background-size: cover; /* Flat color application */
  filter: brightness(0.85) contrast(1.1) saturate(1.1); /* Darken and richify the colour */
  -webkit-mask-image: url('../images/visualizer/room-living-mask.png');
  mask-image: url('../images/visualizer/room-living-mask.png');
}

.viz-overlay-texture {
  z-index: 3;
  mix-blend-mode: soft-light;
  opacity: 0.8;
  /* Use a Mathematically Seamless SVG filter to create "The Original Style" without any grid lines */
  background-image: url('data:image/svg+xml,<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"><filter id="f"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/><feComponentTransfer><feFuncA type="linear" slope="0.4" intercept="0"/></feComponentTransfer></filter><rect width="100%" height="100%" filter="url(%23f)"/></svg>');
  background-size: 300px 300px;
  background-repeat: repeat;
  background-position: center;
  -webkit-mask-image: url('../images/visualizer/room-living-mask.png');
  mask-image: url('../images/visualizer/room-living-mask.png');
}

.viz-overlay-texture {
  z-index: 3;
  mix-blend-mode: overlay;
  opacity: 0.6;
  -webkit-mask-image: url('../images/visualizer/room-living-mask.png');
  mask-image: url('../images/visualizer/room-living-mask.png');
}

/* Controls Grid */
.viz-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.viz-scene-btn {
  flex: 1;
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition);
}

.viz-scene-btn.active {
  border-color: var(--brand-orange);
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}

.viz-texture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.viz-texture-btn {
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: #fff;
  font-size: 11px;
  font-weight: 500;
  transition: var(--transition);
}

.viz-texture-btn:hover {
  border-color: var(--brand-orange);
}

.viz-texture-btn.active {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: #fff;
}

.viz-color-palette {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.viz-color-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.viz-color-swatch:hover {
  transform: scale(1.1);
}

.viz-color-swatch.active {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--brand-orange);
}

.viz-color-swatch::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #000;
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.viz-color-swatch:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Texture Overlays (Now generic blend modes) */
.texture-sand {
  background-image: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><filter id="a"><feTurbulence type="fractalNoise" baseFrequency=".8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23a)" opacity=".3"/></svg>');
}

.texture-rustic {
  mix-blend-mode: overlay;
  opacity: 1; /* High visibility for textured images */
}

.texture-granule {
  background-image: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><filter id="a"><feTurbulence type="fractalNoise" baseFrequency=".4" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23a)" opacity=".4"/></svg>');
}

.viz-overlay-texture.texture-matte {
  background-image: none;
  filter: contrast(1.1) brightness(0.9);
}

@media (max-width: 991px) {
  .viz-color-palette {
    grid-template-columns: repeat(8, 1fr);
  }
}