:root {
  --primary-color: #0b0c41;
  --secondary-color: #2c5282;
  --accent-color: #FBA301;
  --light-bg: #f8fafc;
  --text-color: #2d3748;
  --text-light: #718096;
}

body {
  font-family: 'Hind', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ==========================
   BANNER SECTION
   ========================== */
.bannerr {
  background-image: url('https://www.electroluxprofessional.com/wp-content/uploads/2016/06/finishing-quadro.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  margin-top: 70px;
}

.bannerr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.bannerr-content {
  z-index: 2;
  max-width: 800px;
}

.bannerr h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.bannerr p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.bannerr-btn {
  background-color: #0b0c41;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.bannerr-btn:hover {
  background-color: #1a1c5e;
}

/* ==========================
   PAGE HEADING
   ========================== */
.prods-h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 200px 20px 30px;
  padding: 0 20px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ==========================
   PRODUCT GRID - MINIMAL (NO CHANGES)
   ========================== */
.product-gridd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 20px 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ==========================
   GALLERY SECTION
   ========================== */
.dc-gallery {
  padding: 60px 60px;
  background: var(--light-bg);
  margin-top: 40px;
}

.dc-container {
  max-width: 1400px;
  margin: 0 auto;
}

.dc-section-title {
  text-align: center;
  margin-bottom: 45px;
}

.dc-section-title h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-top: 0;
  margin-top: 0;
}


.dc-gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.dc-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.dc-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.dc-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dc-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26, 54, 93, 0.1), rgba(26, 54, 93, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 25px;
  text-align: center;
}

.dc-gallery-caption {
  transform: translateY(30px);
  transition: transform 0.3s ease;
  width: 100%;
}

.dc-gallery-caption h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.dc-gallery-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0 0 15px;
  line-height: 1.5;
}

.dc-gallery-item:hover .dc-gallery-overlay {
  opacity: 1;
}

.dc-gallery-item:hover .dc-gallery-caption {
  transform: translateY(0);
}

.dc-gallery-item:hover img {
  transform: scale(1.1);
}

/* ==========================
   ANIMATIONS
   ========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   RESPONSIVE - 992px
   ========================== */
@media (max-width: 992px) {
  .prods-h2 {
    font-size: 1.9rem;
    margin: 35px 15px 25px;
  }

  .product-gridd {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 40px 40px;
    gap: 1.5rem;
  }

  .dc-gallery {
    padding: 50px 40px;
  }

  .dc-gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .dc-section-title h2 {
    font-size: 2rem;
  }
}

/* ==========================
   RESPONSIVE - 768px
   ========================== */
@media (max-width: 768px) {
  .bannerr {
    height: 50vh;
    margin-top: 60px;
  }

  .bannerr h1 {
    font-size: 2.2rem;
  }

  .bannerr p {
    font-size: 1rem;
  }

  .prods-h2 {
    font-size: 1.6rem;
    margin: 30px 15px 20px;
    padding: 0 15px;
  }

  .product-gridd {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px 20px 30px;
    gap: 1.2rem;
  }

  .dc-gallery {
    padding: 40px 20px;
  }

  .dc-gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .dc-section-title {
    margin-bottom: 30px;
  }

  .dc-section-title h2 {
    font-size: 1.6rem;
  }

  .dc-section-title p {
    font-size: 1rem;
  }

  .dc-gallery-caption h3 {
    font-size: 1.1rem;
  }

  .dc-gallery-caption p {
    font-size: 0.85rem;
    display: none;
  }

  .dc-gallery-overlay {
    padding: 15px;
  }
}

/* ==========================
   RESPONSIVE - 576px
   ========================== */
@media (max-width: 576px) {
  .bannerr {
    height: 40vh;
    min-height: 250px;
    margin-top: 60px;
  }

  .bannerr h1 {
    font-size: 1.8rem;
  }

  .bannerr p {
    font-size: 0.9rem;
  }

  .bannerr-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .prods-h2 {
    font-size: 1.4rem;
    margin: 25px 10px 15px;
    padding: 0 10px;
    line-height: 1.4;
  }

  .product-gridd {
    grid-template-columns: 1fr;
    padding: 15px 15px 30px;
    gap: 1rem;
  }

  .dc-gallery {
    padding: 30px 15px;
  }

  .dc-gallery-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .dc-gallery-item {
    aspect-ratio: 16/10;
  }

  .dc-section-title {
    margin-bottom: 25px;
  }

  .dc-section-title h2 {
    font-size: 1.3rem;
    padding: 0 10px;
  }

  .dc-section-title p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .dc-gallery-caption h3 {
    font-size: 1rem;
  }

  .dc-gallery-caption p {
    display: none;
  }

  .dc-gallery-overlay {
    padding: 12px;
    opacity: 1;
    background: linear-gradient(to bottom, transparent 40%, rgba(11, 12, 65, 0.85));
  }

  .dc-gallery-caption {
    transform: translateY(0);
  }
}

