/* ==========================================================================
   4C FIRE PROTECTION - MAIN DESIGN SYSTEM
   Aesthetic: Luxury Architectural / High-End Industrial Editorial
   No Bootstrap | No Tailwind | Handcrafted Agency Standard
   Palette: Charcoal, Pure White, Concrete Neutral, Fire Orange Accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   00. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg-dark: #0b0c0e;
  --bg-dark-card: #121418;
  --bg-dark-elevated: #1a1d24;
  --bg-light: #f7f7f9;
  --bg-white: #ffffff;
  
  --text-dark: #0f1115;
  --text-muted: #626773;
  --text-light: #f1f2f5;
  --text-light-muted: #8e94a0;
  
  --accent-orange: #e05a2b;
  --accent-orange-hover: #f16838;
  --accent-orange-glow: rgba(224, 90, 43, 0.25);
  --whatsapp-green: #25d366;
  
  --border-light: rgba(15, 17, 21, 0.1);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-active: rgba(224, 90, 43, 0.6);

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Layout & Spacing */
  --container-max-width: 1400px;
  --container-padding: 0 40px;
  --section-padding: 140px 0;
  --section-padding-sm: 80px 0;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.25s var(--ease-out-expo);
  --transition-normal: 0.5s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Z-Indexes */
  --z-back: -1;
  --z-normal: 1;
  --z-header: 100;
  --z-floating: 200;
  --z-modal: 1000;
}

/* --------------------------------------------------------------------------
   00. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

body {
  font-family: var(--font-family);
  line-height: 1.65;
  background-color: var(--bg-white);
  overflow-x: hidden;
  color: var(--text-dark);
}

/* Lenis Smooth Scroll Rules */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #2a2d35;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* Universal Typography & Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: inherit;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-padding {
  padding: var(--section-padding);
}

.section-padding-sm {
  padding: var(--section-padding-sm);
}

/* Section Headers */
.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--text-dark);
  max-width: 800px;
}

.dark-theme .section-title {
  color: var(--text-light);
}

/* Buttons - Straight Edges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--bg-white);
  border: 1px solid var(--accent-orange);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--accent-orange-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-color: var(--bg-white);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.dark-theme p {
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   01. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-normal);
}

.hero-bg-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(11, 12, 14, 0.92) 0%, 
    rgba(11, 12, 14, 0.65) 50%, 
    rgba(11, 12, 14, 0.4) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 80px;
}

.hero-content {
  max-width: 680px;
}

.hero-label-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.badge-accent {
  width: 6px;
  height: 6px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

.hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-light);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.text-highlight {
  color: var(--accent-orange);
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Floating Statistics */
.hero-stats-floating {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat-card {
  background: rgba(18, 20, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--accent-orange);
  padding: 24px 32px;
  backdrop-filter: blur(16px);
  min-width: 220px;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.hero-stat-card:hover {
  transform: translateX(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-light);
  margin-bottom: 6px;
}

.stat-plus {
  color: var(--accent-orange);
  font-size: 1.8rem;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light-muted);
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 100%;
  height: 50%;
  background: var(--accent-orange);
  position: absolute;
  top: -50%;
  left: 0;
  animation: scrollAnim 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollAnim {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* --------------------------------------------------------------------------
   02. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-column {
  position: relative;
}

.image-mask-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 30px;
  border-left: 3px solid var(--accent-orange);
  max-width: 240px;
}

.badge-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.about-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  border-left: 2px solid var(--border-light);
  padding-left: 24px;
}

.tab-item {
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.tab-item.active, .tab-item:hover {
  opacity: 1;
}

.tab-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.tab-item p {
  font-size: 0.95rem;
}

/* Timeline */
.about-timeline {
  margin-top: 40px;
  position: relative;
  padding-top: 20px;
}

.timeline-track {
  width: 100%;
  height: 2px;
  background-color: var(--border-light);
  position: relative;
  margin-bottom: 16px;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 75%;
  background-color: var(--accent-orange);
}

.timeline-items {
  display: flex;
  justify-content: space-between;
}

.timeline-node {
  display: flex;
  flex-direction: column;
}

.timeline-node .year {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.timeline-node .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   03. CORE PRODUCTS SECTION
   -------------------------------------------------------------------------- */
.products-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.products-interactive-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Product List */
.product-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-light);
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--bg-white);
  z-index: 1;
  transition: width var(--transition-normal);
}

