/* ========== FONT IMPORT ========== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

/* ========== RESET / BASE ========== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
}


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

a:hover {
  text-decoration: none;
}

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

/* ========== TOKENS ========== */

:root {
  
  --color-dark: #1a1a1a;         
  --color-light: #fafafa;        
  --color-white: #ffffff;        
  --color-text: #1a1a1a;         
  --color-text-muted: #666666;   
  --color-border: #e0e0e0;       
  --color-accent: #d8933f;       
  --color-accent-hover: #f3b76a; 

  
  --font-base: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: clamp(28px, 4vw, 48px);
  --font-size-xxl: clamp(34px, 5vw, 60px);

  
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-xxl: 60px;

  
  --container-max-width: 1280px;
  --container-padding-x: clamp(24px, 4vw, 40px);
  --section-padding-y: clamp(60px, 8vw, 120px);
  --header-height: 80px;
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
}



.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

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



h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-block: var(--space-md) var(--space-sm);
}

.section--hero h1 {
  color: var(--color-white);
}

h1 {
  font-size: var(--font-size-xxl);
}

h2 {
  font-size: var(--font-size-xl);
}

h3 {
  font-size: clamp(20px, 2.5vw, 24px);
}



p {
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
}

.btn--secondary {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

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

.btn--lg {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn--fixed-width {
  min-width: 220px;
}

/* ========== HEADER / NAV / FOOTER ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, height 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, border-radius 0.3s ease;
  overflow: hidden;
}

.site-header--scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  height: var(--header-height);
  padding-block: var(--space-md);
  padding-inline: var(--container-padding-x);
  max-width: var(--container-max-width);
  margin-inline: auto;
}

.header__actions {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.logo--hero {
  flex-direction: row;
  justify-self: center;
  align-items: center;
  gap: var(--space-sm);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.logo--hero img {
  height: 48px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 14px;
}

.nav--primary {
  justify-content: flex-start;
}

.nav__link {
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}



.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.nav__link:hover::after {
  transform: scaleX(1);
}

.btn--small {
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
}

.btn--outline {
  background-color: transparent;
  border: 1.5px solid var(--color-white);
  color: var(--color-white);
  box-shadow: none;
  font-weight: 600;
  transition: all 0.3s ease;
}



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

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

.header__cta {
  display: none;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.3s ease;
}



.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle--open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle--open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .site-header {
    height: var(--header-height);
    will-change: height;
  }

  .site-header--open {
    height: 70vh;
    border-radius: 0 0 24px 24px;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    gap: var(--space-md);
  }

  .logo--hero {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo--hero img {
    height: 40px;
  }

  .header__actions {
    gap: var(--space-xs);
    margin-left: auto;
  }

  .header__actions .btn {
    display: none;
  }

  .nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.35s ease 0.1s;
    padding: var(--space-xl);
  }

  .site-header--open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
  }

  .nav__link:hover {
    color: var(--color-white);
  }

  .nav__link::after {
    background: var(--color-accent);
  }

  .nav__cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: var(--space-sm);
  }

  .btn--small.btn--outline {
    align-self: center;
    min-width: 220px;
    border-color: transparent;
    background-color: var(--color-accent);
    color: var(--color-white);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* Mobile contact icons - styled like contact form */
  .nav__contact-icons {
    display: flex !important;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .nav__contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: all 0.3s ease;
  }
  
  .nav__contact-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }
  
  .nav__contact-icon--whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
  }
  
  .nav__contact-icon--whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
  }
}

/* Hide mobile contact icons on desktop */
.nav__contact-icons {
  display: none;
}

@media (min-width: 1025px) {
  .header__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .logo--hero {
    justify-self: center;
  }

  .header__actions .btn {
    display: inline-flex;
  }

  .nav__cta {
    display: none;
  }
}

/* ========== SERVICES SECTION ========== */

.section--services {
  background-color: var(--color-light);
  border-radius: 0;
  margin-top: 0;
  position: relative;
  z-index: 2;
  scroll-margin-top: 60px;
}

.services__content {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 60px);
}

.services__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--color-text);
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  line-height: 1.1;
  font-weight: 700;
}

