/* ---------------------------------------------------------
   ARCOT AAC BLOCKS - STYLESHEET (css/style.css)
   Professional, industry-grade custom styling
--------------------------------------------------------- */

/* --- Custom Variables & Tokens --- */
:root {
  /* Brand Palette (derived from logo) */
  --color-primary: #213255;      /* Deep Navy Blue */
  --color-secondary: #276837;    /* Forest Green */
  --color-accent: #85bb14;       /* Lime Green CTA/Highlight */
  --color-accent-hover: #72a110; /* Darker Lime Green for hover */
  
  /* Neutrals */
  --color-dark: #2b2b2b;          /* Charcoal dark body text */
  --color-light: #f7f7f5;         /* Warm off-white background */
  --color-white: #ffffff;         /* Pure white background */
  --color-border: #e2e8f0;        /* Light grey borders */
  
  /* Fonts */
  --font-headings: 'Merriweather', Georgia, serif;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;
  
  /* Dynamic Spacing (Equal top/bottom paddings per section) */
  --section-padding-y: 60px;     /* Desktop default */
  --element-spacing-y: 24px;
}

/* Responsive section paddings and type scale scaling */
@media (max-width: 991.98px) {
  :root {
    --section-padding-y: 40px;   /* Tablet padding */
  }
}
@media (max-width: 575.98px) {
  :root {
    --section-padding-y: 32px;   /* Mobile padding */
  }
}

/* --- Contact Form Card Styling --- */
.contact-form-card {
  background-color: var(--color-white);
  border: 1.5px solid rgba(33, 50, 85, 0.12); /* Soft brand Navy border */
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(33, 50, 85, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form-card:focus-within {
  border-color: var(--color-accent); /* Lime highlight on input focus */
  box-shadow: 0 16px 36px rgba(33, 50, 85, 0.08);
}

/* --- Global & Base Reset --- */
html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5em;
}

/* Color overrides to align Bootstrap class defaults with brand variables */
.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
}

.bg-secondary-subtle {
  background-color: rgba(39, 104, 55, 0.1) !important;
}

p {
  margin-bottom: 1rem;
}

/* --- Typography Hierarchy --- */
.h1-hero {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2rem);
  position: relative;
  margin-bottom: 15px;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin: 12px auto 0;
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto var(--element-spacing-y);
  font-size: 1.1rem;
}

/* --- Standard Layout Spacing Rule --- */
.site-section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  position: relative;
}