.product-item > * {
  position: relative;
  z-index: 2;
}

.product-item.active::before,
.product-item:hover::before {
  width: 100%;
}

.product-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 40px;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  flex-grow: 1;
}

.product-item.active .product-name {
  color: var(--accent-orange);
}

.product-arrow {
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-fast);
}

.product-item.active .product-arrow,
.product-item:hover .product-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent-orange);
}

/* Right Side Display Card */
.product-display-column {
  position: sticky;
  top: 120px;
}

.product-preview-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 24px;
  transition: all var(--transition-normal);
}

.preview-image-container {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
}

.preview-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.preview-image-container:hover img {
  transform: scale(1.05);
}

.image-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
}

.click-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(11, 12, 14, 0.75);
  color: var(--text-light);
  padding: 6px 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.preview-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.preview-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* FULLSCREEN PRODUCT MODAL */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 14, 0.85);
  backdrop-filter: blur(12px);
}

.modal-content-wrapper {
  position: relative;
  z-index: 2;
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  width: 90%;
  max-width: 1000px;
  padding: 40px;
  color: var(--text-light);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.product-modal.is-open .modal-content-wrapper {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: var(--text-light-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--accent-orange);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.modal-image-col img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-bottom: 30px;
}

.modal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   04. SPECIALIZED SOLUTIONS
   -------------------------------------------------------------------------- */
.specialized-section {
  background-color: var(--bg-dark);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-dark-active);
}

.solution-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.solution-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.solution-card:hover .solution-img-wrapper img {
  transform: scale(1.08);
}

.solution-content {
  padding: 30px;
  position: relative;
}

.accent-line {
  width: 40px;
  height: 2px;
  background-color: var(--accent-orange);
  margin-bottom: 16px;
  transition: width var(--transition-normal);
}

.solution-card:hover .accent-line {
  width: 80px;
}

.solution-content h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.solution-content p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   05. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-us-section {
  background-color: var(--bg-white);
}

.why-us-sticky-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.why-us-image-col {
  position: relative;
}

.sticky-img-container {
  position: sticky;
  top: 120px;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

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

.sticky-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(11, 12, 14, 0.85);
  color: var(--text-light);
  padding: 8px 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.reason-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.reason-item:last-child {
  border-bottom: none;
}

.reason-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reason-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   06. GOVERNMENT & COMMERCIAL PROJECTS
   -------------------------------------------------------------------------- */
.projects-section {
  background-color: var(--bg-light);
}

.project-filters {
  display: flex;
  gap: 12px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 8px 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  border-color: var(--text-dark);
}

.projects-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.project-img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.05);
}

.project-info {
  padding: 30px;
}

.project-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.project-scope {
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   07. GALLERY
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--bg-dark);
}
.why-us-sticky-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.why-us-image-col {
  position: relative;
}

.sticky-img-container {
  position: sticky;
  top: 120px;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.sticky-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(11, 12, 14, 0.85);
  color: var(--text-light);
  padding: 8px 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}


/* GALLERY LIGHTBOX */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 14, 0.92);
  backdrop-filter: blur(15px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  z-index: 10;
}

.lightbox-close { top: -60px; right: 0; }
.lightbox-prev { left: -70px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -70px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--accent-orange);
}