.services__title-accent {
  color: var(--color-accent);
}

.services__subtitle {
  color: var(--color-text-muted);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
  margin: clamp(12px, 1.5vw, 16px) 0 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.services__carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 2px solid var(--color-accent);
}

.services__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide {
  min-width: 100%;
  position: relative;
  background: var(--color-white);
  border: none;
  border-radius: 0;
  overflow: hidden;
  height: clamp(280px, 32vw, 400px);
  display: flex;
}

.service-slide__image {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-slide:hover .service-slide__image img {
  transform: scale(1.05);
}

.service-slide__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.5vw, 16px);
  padding: clamp(24px, 4vw, 60px);
}

.service-slide__icon {
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
  border-radius: 50%;
  background: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.service-slide__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  margin: 0;
  color: var(--color-accent);
  text-align: center;
}

.service-slide__description {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  font-size: clamp(13px, 1.3vw, 16px);
  max-width: 420px;
  text-align: center;
}

.services__indicators {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1vw, 12px);
  margin-top: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(12px, 1.5vw, 16px);
}

.service-indicator {
  width: clamp(10px, 1vw, 12px);
  height: clamp(10px, 1vw, 12px);
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-indicator.active,
.service-indicator:hover {
  background: var(--color-accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .service-slide {
    flex-direction: column;
    height: auto !important;
    min-height: 450px;
  }
  
  .service-slide__image {
    width: 100%;
    height: 250px;
    min-height: 250px;
  }
  
  .service-slide__content {
    padding: var(--space-lg);
    flex: 1;
  }
}

@media (max-width: 600px) {
  .service-slide {
    min-height: 400px;
  }
  
  .service-slide__image {
    height: 200px;
    min-height: 200px;
  }
}

@media (max-width: 1024px) {
  .services__indicators {
    gap: 12px;
  }
  
  .service-indicator {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px;
    min-height: 10px;
    padding: 0;
    border-radius: 50% !important;
  }
}

/* ========== MATERIALS SECTION ========== */

.section--materials {
  background-color: var(--color-light);
  padding-top: var(--space-xl);
  scroll-margin-top: 60px;
}

.materials__header {
  position: sticky;
  top: var(--header-height);
  background-color: var(--color-light);
  text-align: center;
  padding: clamp(24px, 3vw, 40px) 0 clamp(16px, 2vw, 24px);
  margin-bottom: 0;
  z-index: 10;
}

.materials__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--color-text);
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
}

.materials__title-accent {
  color: var(--color-accent);
}

.materials__showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(200px, 22vw, 280px);
  grid-auto-flow: dense;
  gap: clamp(12px, 1.5vw, 16px);
  padding-bottom: clamp(40px, 5vw, 60px);
}

.material-showcase-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.material-showcase-item--large {
  grid-column: span 2;
  grid-row: span 2;
  margin-bottom: 0;
}

.material-showcase-item--wide {
  grid-column: span 2;
}

.material-showcase-item__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.material-showcase-item:hover .material-showcase-item__image img {
  transform: scale(1.05);
}

.material-showcase-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 26, 0.9) 100%);
  transition: background 0.4s ease;
}

.material-showcase-item:hover .material-showcase-item__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(216, 147, 63, 0.85) 100%);
}

.material-showcase-item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 2vw, 24px);
  z-index: 2;
}

/* Desktop alignment fix for cards with long titles */
@media (min-width: 1025px) {
  .material-showcase-item__content--align {
    padding-top: clamp(40px, 5vw, 60px);
  }
}

.material-showcase-item__tag {
  display: inline-block;
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-accent);
  padding: clamp(3px, 0.4vw, 4px) clamp(6px, 0.8vw, 10px);
  margin-bottom: clamp(8px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.material-showcase-item__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 clamp(4px, 0.5vw, 8px);
  line-height: 1.2;
}

.material-showcase-item--large .material-showcase-item__title {
  font-size: clamp(24px, 3.5vw, 42px);
}

