/* ==========================================================================
   KSM QUARRIES - GLOBAL DESIGN SYSTEM & STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- RESET & GLOBALS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   PAGE PRELOADER / SLEEK DOT CSS LOADER
   ========================================================================== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #141210;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 88px;
  width: auto;
  opacity: 0.98;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.loader-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loader-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #C5A25D;
  display: inline-block;
  animation: dotPulse 1.4s infinite ease-in-out both;
  box-shadow: 0 0 10px rgba(197, 162, 93, 0.4);
}

.loader-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loader-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(0.35);
    opacity: 0.25;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #161513;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

ul {
  list-style: none;
}

/* --- COLOR PALETTE VARIABLES --- */
:root {
  --color-gold: #C5A25D;
  --color-gold-hover: #D4B36E;
  --color-gold-dark: #A88643;
  --color-dark-bg: #161513;
  --color-dark-card: #1F1D1A;
  --color-dark-text: #1C1815;
  --color-light-bg: #EAE7E2;
  --color-light-bg-alt: #F4F2EE;
  --color-light-text: #4A453F;
  --color-white: #FFFFFF;
  --transition-fast: 0.25s ease;
  --max-width: 1240px;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 4rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background-color var(--transition-fast);
}

.site-header.scrolled {
  position: fixed;
  background-color: rgba(20, 19, 17, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.8rem 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.logo-link:hover .logo-img {
  transform: scale(1.02);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #E2DFD8;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-touch {
  background-color: var(--color-gold);
  color: var(--color-dark-text);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(197, 162, 93, 0.25);
  text-transform: uppercase;
}

.btn-touch:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 162, 93, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

/* ==========================================================================
   100VH FULL BLEED HERO SECTION (HOME PAGE)
   ========================================================================== */
.hero-section.full-bleed-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem 4rem;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scaleX(-1) scale(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(14, 13, 11, 0.88) 0%,
    rgba(14, 13, 11, 0.70) 50%,
    rgba(14, 13, 11, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.0rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.title-white {
  color: var(--color-white);
}

.title-gold {
  color: var(--color-gold);
}

.hero-description {
  max-width: 580px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #D6D2CA;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.78rem 1.5rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-dark-text);
  box-shadow: 0 4px 15px rgba(197, 162, 93, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 162, 93, 0.45);
}

.btn-secondary {
  background-color: rgba(22, 20, 17, 0.75);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-dark-text);
  transform: translateY(-2px);
}

.btn-secondary:hover .btn-arrow {
  color: var(--color-dark-text);
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   FEATURE BAND (HOME PAGE)
   ========================================================================== */
.feature-band {
  background: linear-gradient(180deg, #22201D 0%, #1A1816 100%);
  border-top: 1px solid rgba(197, 162, 93, 0.25);
  border-bottom: 1px solid rgba(197, 162, 93, 0.25);
  padding: 2.5rem 4rem;
  position: relative;
  z-index: 10;
}

.feature-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.8rem 1rem;
  position: relative;
}

.feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-icon {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon {
  transform: translateY(-3px);
}

.feature-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.feature-text {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #B5B0A6;
  max-width: 180px;
}

/* ==========================================================================
   WHO WE ARE SECTION (HOME PAGE)
   ========================================================================== */
.about-section {
  background-color: var(--color-light-bg);
  color: var(--color-dark-text);
  padding: 5.5rem 4rem;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
}

.section-tag {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #B88E3E;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.about-heading {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-dark-text);
  letter-spacing: -0.01em;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.about-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-light-text);
  margin-bottom: 2rem;
}

.btn-dark {
  background-color: var(--color-dark-text);
  color: var(--color-white);
  align-self: flex-start;
}

.btn-dark .btn-arrow {
  color: var(--color-gold);
}

.btn-dark:hover {
  background-color: #332E28;
  transform: translateY(-2px);
}

.about-image-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

/* ==========================================================================
   MINI HERO SECTION (COMPACT TIGHT COLUMN)
   ========================================================================== */
.mini-hero-section {
  position: relative;
  min-height: 210px;
  padding: 6.5rem 4rem 2rem 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #141210;
}

.mini-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mini-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  filter: brightness(0.8);
}

.mini-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(14, 13, 11, 0.92) 0%,
    rgba(14, 13, 11, 0.80) 50%,
    rgba(14, 13, 11, 0.65) 100%
  );
}

.mini-hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.mini-hero-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  width: 100%;
}

.mini-hero-title {
  font-size: 2.0rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--color-white);
  text-transform: uppercase;
}

.mini-hero-title .title-gold {
  color: var(--color-gold);
}

.mini-hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #D6D2CA;
  font-weight: 400;
}

/* ==========================================================================
   COMMON LIGHT SECTION WRAPPER
   ========================================================================== */
.light-section {
  background-color: var(--color-light-bg);
  color: var(--color-dark-text);
  padding: 4.5rem 4rem;
}

.light-section:nth-of-type(even) {
  background-color: var(--color-light-bg-alt);
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--color-dark-text);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* ==========================================================================
   PRODUCTS SECTION (4x2 GRID)
   ========================================================================== */