.lightbox-figure img {
  max-width: 85vw;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-caption {
  text-align: center;
  color: var(--text-light-muted);
  margin-top: 16px;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   08. CLIENTS
   -------------------------------------------------------------------------- */
.clients-section {
  background-color: var(--bg-dark-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

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

.client-logo-item {
  padding: 0 20px;
}

.client-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--transition-fast);
}

.client-logo-item:hover .client-logo-text {
  color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   09. STATISTICS
   -------------------------------------------------------------------------- */
.stats-section {
  background-color: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-block {
  padding: 30px;
  border-left: 1px solid var(--border-dark);
}

.stat-big-number {
  font-size: clamp(3rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-light);
  margin-bottom: 8px;
}

.stat-big-number .symbol {
  color: var(--accent-orange);
}

.stat-big-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   10. CAREERS
   -------------------------------------------------------------------------- */
.careers-section {
  background-color: var(--bg-white);
}

.careers-card-wrapper {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.careers-content {
  max-width: 600px;
}

.careers-notice {
  font-size: 1.05rem;
  margin-top: 12px;
}

.careers-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.spontaneous-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. CONTACT SECTION & EXECUTIVE DIRECT CARDS
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-lead {
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-detail-card:hover {
  background-color: var(--bg-white);
  border-color: var(--accent-orange);
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.whatsapp-card:hover {
  border-color: var(--whatsapp-green);
}

.icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--bg-white);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.wa-icon {
  color: var(--whatsapp-green);
}

.contact-detail-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-card p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.card-arrow {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.contact-detail-card:hover .card-arrow {
  color: var(--accent-orange);
  transform: translate(3px, -3px);
}

/* Contact Form Styling */
.inquiry-form {
  background-color: var(--bg-light);
  padding: 50px;
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inquiry-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0px;
  color: var(--text-dark);
  transition: border-color var(--transition-fast);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--accent-orange);
}

.form-feedback {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. GOOGLE MAP
   -------------------------------------------------------------------------- */
.map-section {
  position: relative;
  width: 100%;
  line-height: 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  filter: grayscale(100%) invert(90%) contrast(90%);
}

.map-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  border-left: 3px solid var(--accent-orange);
}

.map-overlay-card .pin-icon {
  font-size: 1.5rem;
  color: var(--accent-orange);
}

.map-overlay-card p {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats-floating {
    flex-direction: row;
    margin-top: 40px;
  }
  .about-grid, 
  .products-interactive-wrapper, 
  .why-us-sticky-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .product-display-column, .sticky-img-container {
    position: relative;
    top: 0;
  }
  .solutions-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 0 20px;
    --section-padding: 80px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-stats-floating {
    flex-direction: column;
    width: 100%;
  }
  .solutions-grid, 
  .projects-editorial-grid, 
  .stats-grid,
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.item-wide, .gallery-item.item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .careers-card-wrapper {
    flex-direction: column;
    padding: 30px;
    align-items: flex-start;
  }
  .careers-action {
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-prev, .lightbox-next {
    display: none;
  }
}



/* ==========================================================================
   FOOTER & STACKED FLOATING WIDGETS (BOTTOM RIGHT)
   ========================================================================== */

/* Footer Root Variables */
:root {
    --ftr-dark-grey: #14161a;
    --ftr-card-bg: #1c1f26;
    --ftr-card-hover: #242933;
    --ftr-text-white: #ffffff;
    --ftr-text-muted: #8e94a0;
    --ftr-accent-orange: #e05a2b;
    --ftr-whatsapp-green: #25d366;
    --ftr-border-dark: rgba(255, 255, 255, 0.08);
    --ftr-border-light: rgba(255, 255, 255, 0.15);
    --ftr-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer {
    background-color: var(--ftr-dark-grey);
    color: var(--ftr-text-muted);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid var(--ftr-border-dark);
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Top Bar */
.footer-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--ftr-border-dark);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    fill: var(--ftr-accent-orange);
}

.footer-brand-title {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ftr-text-white);
    line-height: 1;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--ftr-accent-orange);
    margin-top: 4px;
}

.footer-status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: var(--ftr-card-bg);
    border: 1px solid var(--ftr-border-dark);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ftr-text-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--ftr-whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ftr-whatsapp-green);
}

/* Footer Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.col-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--ftr-text-white);
    margin-bottom: 24px;
}

/* Executive Contact Cards */
.contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: var(--ftr-card-bg);
    border: 1px solid var(--ftr-border-dark);
    text-decoration: none;
    transition: all 0.3s var(--ftr-ease);
}

.footer-contact-card:hover {
    background-color: var(--ftr-card-hover);
    border-color: var(--ftr-accent-orange);
    transform: translateX(6px);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background-color: var(--ftr-dark-grey);
    color: var(--ftr-accent-orange);
    flex-shrink: 0;
    transition: all 0.3s var(--ftr-ease);
}

.whatsapp-card:hover .wa-icon {
    background-color: var(--ftr-whatsapp-green);
    color: #ffffff;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ftr-text-muted);
}

.card-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ftr-text-white);
    margin-top: 2px;
}

.card-arrow {
    font-size: 0.8rem;
    color: var(--ftr-text-muted);
    transition: transform 0.3s var(--ftr-ease), color 0.3s var(--ftr-ease);
}