/* ==========================
   RESPONSIVE - 480px
   ========================== */
@media (max-width: 480px) {
  .bannerr h1 {
    font-size: 1.6rem;
  }

  .bannerr p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .prods-h2 {
    font-size: 1.25rem;
    margin: 20px 10px 15px;
  }

  .product-gridd {
    padding: 10px 10px 25px;
  }

  .dc-gallery {
    padding: 25px 10px;
  }

  .dc-section-title h2 {
    font-size: 1.2rem;
  }

  .dc-gallery-caption h3 {
    font-size: 0.95rem;
  }
}

/* ==========================
   TOUCH DEVICES
   ========================== */
@media (hover: none) and (pointer: coarse) {
  .dc-gallery-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, transparent 50%, rgba(11, 12, 65, 0.8));
  }

  .dc-gallery-caption {
    transform: translateY(0);
  }

  .dc-gallery-item:hover {
    transform: none;
  }
}


/* ==========================
   BLOCK SECTION - FEATURES
   ========================== */
.block {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 60px;
}

.block-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.block-text {
  flex: 1;
}

.block-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.block-text > p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.block-text > p strong {
  color: var(--primary-color);
}

.block-image {
  flex-shrink: 0;
}

.block-image img {
  max-width: 300px;
  height: auto;
}

.unique-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  margin-top: 10px;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}

.unique-badge small {
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: lowercase;
}

/* Features Grid - 2x2 with horizontal layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-box img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.feature-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================
   BLOCK SECTION - RESPONSIVE
   ========================== */
@media (max-width: 992px) {
  .block {
    padding: 0 40px;
    margin: 50px auto;
  }

  .block-top {
    gap: 30px;
  }

  .block-text h3 {
    font-size: 1.6rem;
  }

  .block-image img {
    max-width: 150px;
  }

  .features-grid {
    gap: 25px 40px;
  }
}

@media (max-width: 768px) {
  .block {
    padding: 0 20px;
    margin: 40px auto;
  }

  .block-top {
    flex-direction: column;
    gap: 25px;
  }

  .block-image {
    order: -1;
    align-self: center;
  }

  .block-image img {
    max-width: 140px;
  }

  .block-text h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  .block-text > p {
    font-size: 0.95rem;
  }

  .unique-badge {
    display: block;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-box img {
    width: 45px;
    height: 45px;
  }

  .feature-content h4 {
    font-size: 1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .block {
    padding: 0 15px;
    margin: 30px auto;
  }

  .block-text h3 {
    font-size: 1.25rem;
  }

  .block-image img {
    max-width: 200px;
  }

  .feature-box {
    gap: 15px;
  }

  .feature-box img {
    width: 40px;
    height: 40px;
  }

  .unique-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}


/* ==========================
   SECTION 2 & 3 - LONG-TERM SAVINGS & PRODUCTIVITY
   ========================== */
.sub-heading {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
}

.feature-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 25px 0;
}

.feature-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #a8a8a8 0%, #7a7a7a 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.3;
  min-width: 85px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.feature-badge::after {
  content: "✓";
  position: absolute;
  top: -8px;
  right: -8px;
  background: #4CAF50;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-badge-item > p {
  flex: 1;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.feature-badge-item .feature-text {
  flex: 1;
}

.feature-badge-item .feature-text h4 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.feature-badge-item .feature-text p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Productivity Section - New Row Layout */
.productivity-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.productivity-illustration {
  flex-shrink: 0;
  width: 200px;
  text-align: center;
}

.productivity-illustration img {
  max-width: 100%;
  height: auto;
}

.productivity-illustration .image-caption {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-top: 10px;
  font-weight: 500;
}

.productivity-badge {
  flex-shrink: 0;
  width: 90px;
}

.productivity-badge img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.productivity-text {
  flex: 1;
}

.productivity-text h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.productivity-text p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.block > h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.footnote {
  color: var(--text-light);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 10px;
}

/* ==========================
   RESPONSIVE - SECTIONS 2 & 3
   ========================== */
@media (max-width: 992px) {
  .productivity-row {
    gap: 25px;
  }

  .productivity-illustration {
    width: 180px;
  }

  .productivity-badge {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .productivity-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .productivity-illustration {
    width: 150px;
  }

  .productivity-badge {
    width: 70px;
  }

  .productivity-text {
    flex-basis: 100%;
  }

  .feature-badge-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .feature-badge {
    min-width: 75px;
    padding: 12px 15px;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .productivity-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .productivity-illustration {
    width: 180px;
  }

  .productivity-badge {
    width: 80px;
  }

  .productivity-text {
    text-align: left;
  }

  .feature-badge {
    font-size: 0.7rem;
    padding: 10px 12px;
    min-width: 65px;
  }

  .feature-badge::after {
    width: 16px;
    height: 16px;
    font-size: 10px;
    top: -6px;
    right: -6px;
  }

  .sub-heading {
    font-size: 1rem;
  }
}