.bg-light-alternate {
  background-image:
    linear-gradient(to bottom, #ffffff 0%, transparent 18%, transparent 82%, #ffffff 100%),
    url('../images/background-section.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-light);
}

.bg-white-alternate {
  background-color: var(--color-white);
}

/* --- Button Styling (No Gradients) --- */
.btn-brand-primary {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
  border: 2px solid var(--color-accent);
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-brand-primary:hover,
.btn-brand-primary:focus {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-brand-secondary {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-brand-secondary:hover,
.btn-brand-secondary:focus {
  background-color: #16223b;
  border-color: #16223b;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-brand-outline {
  background-color: transparent;
  color: var(--color-primary) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-brand-outline:hover,
.btn-brand-outline:focus {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Sticky Header / Navbar --- */
.navbar-brand img {
  height: 55px;
  width: auto;
  transition: height 0.3s ease;
}

.custom-navbar {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Scroll-aware sticky changes */
.navbar-scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding-top: 4px;
  padding-bottom: 4px;
}

.navbar-scrolled .navbar-brand img {
  height: 50px;
}

.custom-navbar .nav-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.25s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--color-secondary);
}

.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Dropdown Sub-menu styling */
.custom-navbar .dropdown-menu {
  border-radius: 4px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 10px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.custom-navbar .dropdown-menu.show {
  display: block;
  opacity: 1;
}

@media (min-width: 992px) {
  .custom-navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    margin-top: 0;
    animation: navDropdownFade 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
}

@keyframes navDropdownFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.custom-navbar .dropdown-item {
  color: var(--color-primary);
  font-weight: 600;
  padding: 10px 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-navbar .dropdown-item:hover,
.custom-navbar .dropdown-item:focus,
.custom-navbar .dropdown-item.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* --- Hero Slider / Carousel (Solid Overlays) --- */
.hero-carousel {
  height: 75vh;
  min-height: 500px;
  background-color: #000;
  overflow: hidden;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel .carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

/* Solid overlay instead of gradient */
.hero-carousel .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(23, 36, 60, 0.25); /* Solid deep navy overlay for superior text contrast */
  z-index: 1;
}

.hero-carousel .carousel-item .container {
  position: relative;
  z-index: 2;
}

.hero-carousel .btn-brand-outline {
  color: var(--color-white) !important;
  border-color: var(--color-white);
}

.hero-carousel .btn-brand-outline:hover,
.hero-carousel .btn-brand-outline:focus {
  background-color: var(--color-white);
  color: var(--color-primary) !important;
  border-color: var(--color-white);
}

.hero-carousel .carousel-caption {
  z-index: 2;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 800px;
}

/* Captions inside slides */
.hero-carousel .carousel-caption h2 {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
}

.hero-carousel .carousel-caption p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #f3f4f6;
  margin-bottom: 24px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  margin: 0 6px;
  transition: background-color 0.25s ease;
}

.hero-carousel .carousel-indicators .active {
  background-color: var(--color-accent);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 5%;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: rgba(33, 50, 85, 0.8);
  padding: 24px;
  border-radius: 4px;
  background-size: 50%;
}

/* Responsive adjustments for Hero */
@media (max-width: 767.98px) {
  .hero-carousel {
    height: 60vh;
    min-height: 420px;
  }
  .hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
    padding: 0;
    text-align: center;
    max-width: 100%;
  }
  .hero-carousel .carousel-caption .d-flex {
    justify-content: center;
    gap: 8px !important;
  }
  .hero-carousel .carousel-caption .btn {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
  }
  .hero-carousel .carousel-img {
    height: 100%;
  }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: flex;
  }
}

/* --- Certification Logo Marquee --- */
.marquee-section {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-container {
  overflow: hidden;
  display: flex;
  user-select: none;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee-scroll 12s linear infinite;
}

/* Pause on hover */
.marquee-container:hover .marquee-wrapper {
  animation-play-state: paused;
}

.marquee-slide {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 50%; /* Equal split for seamless overlap duplication */
  min-width: max-content;
}

.marquee-item {
  margin: 0 40px;
  display: inline-block;
}

.marquee-item img {
  height: 55px;
  width: auto;
  filter: none; /* colorful by default */
  opacity: 0.9;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.marquee-item img:hover {
  transform: scale(1.15); /* zoom on hover */
  opacity: 1;
  filter: brightness(1.05);
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}



/* --- About Us Tabs & Cards --- */
.about-tab-nav {
  border: none; /* Removed the horizontal line below the tabs */
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 12px;
  flex-wrap: wrap;
}

.about-tab-btn {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 30px; /* Redesigned to rounded pills */
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-tab-btn i {
  font-size: 1.1rem;
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

.about-tab-btn:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.about-tab-btn:hover i {
  color: var(--color-white);
}

.about-tab-btn.active {
  background-color: var(--color-primary); /* Filled theme primary color */
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(33, 50, 85, 0.15);
}

.about-tab-btn.active i {
  color: var(--color-accent); /* Active state lime icon color */
}

.about-tab-content {
  display: none;
}

.about-tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.why-choose-card {
  background: var(--color-white);
  border: 1.5px solid rgba(39, 104, 55, 0.12); /* Soft forest green theme border */
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(33, 50, 85, 0.04), 0 1px 3px rgba(33, 50, 85, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-choose-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-accent); /* Lime highlight on hover */
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(33, 50, 85, 0.1), 0 2px 6px rgba(33, 50, 85, 0.04);
}

.why-choose-card .card-icon {
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.value-card {
  background: var(--color-white);
  border: 1.5px solid rgba(33, 50, 85, 0.12); /* Soft brand Navy border */
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(33, 50, 85, 0.04), 0 1px 3px rgba(33, 50, 85, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.value-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-accent); /* Lime highlight */
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(33, 50, 85, 0.1), 0 2px 6px rgba(33, 50, 85, 0.04);
}

/* About Us Factory Statistics - Redesigned premium cards */
.about-stat-card {
  background: var(--color-white);
  border: 1.5px solid rgba(33, 50, 85, 0.12); /* Soft brand Navy border */
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 24px rgba(33, 50, 85, 0.04), 0 1px 3px rgba(33, 50, 85, 0.02);
  height: 100%;
}

.about-stat-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-accent); /* Lime highlight */
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(33, 50, 85, 0.12), 0 2px 6px rgba(33, 50, 85, 0.05);
}

.about-stat-num {
  font-family: var(--font-headings);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.about-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card {
  background-color: var(--color-white);
  border: 1.5px solid rgba(33, 50, 85, 0.12); /* Soft brand Navy border */
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(33, 50, 85, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover {
  border-color: var(--color-accent); /* Lime highlight */
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(33, 50, 85, 0.08);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Removed hover scale zooms for smoothness */
}

.product-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.product-card-text {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* --- Advantages Grid --- */
.advantage-card {
  padding: 36px 24px;
  background-color: var(--color-white);
  border: 1.5px solid rgba(33, 50, 85, 0.12); /* Soft brand Navy border */
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 6px 20px rgba(33, 50, 85, 0.03);
}

.advantage-card:hover {
  border-color: var(--color-accent); /* Lime highlight */
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(33, 50, 85, 0.08);
}

.advantage-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.advantage-icon-container i {
  font-size: 2rem;
  color: var(--color-secondary);
  transition: color 0.4s ease;
}

.advantage-card:hover .advantage-icon-container {
  background-color: var(--color-secondary);
}

.advantage-card:hover .advantage-icon-container i {
  color: var(--color-white);
}

.advantage-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.advantage-desc {
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

/* --- Comparison Table --- */
.table-responsive {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--color-white);
}

.comparison-table {
  margin-bottom: 0;
}

.comparison-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-headings);
  font-weight: 700;
  padding: 16px;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: var(--color-primary);
  background-color: var(--color-light);
}

.comparison-table .val-aac {
  background-color: rgba(133, 187, 20, 0.08); /* Accent transparent shade */
  font-weight: 600;
  text-align: center;
  border-left: 2px solid var(--color-accent);
}

.comparison-table .val-clay {
  text-align: center;
}

/* --- Gallery & Lightbox --- */
.gallery-title-btn-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@media (max-width: 768px) {
  .gallery-title-btn-wrapper {
    position: static;
    transform: none;
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
}

/* --- Gallery Marquee --- */
.gallery-marquee-container {
  overflow: hidden;
  display: flex;
  user-select: none;
  position: relative;
  padding: 10px 0;
  width: 100%;
}

.gallery-marquee-wrapper {
  display: flex;
  width: max-content;
  animation: gallery-scroll 30s linear infinite;
}

/* Pause scroll on hover */
.gallery-marquee-container:hover .gallery-marquee-wrapper {
  animation-play-state: paused;
}

.gallery-marquee-slide {
  display: flex;
  align-items: center;
  gap: 20px; /* spacing between images */
  padding-right: 20px; /* keep the offset uniform for looping */
}

.gallery-grid-item {
  width: 320px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1.5px solid rgba(33, 50, 85, 0.12); /* Matching outline styling */
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent); /* lime green border highlight */
  box-shadow: 0 10px 25px rgba(133, 187, 20, 0.2);
}

.gallery-grid-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(33, 50, 85, 0.85); /* brand navy blue overlay */
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-overlay i {
  font-size: 2.25rem;
  color: var(--color-accent); /* Lime green eye icon */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}

@keyframes gallery-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0); /* Shifts exactly one full set of slides */
  }
}

/* Lightbox Modal (Pure CSS/JS - Solid color overlay) */
.custom-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.95); /* Solid dark background */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  border: 4px solid var(--color-white);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--color-white);
  text-align: center;
  margin-top: 15px;
  font-family: var(--font-headings);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -10px;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

/* --- Testimonials --- */
.testimonials-section {
  background-color: var(--color-light);
}

.testimonial-grid-card {
  background-color: var(--color-white);
  border: 1.5px solid rgba(39, 104, 55, 0.12); /* Soft forest green border */
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(33, 50, 85, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-grid-card:hover {
  border-color: var(--color-accent); /* Lime highlight */
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(33, 50, 85, 0.08);
}

.testimonial-rating {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 15px;
}

.testimonial-quote-icon {
  font-size: 2.2rem;
  color: rgba(39, 104, 55, 0.12);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 15px;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: var(--color-primary);
}

.testimonial-info p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.2;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
  background-color: var(--color-primary);
  opacity: 0.35;
  transition: all 0.3s ease;
}

#testimonialCarousel .carousel-indicators .active {
  background-color: var(--color-accent) !important;
  opacity: 1;
  width: 14px;
}

/* --- Contact Us & Form Validation --- */
.contact-info-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, #17243e 100%); /* Premium gradient fill */
  border: 1.5px solid rgba(255, 255, 255, 0.12); /* Subtle white outline to match cards */
  color: var(--color-white);
  border-radius: 12px; /* Smooth rounded corner */
  padding: 44px 40px;
  height: 100%;
}

.contact-info-block h3 {
  color: var(--color-white);
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(4px);
}

.contact-info-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon-wrapper {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.contact-info-item:hover .contact-info-icon-wrapper i {
  color: var(--color-white) !important;
}

.contact-info-item i {
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
}

.contact-info-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.contact-socials {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.contact-socials a:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(133, 187, 20, 0.35);
}

.map-container {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  height: 250px;
  margin-top: 25px;
}

/* Form verification states */
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.25rem rgba(133, 187, 20, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: var(--color-secondary);
}

/* =========================================================
   INNER PAGE HERO BANNER
========================================================= */
.inner-page-hero {
  background-image: linear-gradient(rgba(33, 50, 85, 0.8), rgba(22, 36, 63, 0.5)), url('../images/hero-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 60px 0;
  color: var(--color-white);
  position: relative;
}

.inner-page-hero .hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.inner-page-hero .breadcrumb {
  margin-bottom: 0;
}

.inner-page-hero .breadcrumb-item,
.inner-page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.inner-page-hero .breadcrumb-item a:hover {
  color: var(--color-accent);
}

.inner-page-hero .breadcrumb-item.active {
  color: var(--color-accent);
}

.inner-page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   CONTACT SIDEBAR INFO & CHANNELS
========================================================= */
.contact-sidebar-info {
  background-color: var(--color-white);
  border: 1px solid rgba(33, 50, 85, 0.08);
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(33, 50, 85, 0.04);
}

.contact-sidebar-info .section-heading h2::after {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background-color: var(--color-accent);
  margin-top: 12px;
  border-radius: 2px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.channel-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(33, 50, 85, 0.05);
  border-radius: 12px;
  background-color: #f8fafc;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.channel-card:hover {
  border-color: rgba(33, 50, 85, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(33, 50, 85, 0.06);
  background-color: var(--color-white);
}

.channel-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px; /* Smooth rounded square */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.channel-card:hover .channel-icon-box {
  transform: scale(1.08);
}

.channel-card:hover .channel-icon-box i {
  transform: scale(1.1);
}

.channel-icon-box.bg-primary-subtle {
  background-color: rgba(33, 50, 85, 0.08) !important;
  color: var(--color-primary) !important;
}
.channel-icon-box.bg-success-subtle {
  background-color: rgba(39, 104, 55, 0.08) !important;
  color: var(--color-secondary) !important;
}
.channel-icon-box.bg-warning-subtle {
  background-color: rgba(39, 104, 55, 0.08) !important ;
  color: var(--color-accent) !important;
}

.channel-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-family: var(--font-body);
}

.channel-details .phone-link,
.channel-details .email-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 6px;
}

.channel-details .email-link a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s ease;
}

.channel-details .email-link a:hover {
  color: var(--color-accent);
}

.channel-details .phone-link a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s ease;
}

.channel-details .phone-link a:hover {
  color: var(--color-accent);
}

.channel-details .channel-desc {
  font-size: .95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.business-hours-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, #16243f 100%);
  color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
}

.business-hours-box h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 10px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hours-list li:last-child {
  margin-bottom: 0;
}

.hours-list li span {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   CONTACT FORM WRAPPER (Detailed Quote Form)
========================================================= */
.contact-form-wrapper {
  background-color: var(--color-white);
  border: 1px solid rgba(33, 50, 85, 0.08);
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(33, 50, 85, 0.04);
}

.contact-form-wrapper .form-header {
  margin-bottom: 30px;
  border-bottom: 1.5px solid var(--color-border);
  padding-bottom: 20px;
}

.contact-form-wrapper .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.contact-form-wrapper .form-header h3::after {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background-color: var(--color-accent);
  margin-top: 12px;
  border-radius: 2px;
}

.contact-form-wrapper .form-header p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-form-wrapper .form-label {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-form-wrapper .input-group-text {
  border-color: var(--color-border);
  color: #94a3b8;
  font-size: 1.15rem;
  background-color: #f8fafc;
  transition: all 0.25s ease;
  padding-left: 16px;
  padding-right: 16px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  border-color: var(--color-border);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--color-dark);
  background-color: #f8fafc;
  transition: all 0.25s ease;
}

/* Premium Focus Within Styling for Input Groups */
.contact-form-wrapper .input-group:focus-within .input-group-text {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
}

.contact-form-wrapper .input-group:focus-within .input-group-text i,
.contact-form-wrapper .input-group:focus-within .input-group-text .text-muted {
  color: var(--color-white) !important;
}

.contact-form-wrapper .input-group:focus-within .form-control,
.contact-form-wrapper .input-group:focus-within .form-select {
  background-color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(33, 50, 85, 0.08) !important;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  background-color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(33, 50, 85, 0.08) !important;
}

/* =========================================================
   DIRECTIONS CARD
========================================================= */
.direction-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.direction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--color-accent);
}

.direction-card .dir-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(33, 50, 85, 0.15);
}