.footer-contact-card:hover .card-arrow {
    color: var(--ftr-accent-orange);
    transform: translate(3px, -3px);
}

/* Quick Navigation */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--ftr-text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ftr-ease), transform 0.3s var(--ftr-ease);
    display: inline-block;
}

.footer-link:hover {
    color: var(--ftr-accent-orange);
    transform: translateX(4px);
}

/* Newsletter & Socials */
.newsletter-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.input-floating-wrapper {
    position: relative;
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 12px 0 8px 0;
    font-size: 0.9rem;
    color: var(--ftr-text-white);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ftr-border-light);
    outline: none;
}

.floating-label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 0.85rem;
    color: var(--ftr-text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ftr-ease);
}

.newsletter-input:focus ~ .floating-label,
.newsletter-input:not(:placeholder-shown) ~ .floating-label {
    top: -8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ftr-accent-orange);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ftr-accent-orange);
    transition: width 0.3s var(--ftr-ease);
}

.newsletter-input:focus ~ .input-underline {
    width: 100%;
}

.btn-newsletter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ftr-text-white);
    background-color: var(--ftr-card-bg);
    border: 1px solid var(--ftr-border-light);
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s var(--ftr-ease);
}

.btn-newsletter:hover {
    background-color: var(--ftr-accent-orange);
    border-color: var(--ftr-accent-orange);
}

.newsletter-feedback {
    font-size: 0.8rem;
    min-height: 18px;
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ftr-text-muted);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ftr-card-bg);
    border: 1px solid var(--ftr-border-dark);
    color: var(--ftr-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s var(--ftr-ease);
}

.social-link:hover {
    border-color: var(--ftr-accent-orange);
    color: var(--ftr-accent-orange);
    transform: translateY(-2px);
}

/* Bottom Legal Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--ftr-border-dark);
    font-size: 0.82rem;
    color: var(--ftr-text-muted);
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.legal-link {
    color: var(--ftr-text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ftr-ease);
}

.legal-link:hover {
    color: var(--ftr-text-white);
}

.legal-divider {
    color: var(--ftr-border-dark);
}

/* --------------------------------------------------------------------------
   STACKED FLOATING WIDGETS (BOTTOM RIGHT)
   -------------------------------------------------------------------------- */

/* 1. WHATSAPP BUTTON (Bottom Right - Positioned Below Back to Top) */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--ftr-whatsapp-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s var(--ftr-ease), box-shadow 0.3s var(--ftr-ease);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.whatsapp-badge-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--ftr-whatsapp-green);
    animation: waPulse 2s infinite ease-out;
    z-index: 1;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 64px;
    white-space: nowrap;
    background-color: var(--ftr-dark-grey);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--ftr-border-light);
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s var(--ftr-ease);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* 2. BACK TO TOP BUTTON (Positioned Directly Above WhatsApp Button) */
.back-to-top-btn {
    position: fixed;
    bottom: 94px; /* Placed 64px above WhatsApp button */
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--ftr-dark-grey);
    border: 1px solid var(--ftr-border-light);
    color: var(--ftr-text-white);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s var(--ftr-ease), visibility 0.3s var(--ftr-ease), transform 0.3s var(--ftr-ease);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

.back-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Crucial Fix: Prevent Children from intercepting clicks */
.back-to-top-btn * {
    pointer-events: none;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: transparent;
    stroke: var(--ftr-border-dark);
    stroke-width: 2;
}

.progress-ring-circle {
    fill: transparent;
    stroke: var(--ftr-accent-orange);
    stroke-width: 2.5;
    stroke-dasharray: 131.94;
    stroke-dashoffset: 131.94;
    transition: stroke-dashoffset 0.1s linear;
}

.icon-arrow {
    font-size: 0.95rem;
    z-index: 2;
    transition: transform 0.3s var(--ftr-ease);
}