.material-showcase-item__description {
  font-size: clamp(11px, 1.1vw, 14px);
  color: var(--color-white);
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.material-showcase-item:hover .material-showcase-item__description {
  opacity: 1;
}

@media (max-width: 1024px) {
  .materials__header {
    position: static;
    padding: var(--space-xl) 0;
  }
  
  .materials__showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }
  
  .material-showcase-item {
    min-height: 280px;
    grid-row: span 1 !important;
    grid-column: span 2;
  }
  
  
  .materials__showcase .material-showcase-item:not(:first-child) {
    margin-top: 40px;
  }
  
  .material-showcase-item--large {
    grid-column: span 2;
    grid-row: span 1 !important;
    min-height: 320px;
    margin-bottom: 0;
  }
  
  .material-showcase-item--wide {
    grid-column: span 2;
    grid-row: span 1 !important;
  }
  
  
  .material-showcase-item:hover .material-showcase-item__overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 26, 0.9) 100%);
  }
  
  .material-showcase-item:hover .material-showcase-item__image img {
    transform: none;
  }
  
  .material-showcase-item:hover .material-showcase-item__description {
    opacity: 0;
  }
  
  
  .material-showcase-item.is-active .material-showcase-item__overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(216, 147, 63, 0.85) 100%) !important;
  }
  
  .material-showcase-item.is-active .material-showcase-item__image img {
    transform: scale(1.05) !important;
  }
  
  .material-showcase-item.is-active .material-showcase-item__description {
    opacity: 1 !important;
  }
}

@media (max-width: 600px) {
  .section--materials {
    padding-top: 40px;
  }
  
  .materials__header {
    position: sticky;
    top: 70px;
    background-color: var(--color-light);
    z-index: 20;
    padding: 20px 0 16px;
    margin-bottom: 0;
  }
  
  .materials__showcase {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }
  
  .material-showcase-item,
  .material-showcase-item--large,
  .material-showcase-item--wide {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 350px !important;
    height: 350px !important;
    width: 100% !important;
    position: sticky;
    top: 142px;
    border-radius: 0 !important;
  }
  
  
  .material-showcase-item__image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }
  
  .material-showcase-item__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .material-showcase-item:first-child {
    margin-top: 0;
  }
  
  .materials__showcase .material-showcase-item:not(:first-child) {
    margin-top: 0;
  }
  
  
  .material-showcase-item__content {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 24px;
  }
  
  
  .material-showcase-item__overlay {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
  }
  
  
  .material-showcase-item__title,
  .material-showcase-item--large .material-showcase-item__title,
  .material-showcase-item--wide .material-showcase-item__title {
    font-size: 28px !important;
  }
  
  
  .material-showcase-item__description {
    opacity: 1;
    font-size: 14px;
    margin-top: 8px;
  }
  
  
  .material-showcase-item__tag {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  
  
  .material-showcase-item:hover .material-showcase-item__overlay {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
  }
  
  .material-showcase-item:hover .material-showcase-item__image img {
    transform: none !important;
  }
  
  
  .material-showcase-item.is-active .material-showcase-item__overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(216, 147, 63, 0.85) 100%) !important;
  }
  
  .material-showcase-item.is-active .material-showcase-item__image img {
    transform: none !important;
  }
}

/* ========== COVERAGE SECTION ========== */

.section--coverage {
  background-color: var(--color-dark);
  overflow: hidden;
  scroll-margin-top: 60px;
}

.coverage__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 60px);
}

.coverage__label {
  display: inline-block;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.coverage__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--color-white);
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
}

.coverage__title-accent {
  color: var(--color-accent);
}

.coverage__content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.coverage__map-wrapper {
  position: relative;
}

.coverage__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 630;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage__map-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.mexico-map {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: all;
  position: relative;
  z-index: 1;
}

.coverage__info {
  display: flex;
  flex-direction: column;
}

.coverage__info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.coverage__description {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--color-white);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.coverage__text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
  font-size: clamp(13px, 1.3vw, 15px);
}

.coverage__stats {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 12px);
}