.direction-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.direction-card p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

.map-section-wrapper {
  background-color: var(--color-white);
  padding: 8px;
  border: 1px solid rgba(33, 50, 85, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(33, 50, 85, 0.04);
  transition: all 0.3s ease-in-out;
}

.map-section-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(33, 50, 85, 0.08);
  border-color: rgba(33, 50, 85, 0.15);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-primary); /* Primary Navy base color */
  background-image: linear-gradient(rgba(33, 50, 85, 0.95), rgba(23, 36, 60, 0.97)), url('../images/footer-bg.png'); /* Overlay brand color gradient and background image with decreased opacity */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: rgba(255, 255, 255, 0.9) !important; /* White font color instead of grey */
  padding-top: 60px;
  padding-bottom: 30px;
}

.site-footer h5 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 1.15rem;
  font-weight: 700;
}

.site-footer h5::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
  margin-top: 8px;
}

.footer-logo img {
  height: 65px; /* Increased height from 45px to 53px */
}

.footer-desc {
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 355px;
  text-align: justify;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 1); /* White font color instead of grey */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent); /* Transition smoothly to theme accent color */
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7) !important; /* White font color instead of grey */
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7); /* White font color instead of grey */
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--color-white);
}

.footer-contact-info p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85); /* White font color instead of grey */
}