.back-to-top-btn:hover .icon-arrow {
    transform: translateY(-3px);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .newsletter-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 24px;
    }
    .footer-container {
        padding: 0 20px;
    }
    .footer-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .newsletter-col {
        grid-column: span 1;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    .back-to-top-btn {
        bottom: 76px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
}




/* ==========================================================================
   3-COLUMN PRODUCT GRID SECTION
   ========================================================================== */

.all-products-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.products-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card-3col {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card-3col:hover {
    transform: translateY(-6px);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Card Image Frame */
.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card-3col:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: rgba(11, 12, 14, 0.85);
    color: var(--text-light);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Body Content */
.card-body {
    padding: 24px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-orange);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Card Action Buttons (Footer) */
.card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-light);
}

.btn-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-view-modal {
    color: var(--text-dark);
    border-right: 1px solid var(--border-light);
}

.btn-view-modal:hover {
    background-color: var(--text-dark);
    color: #ffffff;
}

.btn-card-contact {
    color: var(--accent-orange);
}

.btn-card-contact:hover {
    background-color: var(--accent-orange);
    color: #ffffff;
}

/* Responsive Grid Breakdown */
@media (max-width: 1024px) {
    .products-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .products-grid-3col {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   FULLSCREEN IMAGE POPUP MODAL STYLES
   ========================================================================== */

/* Make product card images indicate clickability */
.product-card-3col .card-img-wrapper {
    cursor: pointer;
}

.product-card-3col .card-img-wrapper::after {
    content: '\f00e'; /* FontAwesome Search/Zoom icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 14, 0.4);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-3col .card-img-wrapper:hover::after {
    opacity: 1;
}

/* Modal Overlay */
.image-popup-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.image-popup-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 14, 0.92);
    backdrop-filter: blur(12px);
}

.image-popup-box {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-popup-modal.is-open .image-popup-box {
    transform: scale(1);
}

.image-popup-box img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.popup-img-caption {
    margin-top: 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
}

.image-popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.image-popup-close:hover {
    background: #e05a2b;
    border-color: #e05a2b;
}



/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OVERLAP FIX (HEADER & HERO)
   ========================================================================== */

/* Prevent Horizontal Scrolling */
html, body {
    overflow-x: hidden !important;
    width: 100%;
}

@media (max-width: 768px) {

    /* 1. HEADER MOBILE FIX */
    .site-header {
        height: 70px !important;
    }

    .header-container {
        padding: 0 16px !important;
    }

    .logo-mark {
        height: 28px !important;
    }

    .logo-title {
        font-size: 0.95rem !important;
    }

    .logo-subtitle {
        font-size: 0.55rem !important;
    }

    .btn-header-cta {
        padding: 8px 12px !important;
        font-size: 0.7rem !important;
    }

    /* 2. HERO SECTION TOP CLEARANCE & SPACING */
    .hero-section {
        min-height: auto !important;
        height: auto !important;
        padding-top: 100px !important; /* Pushes content down below fixed header */
        padding-bottom: 60px !important;
    }

    .hero-container {
        flex-direction: column !important;
        padding-top: 10px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        align-items: flex-start !important;
    }

    .hero-content {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* 3. HERO TOP LABEL BADGE FIX */
    .hero-label-wrapper {
        margin-bottom: 16px !important;
        padding: 4px 10px !important;
        max-width: 100% !important;
        white-space: normal !important;
    }

    .hero-label {
        font-size: 0.68rem !important;
        letter-spacing: 0.06em !important;
        line-height: 1.3 !important;
    }

    /* 4. HERO TITLE FLUID RESPONSIVE TYPOGRAPHY */
    .hero-title {
        font-size: clamp(2rem, 7.5vw, 2.8rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
        word-break: break-word !important;
    }

    .hero-description {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }

    /* 5. HERO BUTTONS STACK VERTICALLY ON MOBILE */
    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 0.8rem !important;
    }

    /* 6. HERO FLOATING STATS CARDS STACK */
    .hero-stats-floating {
        width: 100% !important;
        margin-top: 32px !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero-stat-card {
        min-width: 100% !important;
        padding: 16px 20px !important;
    }

    .stat-number-wrapper {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 0.72rem !important;
    }

    /* Hide scroll indicator on mobile to avoid overlapping */
    .scroll-indicator {
        display: none !important;
    }
}

/* 7. NARROW MOBILE PHONES (< 480px) */
@media (max-width: 480px) {
    /* Hide CTA button on very small screens so logo and hamburger do not collide */
    .btn-header-cta {
        display: none !important;
    }
}


/* ==========================================================================
   07 ARCHITECTURAL GALLERY - CLEAN 3-COLUMN GRID & GREY BACKGROUND
   ========================================================================== */

/* Section Background: Dark Architectural Grey */
.gallery-editorial-section {
    background-color: #1c1e24 !important;
    color: #ffffff !important;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-editorial-section .section-title {
    color: #ffffff !important;
}

/* Equal 3-Column Grid Layout */
.gallery-matrix-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

/* Uniform Card Style */
.gallery-matrix-card {
    grid-column: auto !important;
    grid-row: auto !important;
    background-color: #121418;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.gallery-matrix-card:hover {
    border-color: #e05a2b;
    transform: translateY(-6px);
}

/* Image Wrapper Fix (Allows clicks to pass through) */
.gallery-matrix-card .card-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px !important; /* Uniform height for all grid images */
    overflow: hidden;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.gallery-matrix-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-matrix-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

/* CRUCIAL FIX: Overlay does not block mouse clicks */
.gallery-card-overlay,
.gallery-card-overlay * {
    pointer-events: none !important;
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 12, 14, 0.92) 0%, rgba(11, 12, 14, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 2;
}

.gallery-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e05a2b;
    margin-bottom: 6px;
}

.gallery-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 8px;
}

.gallery-action-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8e94a0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.gallery-matrix-card:hover .gallery-action-tag {
    color: #e05a2b;
}

/* Lightbox Modal Z-Index Overrides */
#image-popup-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#image-popup-modal.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS (3-COL -> 2-COL -> 1-COL)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .gallery-matrix-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .gallery-matrix-card .card-img-wrapper {
        height: 280px !important;
    }
}

@media (max-width: 640px) {
    .gallery-matrix-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .gallery-matrix-card .card-img-wrapper {
        height: 250px !important;
    }
}










/* ==========================================================================
   08 CLIENT LOGO DUAL MARQUEE SLIDER (FULL COLOR & PERFECTLY CENTERED)
   ========================================================================== */

/* 1. STRICT CENTER ALIGNMENT FOR HEADING */
.clients-marquee-section .section-header.center {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 40px auto !important;
}

.clients-marquee-section .section-subtitle,
.clients-marquee-section .section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 2. SECTION CONTAINER */
.clients-marquee-section {
    background-color: var(--bg-dark-card); /* #121418 Dark Slate */
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 80px 0;
    overflow: hidden;
}

.clients-marquee-section .section-title {
    color: var(--text-light);
}

.marquee-dual-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    position: relative;
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

/* 3. INFINITE SLIDER ANIMATIONS */
.track-rtl {
    animation: marqueeRtoL 35s linear infinite;
}

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

.track-ltr {
    animation: marqueeLtoR 35s linear infinite;
}

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

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

/* 4. HIGH CONTRAST LOGO CONTAINER CARD */
.client-logo-card {
    width: 170px;
    height: 95px;
    background-color: #ffffff !important; /* Pure White Card for Maximum Logo Clarity */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(224, 90, 43, 0.3);
}

/* 5. FULL ORIGINAL COLOR LOGO (NO BLACK & WHITE / GRAYSCALE) */
.client-logo-card img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important; /* Guarantees image fits without cropping */
    filter: none !important;         /* NO GRAYSCALE - 100% FULL ORIGINAL COLOR */
    opacity: 1 !important;          /* 100% CRISP & VISIBLE */
}