.products-grid-4x2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background-color: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2DFD8;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img-frame {
  height: 135px;
  background-color: #DDD9D1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #6E685F;
  padding: 1rem;
  text-align: center;
}

.product-placeholder-icon {
  width: 32px;
  height: 32px;
  opacity: 0.6;
}

.product-placeholder-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--color-dark-text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.product-specs {
  font-size: 0.78rem;
  color: #555048;
  line-height: 1.5;
}

.product-specs strong {
  color: var(--color-dark-text);
}

.future-products-card {
  background: linear-gradient(135deg, #1C1A17 0%, #2A2621 100%);
  color: var(--color-white);
  padding: 1.5rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(197, 162, 93, 0.3);
}

.future-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.future-text {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #CCC7BD;
  margin-bottom: 1.2rem;
}

.btn-future {
  align-self: flex-start;
  background-color: var(--color-gold);
  color: var(--color-dark-text);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

.btn-future:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   OUR OPERATIONS SECTION (HORIZONTAL SPLIT WITH STYLISH PROCESS CARDS)
   ========================================================================== */
.operations-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.operations-intro-text {
  max-width: 580px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-light-text);
}

.operations-steps-horizontal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.9rem;
}

.op-card-step {
  background-color: #FFFFFF;
  border: 1px solid #E2DFD8;
  border-radius: 6px;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.op-card-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.op-badge-icon {
  position: relative;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.op-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-dark-text);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -10px;
  box-shadow: 0 2px 6px rgba(197, 162, 93, 0.4);
}

.op-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #F4F2EE;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-text);
}

.op-icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold-dark);
}

.op-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-dark-text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.op-card-desc {
  font-size: 0.72rem;
  line-height: 1.4;
  color: #666056;
}

/* ==========================================================================
   REQUEST A QUOTE SECTION (HORIZONTAL FULL WIDTH SPLIT FORM)
   ========================================================================== */
.quote-horizontal-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid #E2DFD8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-header-text {
  margin-bottom: 2rem;
  max-width: 680px;
}

.quote-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--color-dark-text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.quote-subtitle {
  font-size: 0.9rem;
  color: var(--color-light-text);
  line-height: 1.5;
}

.quote-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: #F8F6F2;
  border: 1px solid #DCD8CF;
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  color: var(--color-dark-text);
  font-family: inherit;
  font-size: 0.88rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 162, 93, 0.15);
}

.form-row-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0.8rem;
}

.btn-submit-wide {
  background-color: var(--color-gold);
  color: var(--color-dark-text);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(197, 162, 93, 0.3);
}

.btn-submit-wide:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 162, 93, 0.45);
}

.whatsapp-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #4A453F;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  fill: #25D366;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: #171513;
  border-top: 1px solid rgba(197, 162, 93, 0.3);
  padding: 4rem 4rem 1.8rem 4rem;
  color: #C5C0B6;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #B5B0A5;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #B5B0A5;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 1.5rem auto 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: #7A756D;
}

/* ==========================================================================
   MOBILE & RESPONSIVE OPTIMIZATIONS (SCOPED STRICTLY TO <= 1200px)
   ========================================================================== */
@media (max-width: 1200px) {
  .site-header {
    padding: 1.25rem 2rem;
  }
  .hero-section.full-bleed-hero {
    padding: 8rem 2rem 4rem 2rem;
  }
  .mini-hero-section {
    padding: 7rem 2rem 2rem 2rem;
  }
  .mini-hero-column {
    gap: 0.5rem;
  }
  .mini-hero-subtitle {
    white-space: normal;
  }
  .light-section {
    padding: 3.5rem 2rem;
  }
  .products-grid-4x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .operations-steps-horizontal {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .site-footer {
    padding: 3.5rem 2rem 1.5rem 2rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #1A1917;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.7);
    padding: 5rem 2rem 2rem 2rem;
    transition: right var(--transition-fast);
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 101;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
  }

  .feature-card::after {
    display: none;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .quote-horizontal-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .hero-section.full-bleed-hero {
    min-height: 100vh;
    height: 100dvh;
    padding: 7rem 1.25rem 3rem 1.25rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.4rem);
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .btn-touch {
    display: none;
  }

  .light-section {
    padding: 2.8rem 1.25rem;
  }

  .products-grid-4x2 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .operations-steps-horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-row-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .btn-submit-wide {
    width: 100%;
  }

  .whatsapp-badge {
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-heading {
    font-size: 1.65rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .mini-hero-title {
    font-size: 1.55rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0.5rem;
  }

  .feature-icon svg {
    width: 36px;
    height: 36px;
  }

  .feature-title {
    font-size: 0.76rem;
  }

  .feature-text {
    font-size: 0.7rem;
  }

  .operations-steps-horizontal {
    grid-template-columns: 1fr;
  }

  .loader-logo {
    height: 46px;
  }

  .loader-spinner {
    width: 40px;
    height: 40px;
  }
}