.footer-contact-info i {
  color: var(--color-accent) !important; /* Ensure icons are lime green and visible */
}

/* =========================================================
   WHATSAPP FLOATING BUTTON STYLING
========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--color-white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4);
  z-index: 2000;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease;
}

.whatsapp-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.whatsapp-float i {
  font-size: 32px;
  transition: transform 0.3s ease;
}

/* Tooltip / Side-label that expands on hover */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* Tooltip small arrow */
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-primary);
}

/* Hover effects */
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
}

.whatsapp-float:hover i {
  transform: scale(1.1) rotate(15deg);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Attention Grabber: Sonar Ripples */
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

.ripple-1 {
  animation: sonarWave 2.5s linear infinite;
}

.ripple-2 {
  animation: sonarWave 2.5s linear infinite 1.25s;
}

@keyframes sonarWave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Responsiveness */
@media (max-width: 767.98px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float i {
    font-size: 26px;
  }
  
  .whatsapp-tooltip {
    display: none; /* Hide tooltip label on mobile to avoid layout crowding */
  }

  .about-tab-nav {
    gap: 8px;
    padding: 0 4px;
  }
  
  .about-tab-btn {
    flex: 0 0 calc(50% - 4px);
    padding: 10px 8px;
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
  }

  .about-stat-card {
    padding: 16px 8px;
  }

  .about-stat-num {
    font-size: 1.5rem;
    white-space: nowrap;
    margin-bottom: 4px;
  }

  .about-stat-label {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  /* Detailed Contact Page responsiveness */
  .inner-page-hero {
    padding: 60px 0 40px 0;
  }

  .contact-sidebar-info,
  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .channel-card {
    padding: 14px;
    gap: 12px;
  }

  .channel-icon-box {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .channel-details .phone-link,
  .channel-details .email-link {
    font-size: 1rem;
  }
}

/* =========================================================
   ABOUT US SUBPAGE CUSTOM STYLING (No Gradients & No Inline styles)
   ========================================================= */

.bg-navy-tint {
  background-image:
    linear-gradient(to bottom, #ffffff 0%, transparent 18%, transparent 82%, #ffffff 100%),
    url('../images/background-section.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f6fc;
}

.bg-green-tint {
  background-image:
    linear-gradient(to bottom, #ffffff 0%, transparent 18%, transparent 82%, #ffffff 100%),
    url('../images/background-section.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f1f7f3;
}

.bg-solid-navy {
  background-color: var(--color-primary) !important;
}

.about-stats-row {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-products-row {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.chairman-avatar-box {
  width: 90px;
  height: 90px;
  font-size: 2.25rem;
  border: 4px solid var(--color-accent);
}

.chairman-quote-watermark {
  font-size: 8rem;
  color: rgba(33, 50, 85, 0.04);
  top: 10px;
  left: 30px;
  pointer-events: none;
}

.chairman-quote-text {
  font-size: 1.125rem;
  line-height: 1.7;
  font-family: var(--font-body);
}

/* What We Offer Premium Cards */
.offer-card {
  background: var(--color-white);
  border: 2px solid rgba(33, 50, 85, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(33, 50, 85, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.offer-card h3 a {
  color: var(--color-primary) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.offer-card:hover h3 a {
  color: var(--color-secondary) !important;
}

.offer-card-aac:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary) !important;
  box-shadow: 0 15px 35px rgba(33, 50, 85, 0.15) !important;
}

.offer-card-mortar:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary) !important;
  box-shadow: 0 15px 35px rgba(39, 104, 55, 0.15) !important;
}

.offer-card-plaster:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent) !important;
  box-shadow: 0 15px 35px rgba(133, 187, 20, 0.2) !important;
}

.offer-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white) !important;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.offer-card:hover .offer-icon-box {
  transform: scale(1.12) rotate(5deg);
}

.offer-icon-aac {
  background-color: var(--color-primary);
}

.offer-icon-mortar {
  background-color: var(--color-secondary);
}

.offer-icon-plaster {
  background-color: var(--color-accent);
}

.badge-pill-primary {
  background-color: rgba(33, 50, 85, 0.08);
  color: var(--color-primary);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.badge-pill-secondary {
  background-color: rgba(39, 104, 55, 0.08);
  color: var(--color-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.badge-pill-accent {
  background-color: rgba(133, 187, 20, 0.12);
  color: var(--color-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* Mission & Vision Cards */
.hover-lift-green {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}

.hover-lift-navy {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}

.hover-lift-green:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(39, 104, 55, 0.18) !important;
}

.hover-lift-navy:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(33, 50, 85, 0.18) !important;
}

.hover-lift-green:hover .process-icon-box {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
}

.hover-lift-navy:hover .process-icon-box {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
}

.mission-card-custom {
  background: var(--color-white);
  border: 1.5px solid rgba(39, 104, 55, 0.15) !important;
  box-shadow: 0 8px 30px rgba(39, 104, 55, 0.07) !important;
}

.vision-card-custom {
  background: var(--color-white);
  border: 1.5px solid rgba(33, 50, 85, 0.15) !important;
  box-shadow: 0 8px 30px rgba(33, 50, 85, 0.07) !important;
}

/* Values Marquee */
.values-carousel-card {
  border-color: rgba(39, 104, 55, 0.15) !important;
  min-width: 220px;
  flex-shrink: 0;
}

/* Manufacturing Process Cards */
.process-card {
  background: var(--color-white);
  border: 2px solid var(--color-secondary) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent) !important;
  box-shadow: 0 15px 35px rgba(133, 187, 20, 0.3) !important;
}

.process-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.process-card:hover .process-step-icon {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  transform: rotate(360deg);
}

.process-card h3 {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.process-card:hover h3 {
  color: var(--color-secondary) !important;
}

.process-step-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(33, 50, 85, 0.05);
  line-height: 1;
  transition: color 0.3s ease;
}

.process-card:hover .process-step-badge {
  color: rgba(133, 187, 20, 0.15) !important;
}

.text-white-subtitle {
  color: rgba(255, 255, 255, 0.75) !important;
  max-width: 800px;
}

.text-white-desc {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem;
  max-width: 700px;
}

/* =========================================================
   AAC BLOCKS PRODUCT PAGE CUSTOM STYLING (No Gradients)
   ========================================================= */

.product-image-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(33, 50, 85, 0.08);
}

.spec-grid-card {
  background: var(--color-white);
  border: 1.5px solid rgba(39, 104, 55, 0.12) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(33, 50, 85, 0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.spec-grid-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent) !important;
  box-shadow: 0 15px 35px rgba(133, 187, 20, 0.15) !important;
}

.spec-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-white);
  background-color: var(--color-primary);
  margin-bottom: 16px;
}

.spec-value {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 4px;
}

.spec-label {
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.spec-desc {
  font-size: 0.85rem;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Sizing spec elements */
.size-spec-card {
  background: var(--color-white);
  border: 1.5px solid rgba(33, 50, 85, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(33, 50, 85, 0.03);
}

.size-table-header {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

/* Weight Comparison elements */
.weight-card-aac {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(33, 50, 85, 0.05);
}

.weight-card-clay {
  background-color: var(--color-white);
  border: 2px solid rgba(43, 43, 43, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.weight-header-aac {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 18px 18px 0 0;
}

.weight-header-clay {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: 18px 18px 0 0;
}

.weight-value-badge {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.weight-value-badge-clay {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* Custom table comparisons */
.comparison-table-custom {
  background: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.comparison-table-custom th {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
  font-weight: 700;
  padding: 16px !important;
}

.comparison-table-custom td {
  padding: 16px !important;
  vertical-align: middle;
}

/* Range & Dimensions Premium Layout */
.dimension-card-box {
  background: var(--color-white);
  border: 1.5px solid rgba(33, 50, 85, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(33, 50, 85, 0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.dimension-card-box:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary) !important;
  box-shadow: 0 15px 30px rgba(39, 104, 55, 0.1) !important;
}

.dimension-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-white);
  background-color: var(--color-secondary);
  margin-bottom: 16px;
}

.dimension-val {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 4px;
}

.dimension-lbl {
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.dimension-desc {
  font-size: 0.85rem;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Custom minimal padding class for CTA sections */
.cta-section-min-padding {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

/* =========================================================
   INTERACTIVE PHOTO GALLERY CUSTOM STYLING (No Gradients)
   ========================================================= */

#gallery-page .gallery-grid-item {
  position: relative;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(33, 50, 85, 0.05);
  cursor: pointer;
  background-color: var(--color-white);
  border: none !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#gallery-page .gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#gallery-page .gallery-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 50, 85, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#gallery-page .gallery-grid-overlay i {
  color: var(--color-white);
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

#gallery-page .gallery-grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(33, 50, 85, 0.15);
}

#gallery-page .gallery-grid-item:hover img {
  transform: scale(1.08);
}

#gallery-page .gallery-grid-item:hover .gallery-grid-overlay {
  opacity: 1;
}

#gallery-page .gallery-grid-item:hover .gallery-grid-overlay i {
  transform: scale(1);
}



/* Lightbox Modal custom animations */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: var(--color-white);
  text-align: center;
  margin-top: 15px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* =========================================================
   PRIVACY POLICY SUBPAGE CUSTOM STYLING (No Boxes/Gradients)
   ========================================================= */

.policy-doc-layout {
  padding-bottom: 60px;
}

.policy-sidebar-link {
  color: var(--color-dark) !important;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.3s ease;
  display: block;
  padding: 6px 0;
  text-decoration: none;
}

.policy-sidebar-link:hover,
.policy-sidebar-link.active {
  color: var(--color-secondary) !important;
  text-decoration: none;
}

.policy-section-heading {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(39, 104, 55, 0.15);
  padding-bottom: 8px;
  text-align: left;
}

/* Paragraphs & lists inherit font-size 1rem from index settings */
.policy-text {
  font-family: var(--font-body);
  font-size: 1rem !important;
  color: var(--color-dark);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.policy-text-list {
  padding-left: 20px;
  margin-bottom: 1.25rem;
}

.policy-text-list li {
  color: var(--color-dark);
  font-size: 1rem !important;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* =========================================================
   PREMIUM UNIFIED INPUT GROUPS
   ========================================================= */

.input-group .input-group-text {
  background-color: #f8fafc !important;
  border: 1px solid rgba(33, 50, 85, 0.12) !important;
  border-right: 0 !important;
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  color: #64748b !important;
  transition: all 0.25s ease-in-out;
}

.input-group .input-group-text i,
.input-group .input-group-text .text-muted {
  color: inherit !important;
}

.input-group .form-control,
.input-group .form-select {
  background-color: #f8fafc !important;
  border: 1px solid rgba(33, 50, 85, 0.12) !important;
  border-left: 0 !important;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 10px 14px !important;
  transition: all 0.25s ease-in-out;
}

/* focus within styling */
.input-group:focus-within .input-group-text {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
}

.input-group:focus-within .form-control,
.input-group:focus-within .form-select {
  background-color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(33, 50, 85, 0.08) !important;
}

#modalMessage, #detailMessage {
  background-color: #f8fafc !important;
  border: 1px solid rgba(33, 50, 85, 0.12) !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  transition: all 0.25s ease-in-out;
}

#modalMessage:focus, #detailMessage:focus {
  background-color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(33, 50, 85, 0.08) !important;
}

/* Disabled brand buttons styling */
.btn-brand-primary:disabled {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  opacity: 0.75 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn-brand-secondary:disabled {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  opacity: 0.75 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