.coverage__stat {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(8px, 1vw, 12px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.coverage__stat:last-child {
  border-bottom: none;
}

.coverage__stat-icon {
  width: clamp(28px, 3vw, 36px);
  height: clamp(28px, 3vw, 36px);
  border-radius: 0;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.coverage__stat-text {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.coverage__btn {
  margin-top: var(--space-sm);
}

.state-name {
  color: var(--color-accent);
  font-weight: 600;
  transition: color 0.3s ease;
}

/* ========== SECTION DIVIDER ========== */

.section-divider {
  background-color: var(--color-dark);
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: center;
}

.section-divider--light {
  background-color: var(--color-light);
}

.section-divider--light .section-divider__line {
  background: linear-gradient(
    to right,
    transparent,
    var(--color-border) 20%,
    var(--color-text-muted) 50%,
    var(--color-border) 80%,
    transparent
  );
}

.section-divider__line {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08) 20%,
    var(--color-accent) 50%,
    rgba(255, 255, 255, 0.08) 80%,
    transparent
  );
}

/* ========== ABOUT SECTION ========== */

.section--about {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  scroll-margin-top: 60px;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--space-xxl) * 2);
  align-items: start;
}

.about__main {
  display: flex;
  flex-direction: column;
}

.about__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.about__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--color-white);
  margin: 0 0 var(--space-lg);
  line-height: 1.1;
  font-weight: 700;
}

.about__title-accent {
  color: var(--color-accent);
  font-style: italic;
}

.about__description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0 0 var(--space-lg);
  max-width: 500px;
}

.about__stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.about__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.about__feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(16px, 2.5vw, 40px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about__feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.about__feature-card:hover::before {
  transform: scaleX(1);
}

.about__feature-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: clamp(8px, 1vw, 16px);
}

.about__feature-title {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 clamp(6px, 0.8vw, 12px);
}

.about__feature-description {
  font-size: clamp(12px, 1.2vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.about__feature-card--highlight {
  background: linear-gradient(135deg, rgba(216, 147, 63, 0.15) 0%, rgba(216, 147, 63, 0.05) 100%);
  border-color: rgba(216, 147, 63, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__feature-card--highlight::before {
  display: none;
}

.about__brands-mini {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 0.8vw, 12px);
  margin-bottom: clamp(8px, 1vw, 16px);
}

.about__brands-mini span {
  font-family: var(--font-heading);
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 600;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(4px, 0.5vw, 6px) clamp(8px, 1vw, 12px);
  border-radius: 0;
}

.about__brands-text {
  font-size: clamp(11px, 1.1vw, 14px);
  color: var(--color-accent);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .about__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
  
  .about__features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 1vw, 16px);
  }
  
  .about__description {
    font-size: clamp(14px, 1.5vw, 18px);
    margin-bottom: var(--space-md);
  }
  
  .about__stats {
    gap: var(--space-md);
    padding-top: var(--space-md);
  }
  
  .about__stat-number {
    font-size: clamp(28px, 3.5vw, 40px);
  }
  
  .about__stat-label {
    font-size: clamp(10px, 1.1vw, 14px);
  }
}

@media (max-width: 768px) {
  .about__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
  }
  
  .about__stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  
  .about__stat {
    flex: 1;
    min-width: 80px;
  }
  
  .about__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__feature-card {
    aspect-ratio: auto;
  }
}

@media (max-width: 600px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .about__features-grid {
    grid-template-columns: 1fr;
  }
  
  .about__feature-card {
    padding: var(--space-md);
    aspect-ratio: auto;
  }
  
  .about__feature-number {
    font-size: 36px;
  }
  
  .about__feature-title {
    font-size: 16px;
  }
  
  .about__feature-description {
    font-size: 14px;
  }
}

/* ========== CONTACT FORM ========== */

.section--contact {
  background-color: var(--color-light);
  scroll-margin-top: 60px;
}

.contact__header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.contact__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--color-text);
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
}

.contact__title-accent {
  color: var(--color-accent);
}

.contact__subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--color-text-muted);
  margin: var(--space-md) 0 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: stretch;
}

.contact__form-wrapper {
  background: var(--color-white);
  border-radius: 0;
  padding: clamp(20px, 3vw, 40px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 16px);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 16px);
}

.form__label {
  font-weight: 600;
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--color-text);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.5vw, 18px);
  border: 2px solid var(--color-border);
  border-radius: 0;
  font-family: var(--font-base);
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--color-text);
  background: var(--color-light);
  transition: all 0.3s ease;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: clamp(80px, 10vw, 120px);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f97316' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.btn--full {
  width: 100%;
  margin-top: var(--space-sm);
}