/* 6. MOBILE RESPONSIVE OVERRIDES */
@media (max-width: 768px) {
    .client-logo-card {
        width: 135px;
        height: 80px;
        padding: 10px 14px;
    }
    .track-rtl, .track-ltr {
        animation-duration: 25s;
    }
}



/* ==========================================================================
   VIEW SPECIFICATION MODAL BUTTON - FIRE ORANGE COLOR FIX
   ========================================================================== */

.open-product-modal-btn,
button.open-product-modal-btn {
    background-color: #e05a2b !important;
    color: #ffffff !important;
    border: 1px solid #e05a2b !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.open-product-modal-btn:hover,
button.open-product-modal-btn:hover {
    background-color: #f16838 !important;
    border-color: #f16838 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(224, 90, 43, 0.35) !important;
    transform: translateY(-2px) !important;
}

.open-product-modal-btn i,
.open-product-modal-btn span {
    color: #ffffff !important;
}














/* ==========================================================================
   06 PROJECTS SLIDER (BIGGER IMAGE SIZE + 6 VISIBLE AT A TIME)
   ========================================================================== */

.projects-slider-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 90px 0;
    overflow: hidden;
}

/* Maximized full-width container to make images wider */
.projects-container-full {
    width: 100%;
    max-width: 100%;
    padding: 0 16px !important; /* Edge-to-edge width for bigger cards */
    margin: 0 auto;
}

