/* Catalog/Linen Range Section Redesign */
.linen-range-modern {
  padding: 120px 0;
  background-color: #f8fafc;
  position: relative;
}

.linen-range-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.range-image-stack {
  position: relative;
}

.range-main-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
}

.range-overlay-card {
  position: absolute;
  top: -30px;
  right: -30px;
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  max-width: 280px;
  z-index: 2;
  border: 1px solid #e2e8f0;
}

.range-overlay-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.range-overlay-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.range-content-nexus {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.range-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--service-restaurant, #d97706); /* Fixed color instead of var for robustness */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.range-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #1e293b;
  line-height: 1.1;
  letter-spacing: -2px;
}

.range-description {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.6;
}

.range-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.range-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #1e293b;
}

.range-feat-item i {
  color: var(--service-restaurant, #d97706);
  width: 20px;
  height: 20px;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: white;
  color: #1e293b;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 1rem;
}

.btn-catalog:hover {
  border-color: var(--service-restaurant, #d97706);
  color: var(--service-restaurant, #d97706);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
  .range-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .range-content-nexus {
    align-items: center;
  }
  .range-overlay-card {
    top: auto;
    bottom: -20px;
    right: 20px;
    left: 20px;
    max-width: none;
    text-align: center;
  }
  .range-features {
    justify-content: center;
  }
  .range-main-img {
    height: 450px;
  }
}

/* Sustainability Modern Redesign */
.sustainability-modern {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.sustainability-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.eco-header .tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.eco-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -2px;
}

.eco-header .intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 3rem;
}

.eco-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.eco-stat-item {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.eco-stat-item:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: #22c55e;
  box-shadow: 0 30px 60px -12px rgba(34, 197, 94, 0.15);
}

.eco-stat-icon {
  width: 56px;
  height: 56px;
  background: white;
  color: #22c55e;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.eco-stat-item:hover .eco-stat-icon {
  background: #22c55e;
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.eco-stat-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.eco-stat-item p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.eco-visual-area {
  position: relative;
}

.eco-main-card {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border-radius: 48px;
  padding: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(22, 163, 74, 0.25);
}

.eco-main-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}

.eco-card-content {
  position: relative;
  z-index: 2;
}

.eco-card-content h4 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.eco-card-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.eco-badge-nexus {
  display: flex;
  gap: 1.5rem;
}

.eco-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eco-badge-item i {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Solutions Nexus Section */
.solutions-nexus-modern {
  padding: 120px 0;
  background-color: #f8fafc;
}

.solutions-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.solutions-header-box {
  text-align: center;
  margin-bottom: 5rem;
}

.solutions-header-box .tag {
  color: var(--service-restaurant, #d97706);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.solutions-header-box h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 950;
  color: #1e293b;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.solutions-grid-nexus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.solution-card-modern {
  background: white;
  border-radius: 32px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-card-modern:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--service-restaurant, #d97706);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.1);
}

.sol-icon-box {
  width: 72px;
  height: 72px;
  background: #fff7ed;
  color: var(--service-restaurant, #d97706);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.solution-card-modern:hover .sol-icon-box {
  background: var(--service-restaurant, #d97706);
  color: white;
  transform: rotate(10deg);
}

.solution-card-modern h3 {
  font-size: 1.4rem;
  font-weight: 850;
  color: #1e293b;
  margin-bottom: 1rem;
}

.solution-card-modern p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sol-link-text {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--service-restaurant, #d97706);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

@media (max-width: 1200px) {
  .solutions-grid-nexus {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Restaurant Form Redesign 2026 */
.restaurant-form-section {
    padding: 120px 0;
    background: white;
    position: relative;
}
.restaurant-form-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem;
}
.restaurant-form-wrapper {
    background: #f8fafc;
    border-radius: 48px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.08);
}
.restaurant-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}
.restaurant-form-info {
    background: linear-gradient(rgba(217, 119, 6, 0.92), rgba(217, 119, 6, 0.92)), url('/global/images/home-page/rest.webp') center/cover;
    padding: 4rem 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.restaurant-form-info h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}
.restaurant-form-info p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 3rem;
}
.restaurant-form-benefit {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}
.restaurant-form-benefit:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}
.restaurant-form-input-panel {
    padding: 4rem 3rem;
    background: white;
}
.restaurant-form-input-panel label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: block;
}
.restaurant-form-input-panel input, 
.restaurant-form-input-panel select, 
.restaurant-form-input-panel textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.restaurant-form-input-panel input:focus {
    border-color: var(--service-restaurant, #d97706);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}
.restaurant-form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--service-restaurant, #d97706);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.restaurant-form-submit:hover {
    background: #b45309;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.25);
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: #64748b;
    margin: 1.5rem 0;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .restaurant-form-grid { grid-template-columns: 1fr; }
    .restaurant-form-info { padding: 3rem; text-align: center; align-items: center; }
    .restaurant-form-info h2 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    .restaurant-form-section { padding: 60px 0; }
    .restaurant-form-input-panel { padding: 2rem; }
    .restaurant-form-benefit { justify-content: center; width: 100%; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}