/* Contact Info Card */
.contact__info-card {
  background: var(--color-dark);
  border-radius: 0;
  padding: clamp(20px, 3vw, 40px);
  color: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact__info-text {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 clamp(12px, 1.5vw, 16px);
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 16px);
}

.contact__method {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 16px);
  padding: clamp(10px, 1.3vw, 16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact__method:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact__method-icon {
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
  border-radius: 0;
  background: rgba(249, 115, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact__method-icon--whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.contact__method-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.contact__method-label {
  font-size: clamp(10px, 1.1vw, 13px);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__method-value {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact__method-arrow {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact__method:hover .contact__method-arrow {
  color: var(--color-accent);
  transform: translate(3px, -3px);
}

.contact__schedule {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 16px);
  padding-top: clamp(16px, 2vw, 24px);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__schedule-icon {
  width: clamp(32px, 3.5vw, 40px);
  height: clamp(32px, 3.5vw, 40px);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.contact__schedule-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__schedule-label {
  font-size: clamp(10px, 1vw, 12px);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__schedule-value {
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .contact__content {
    grid-template-columns: 1fr 1.3fr;
  }
}

@media (max-width: 768px) {
  .contact__content {
    grid-template-columns: 1fr;
  }
  
  .contact__info-card {
    order: -1;
  }
  
  .form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1400px) {
  .coverage__map {
    width: 110%;
    padding: var(--space-sm);
  }
}

@media (max-width: 900px) {
  .coverage__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .coverage__content {
    grid-template-columns: 1fr;
  }
  
  .coverage__map {
    width: 100%;
    margin: 0 auto;
  }
}

/* ========== FOOTER ========== */

.site-footer {
  background-color: var(--color-dark);
  padding: 80px 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  column-gap: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer__logo {
  display: block;
  width: 120px;
}

.footer__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand-text {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__column:last-child {
  padding-left: var(--space-lg);
}

.footer__column-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__link:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer__contact-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

a.footer__contact-item:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer__contact-item--hours {
  cursor: default;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
}

.footer__copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal-separator {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .site-footer {
    padding: 60px 0 var(--space-xl);
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
  
  .footer__brand-text {
    max-width: 180px;
  }
  
  .footer__column:last-child {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 24px 0 var(--space-lg);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
    padding-top: var(--space-xl);
  }
  
  
  .footer__column:has(.footer__nav) {
    display: none;
  }
  
  .footer__column {
    align-items: center;
  }
  
  .footer__column:last-child {
    align-items: center;
    gap: var(--space-lg);
  }

  .footer__column:last-child .footer__column-title {
    align-self: center;
  }

  .footer__contact-list {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .footer__contact-item {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    max-width: 340px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========== HERO ========== */

.section--hero {
  position: relative;
  background: url("../img/materiales-construccion-hero-bg.png") center / cover no-repeat;
  color: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--header-height) var(--container-padding-x) 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(10, 10, 10, 0.85) 0%, 
    rgba(15, 15, 15, 0.75) 50%,
    rgba(10, 10, 10, 0.9) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: clamp(600px, 70vw, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.5vw, 16px);
  flex: 1;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px) 0;
}

.hero__tagline {
  font-size: clamp(9px, 0.9vw, 13px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.3vw, 3px);
  color: var(--color-accent);
  margin: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.5vw, 88px);
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: var(--color-white);
  letter-spacing: clamp(-1px, -0.2vw, -3px);
}

.hero__subtitle {
  font-size: clamp(12px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: clamp(12px, 1.5vw, 16px);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(12px, 1.5vw, 16px);
}

.hero__actions .btn {
  min-width: clamp(160px, 16vw, 200px);
  text-align: center;
  padding: clamp(10px, 1.2vw, 12px) clamp(20px, 2.5vw, 28px);
  font-size: clamp(13px, 1.3vw, 15px);
}

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

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Bottom */
.hero__bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(24px, 3vw, 40px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 5vw, 60px);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.5vw, 6px);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
}

.hero__stat-label {
  font-size: clamp(9px, 1vw, 12px);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.15vw, 1.5px);
}

/* ========== TABLET RESPONSIVE (iPad Mini 768px, iPad 11" 834px) ========== */
@media (min-width: 601px) and (max-width: 1024px) {
  :root {
    --section-padding-y: clamp(48px, 6vw, 80px);
  }
  
  
  .section--hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }
  
  .hero__content {
    padding: var(--space-lg) 0;
    gap: var(--space-sm);
  }
  
  .hero__title {
    font-size: clamp(36px, 6vw, 52px);
    letter-spacing: -1.5px;
  }
  
  .hero__subtitle {
    font-size: 16px;
    max-width: 420px;
  }
  
  .hero__bottom {
    padding: var(--space-lg) 0;
    gap: var(--space-lg);
  }
  
  .hero__stat-value {
    font-size: 28px;
  }
  
  
  .service-slide {
    height: 320px;
  }
  
  .service-slide__content {
    padding: var(--space-lg);
    gap: var(--space-sm);
  }
  
  .service-slide__title {
    font-size: 20px;
  }
  
  .service-slide__description {
    font-size: 14px;
  }
  
  
  .materials__showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    row-gap: 16px;
    column-gap: 16px;
  }
  
  .material-showcase-item {
    min-height: 220px;
  }
  
  .material-showcase-item--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 260px;
  }
  
  .material-showcase-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .material-showcase-item__title {
    font-size: 22px;
  }
  
  .material-showcase-item--large .material-showcase-item__title {
    font-size: 32px;
  }
  
  
  .coverage__header {
    margin-bottom: var(--space-xl);
  }
  
  .coverage__info-card {
    padding: var(--space-lg);
    gap: var(--space-md);
  }
  
  .coverage__description {
    font-size: 16px;
  }
  
  .coverage__text {
    font-size: 14px;
  }
  
  
  .about__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  
  .contact__header {
    margin-bottom: var(--space-xl);
  }
  
  .contact__form-wrapper,
  .contact__info-card {
    padding: var(--space-lg);
  }
  
  .contact__info-text {
    font-size: 14px;
  }
  
  .contact__method {
    padding: var(--space-sm) var(--space-md);
  }
  
  .contact__method-icon {
    width: 42px;
    height: 42px;
  }
  
  
  .site-footer {
    padding: 60px 0 var(--space-lg);
  }
  
  .footer__grid {
    padding-bottom: var(--space-xl);
  }
}


@media (min-width: 601px) and (max-width: 1024px) and (orientation: landscape) {
  .section--hero {
    min-height: 100vh;
    padding-top: var(--header-height);
  }
  
  .hero__content {
    padding: var(--space-md) 0;
  }
  
  .hero__title {
    font-size: clamp(32px, 5vw, 48px);
  }
  
  .hero__stats {
    gap: var(--space-xl);
  }
  
  .hero__stat-value {
    font-size: 24px;
  }
  
  .hero__stat-label {
    font-size: 10px;
  }
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: -1.2px;
  }
  
  .hero__tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
  
  .hero__stats {
    gap: var(--space-lg);
  }
  
  .hero__stat-value {
    font-size: 24px;
  }
  
  .hero__stat-label {
    font-size: 10px;
  }
  
  .hero__bottom {
    padding: var(--space-lg) 0;
    gap: var(--space-lg);
  }
}

@media (max-width: 600px) {
  .footer__contact-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  .footer__contact-item {
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.10);
    padding: var(--space-sm) var(--space-md);
    font-size: 15px;
    width: 100%;
    max-width: 340px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-md);
    transition: box-shadow 0.3s, background 0.3s;
  }
  .footer__contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    opacity: 1;
    margin-right: var(--space-md);
    flex-shrink: 0;
    transition: color 0.3s;
  }
  .footer__contact-item span {
    display: inline;
    font-size: 15px;
    color: var(--color-white);
    font-weight: 500;
  }
  .footer__contact-item--hours {
    display: flex !important;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    background: var(--color-dark);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-sm) var(--space-md);
    align-items: center;
    gap: var(--space-md);
  }
}