.projects-swiper {
    width: 100%;
    padding-bottom: 50px !important;
}

.project-slide-card {
    display: flex;
    flex-direction: column;
}

/* BIGGER & TALLER IMAGE CONTAINER */
.project-img-box {
    position: relative;
    width: 100%;
    height: 350px !important; /* Increased from 220px to 350px for bigger display */
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    overflow: hidden;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-slide-card:hover .project-img-box {
    border-color: var(--accent-orange);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-slide-card:hover .project-img-box img {
    transform: scale(1.08);
}

/* TITLE BELOW IMAGE */
.project-slide-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 16px;
    line-height: 1.35;
    text-align: left;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-slide-card:hover .project-slide-title {
    color: var(--accent-orange);
}

/* Navigation & Pagination Controls */
.projects-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.project-nav-btn {
    width: 46px;
    height: 46px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.project-nav-btn:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
}

.project-pagination {
    position: static !important;
    width: auto !important;
}

.project-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--text-muted);
    opacity: 0.4;
    transition: all 0.3s ease;
    margin: 0 4px !important;
}

.project-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-orange);
    opacity: 1;
    width: 26px;
    border-radius: 4px;
}

/* Responsive Scaling for Laptops & Mobile */
@media (max-width: 1200px) {
    .project-img-box {
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .project-img-box {
        height: 260px !important;
    }
}

/* ==========================================================================
   PROJECTS SECTION HEADING PERFECT CENTER ALIGNMENT FIX
   ========================================================================== */

.projects-slider-section .section-header,
.projects-slider-section .section-header.center {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 40px auto !important;
}

.projects-slider-section .section-subtitle,
.projects-slider-section .section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
}




/* ==========================================================================
   12 ARCHITECTURAL GOOGLE MAP SECTION (PREMIUM LIGHT MODE)
   ========================================================================== */

.map-section {
    background-color: var(--bg-light); /* #f7f7f9 Concrete Light */
    border-top: 1px solid var(--border-light);
    padding: 90px 0;
}

.map-premium-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Light Executive Location Box */
.map-info-card {
    position: absolute;
    left: 40px;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    background-color: #ffffff; /* Crisp Pure White */
    padding: 40px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.info-card-header {
    margin-bottom: 28px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    border-radius: 50%;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

/* Info Details List */
.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.info-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon-box {
    width: 38px;
    height: 38px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.info-detail-item strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.info-detail-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.map-directions-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.8rem;
}

/* Map Iframe Container (Bright Light Mode Finish) */
.map-iframe-container {
    width: 100%;
    height: 500px;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    /* Bright, crisp, high-clarity silver map filter */
    filter: contrast(102%) saturation(92%);
}

/* Responsive Scaling for Mobile & Tablets */
@media (max-width: 1024px) {
    .map-premium-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .map-info-card {
        position: relative;
        left: 0;
        max-width: 100%;
        box-shadow: none;
    }

    .map-iframe-container {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .map-info-card {
        padding: 24px;
    }
    .map-iframe-container {
        height: 300px;
    }
}



/* ==========================================================================
   PRODUCTS SECTION HEADINGS PERFECT CENTER ALIGNMENT FIX
   ========================================================================== */

#all-products .section-header,
#products .section-header,
.section-header.center {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#all-products .section-subtitle,
#all-products .section-title,
#products .section-subtitle,
#products .section-title,
.section-header.center .section-subtitle,
.section-header.center .section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
}




/* ==========================================================================
   FLOATING BUTTONS STACK & CONCENTRIC RING ALIGNMENT FIX
   ========================================================================== */

/* 1. BACK TO TOP BUTTON */
.back-to-top-btn {
    position: fixed !important;
    bottom: 94px !important; /* Directly above WhatsApp button */
    right: 30px !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background-color: #14161a !important;
    border: none !important; /* Removes native border offsets */
    color: #ffffff !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.back-to-top-btn.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.back-to-top-btn * {
    pointer-events: none !important;
}

/* PERFECT CONCENTRIC SVG RING ALIGNMENT FIX */
.back-to-top-btn .progress-ring {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    /* Locks exact geometric center */
    transform: translate(-50%, -50%) rotate(-90deg) !important;
    transform-origin: center center !important;
    overflow: visible !important;
}

.progress-ring-bg {
    fill: transparent !important;
    stroke: rgba(255, 255, 255, 0.15) !important;
    stroke-width: 2.5 !important;
}

.progress-ring-circle {
    fill: transparent !important;
    stroke: #e05a2b !important; /* Fire Orange */
    stroke-width: 2.5 !important;
    stroke-dasharray: 131.94 !important;
    stroke-dashoffset: 131.94 !important;
    transition: stroke-dashoffset 0.1s linear !important;
}

.back-to-top-btn .icon-arrow {
    font-size: 0.95rem !important;
    position: relative !important;
    z-index: 2 !important;
    color: #ffffff !important;
    transition: transform 0.3s ease !important;
}

.back-to-top-btn:hover .icon-arrow {
    transform: translateY(-3px) !important;
}

/* 2. FLOATING WHATSAPP BUTTON */
.floating-whatsapp-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background-color: #25d366 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9998 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6) !important;
}

.whatsapp-icon {
    font-size: 1.8rem !important;
    position: relative !important;
    z-index: 2 !important;
}

/* 3. CLEAN MOBILE RESPONSIVE STACK (< 768px) */
@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 16px !important;
        right: 16px !important;
        width: 46px !important;
        height: 46px !important;
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4) !important;
    }

    .whatsapp-icon {
        font-size: 1.5rem !important;
    }

    .back-to-top-btn {
        bottom: 72px !important; /* Stacked cleanly 10px above WhatsApp button */
        right: 16px !important;
        width: 46px !important;
        height: 46px !important;
    }

    .back-to-top-btn .icon-arrow {
        font-size: 0.85rem !important;
    }

    /* Hide hover text tooltips on touch screens */
    .whatsapp-tooltip {
        display: none !important;
    }
}

/* ==========================================================================
   BACK TO TOP BUTTON - SOLID FIRE ORANGE RING STRIP
   ========================================================================== */

/* Outer button border - Fire Orange */

/* Background Ring Track - Light Fire Orange */
.progress-ring-bg {
    fill: transparent !important;
    stroke: #e05a2b !important; /* Soft Orange Track */
    stroke-width: 2.5 !important;
}

/* Progress Ring Strip - Solid Vivid Fire Orange */
.progress-ring-circle {
    fill: transparent !important;
    stroke: #e05a2b !important; /* Solid Fire Orange */
    stroke-width: 3 !important;
    stroke-dasharray: 131.94 !important;
    stroke-dashoffset: 131.94 !important;
    transition: stroke-dashoffset 0.1s linear !important;
}



/* ==========================================================================
   GLOBAL 8PX ROUNDED CORNERS FOR ALL IMAGES & CONTAINERS
   ========================================================================== */

/* 1. Universal image tags */
img {
    border-radius: 8px !important;
}

/* 2. All image container wrappers (clips hover zoom animations inside 8px corners) */
.card-img-wrapper,
.project-img-box,
.preview-image-container,
.solution-img-wrapper,
.image-mask-wrapper,
.gallery-matrix-card,
.client-logo-card,
.hero-img-container
{
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* 3. EXCLUDE ALL PRODUCT SECTION IMAGES (KEEP STRICT 0PX STRAIGHT EDGES) */
#products img,
#all-products img,
#product-modal img,
.product-card-3col,
.product-card-3col img,
.product-card-3col .card-img-wrapper,
.product-preview-card,
.product-preview-card img,
.preview-image-container,
.preview-image-container img {
    border-radius: 0px !important;
}







/* ==========================================================================
   GALLERY BACKGROUND COLOR - #B4FFE4
   ========================================================================== */

.gallery-editorial-section,
#gallery {
    background-color: #ffff !important;
    color: #0f1115 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* Dark text for high-contrast readability against light background */
.gallery-editorial-section .section-title,
#gallery .section-title {
    color: #0f1115 !important;
}

