@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --color-accent: #ea2127;
  --font-heading: "Lato", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-lato: "Lato", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

.hero-siding {
  position: relative;
  height: 500px;
  width: 100%;
  padding: 0 20px;
  color: white;
}

/* Red Anniversary Badge */
.badge-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.anniversary-badge {
  background-color: var(--color-accent);
  padding: 10px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #f7a6a9;
}

.anniversary-badge span {
  font-weight: 900;
  color: #fff;
}

.anniversary-badge span.dash {
  font-weight: 700;
  color: #f7a6a9;
}

/* Text Content */
.hero-content {
  max-width: 1170px;
  margin: 0 auto;
  transform: translateY(50%);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 23.5px;
}

/* Trust Bar Styling */
.trust-bar {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #f4f4f4;
  border-radius: 50px;
  padding: 13px 30px;
  gap: 30px;
}

.trust-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;

  display: flex;
  gap: 10px;
  align-items: center;
}

.check {
  color: #ffb400;
  /* Gold/Yellow checkmark */
  margin-right: 10px;
  font-weight: bold;
}

/* Red Line Decor */
.red-accent-line {
  width: 200px;
  height: 4px;
  background-color: var(--color-accent);
  margin-top: 40px;
}

/* Breadcrumb Styling */
.breadcrumb-container {
  border-bottom: 1px solid #e4e4e4;
  padding: 10.5px 20px;
}

.breadcrumb-container .breadcrumb {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #a0a0a0;
  max-width: 1170px;
  background-color: none !important;
  margin: 0 auto;
}
.breadcrumb-container .breadcrumb a{
	color: #A0A0A0 !important;
}
.breadcrumb-container .breadcrumb a:is(:hover, :focus) {
  border-bottom: 0 !important;
}


.breadcrumb-container .breadcrumb span {
  color: #272727;
}

/* --- New Info Section --- */
.info-section {
  padding: 100px 20px;
  background-color: #fff;
}

.info-container {
  max-width: 1600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 92px;
}

.section-header h2 {
  max-width: 763px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #5d5d5d;
}

.section-header h2.red-text {
  color: var(--color-accent);
  font-family: Lato;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  max-width: 100%;
  margin-top: 20.85px;
}

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

/* Text Content Styling */
.text-content {
  background-color: #f0f4f8;
  /* Light blue-grey background */
  padding: 60px 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #5d5d5d;
  margin-bottom: 20px;
}

.text-content p strong {
  font-weight: 700;
  color: #292927;
}

/* Image Side Styling */
.image-container {
  position: relative;
  line-height: 0;
  /* Prevents tiny gaps below image */
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 83.65%),
    url("images/house-fall.png");
  background-repeat: no-repeat;
  width: 100%;
  max-width: 784px;
  height: 554px;
  background-size: cover;
  background-position: center;
}

/* Feature Overlay Styling */
.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 71px 106px;
  gap: 15px 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Lato";
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
}

.feature-item img {
  width: 32px !important;
  /* Adjust based on your icon sizes */
  height: auto !important;
}

/* --- Product Grid Section --- */
.product-grid-section {
  padding: 100px 20px 0;
  background-color: #f0f4f8;
}

.productcontainer {
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 2px solid #DDDDDD;
  padding-bottom: 100px;
}


.grid-header {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 41px;
}

.header-left h2 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  max-width: 513px;
}

.header-left h2 span {
  color: #333;
}

.header-right .lead {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 17px;
}

.header-right p:not(.lead) {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #5d5d5d;
}

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

.product-card h4 {
  font-family: Lato;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 22px 0 8px;
  color: #292927;
}

.product-card p {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #292927;
}

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

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

/* --- Siding Products Section --- */
.siding-products {
  padding: 100px 10px;
  background-color: #f0f4f8;
}

.sliding-products-container {
  max-width: 1900px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 40px;
}

.products-header p {
  font-family: "Lato";
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  color: #5d5d5d;
  margin-bottom: 25px;
}

.products-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  line-height: 100%;
  text-transform: uppercase;
  color: #272727;
}

/* Grid Layout */
.product-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-item {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent dark overlay */
  padding: 40px 49px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: white;
  transition: background 0.3s ease;
}

.product-overlay h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 19.76px;
  font-weight: 700;
  line-height: 100%;
	text-transform: capitalize !important;
}

.product-overlay p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: auto;
}

.product-overlay .learn-more {
  color: #feca57;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
	width: fit-content;
}
.product-overlay .learn-more:is(:hover, :focus){
	text-decoration: underline;
	text-underline-offset: 4px;
	color: #feca57;
	border-bottom: none !important;
}

/* Footer & Button */
.products-footer {
  text-align: center;
  margin-top: 50px;
}

.products-footer p {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 400;
  line-height: 100%;
  color: #292927;
  margin-bottom: 31px;
}

.btn-expert {
  background-color: var(--color-accent);
  color: white;
  border: none;
  padding: 13px 20px 15px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-expert:is(:hover, :focus) {
  transform: scale(1.05);
  background-color: #c91a1f;
	color: white !important;
	border-bottom: none;
}

/* Logos */
.logos {
  padding: 100px 20px;
}

.logos-heading {
  text-align: center;
  margin-bottom: 50px;
}

.logos-heading h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-accent);
}

.logos-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.logo-item {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos-container .logo-item a:is(:hover, :focus) {
	border-bottom: 0 !important
}

.logo-item img {
  height: auto;
	width: auto !important;
  object-fit: contain;
  margin: 0 auto;
}

/* --- Driwall Rainscreen Section --- */
.rainscreen-section {
  padding: 0 20px;

  background-color: #fff;
}

.rainscreen-container {
  max-width: 1880px;
  margin: 0 auto;
}

.rainscreen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.rainscreen-image {
  line-height: 0;
}

.rainscreen-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.rainscreen-content {
  background-color: #f1f5f9;
  /* Light blue-grey matching your previous section */
  padding: 60px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rainscreen-content h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: #002672;
  line-height: 100%;
  margin-bottom: 15px;
}

.rainscreen-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #292927;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.rainscreen-content .red-text {
  color: var(--color-accent);
}

.rainscreen-content p {
  font-family: var(--font-body);
  max-width: 660px;
  font-size: 16px;
  color: #454545;
  margin-bottom: 35px;
}

/* Yellow Button Styling */
.btn-find-out {
  display: inline-block;
  background-color: #feca57;
	border: 1px solid #feca57 !important;
  color: #454545;
  padding: 13px 19px 15px;
  text-decoration: none;
  line-height: 100%;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-find-out:hover {
  background-color: #fff;
	color: #454545 !important;
}
.btn-find-out:focus{
	color: #454545 !important;
}
.rainscreen-content .btn-find-out{
	border-bottom: 1px solid #feca57 !important;
}
.rainscreen-content .btn-find-out:is(:hover, :focus){
	border-bottom: 1px solid #feca57 !important;
	color: #454545 !important;
}

.delivery-section {
  width: 100%;
  height: 100%;
  padding: 0 0 100px;
}

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

.delivery-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.delivery-content h2 {
  margin-top: 15px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-accent);
}

.delivery-content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #454545;
  margin: 18px 0 22px;
}

.delivery-content .btn-find-out:hover{
	border-bottom: 1px solid #feca57 !important;
}

/* --- Help / Contact Section --- */
.help-section {
  padding: 60px 20px;
  background-color: #f0f4f8;
  /* Light grey-blue background */
  text-align: center;
}

.help-section h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002672;
  margin-bottom: 19px;
}

.help-section .call-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;

  margin-bottom: 25px;
}

.help-section .call-text a {
  color: #f26522;
  /* Vibrant orange for the phone number */
  text-decoration: none;
  font-weight: 700;
}

.email-box p {
  font-family: var(--font-body);
  font-size: 18px;
  color: #454545;
  margin-bottom: 12px;
}

.help-section .email-link {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  color: #f26522;
  /* Matching orange for email */
  text-decoration: none;
  font-weight: 600;
}

.help-section a:is(:hover, :focus) {
  text-decoration: underline;
	border-bottom: none !important;
}

/* --- Responsive Design (Laptops & Below) --- */

@media (max-width: 1650px) {
  .products-container {
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 20px;
  }

  .logos-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 1400px) {
  .hero-content,
  .breadcrumb-container .breadcrumb,
  .info-container,
  .productcontainer,
  .sliding-products-container,
  .rainscreen-container {
    max-width: 100%;
  }

  .logos-container {
    max-width: 100%;
  }
}

@media (max-width: 1250px) {
  /* Hero Section */
  .hero-content h1 {
    font-size: 50px;
  }

  .subtitle {
    font-size: 22px;
  }

  .trust-bar {
    padding: 12px 25px;
    gap: 20px;
  }

  .trust-item {
    font-size: 20px;
  }

  .trust-item svg {
    width: 22px;
    height: auto;
  }

  /* Info Section */
  .section-header h2 {
    font-size: 42px;
  }

  .section-header h2.red-text {
    font-size: 32px;
  }

  .text-content {
    padding: 50px 60px;
  }

  .text-content p {
    font-size: 22px;
  }

  .feature-overlay {
    padding: 50px 60px;
  }

  .feature-item {
    font-size: 22px;
  }

  .feature-item img {
    width: 28px !important;
  }

  /* Product Grid */
  .grid-header {
    gap: 25px;
  }

  .header-left h2 {
    font-size: 36px;
  }

  .header-right .lead {
    font-size: 28px;
  }

  .header-right p:not(.lead) {
    font-size: 22px;
  }

  .img-wrapper {
    width: 100%;
    height: 280px;
  }

  .product-card h4 {
    font-size: 26px;
  }

  .product-card p {
    font-size: 17px;
  }

  /* Siding Products */
  .products-header p {
    font-size: 32px;
  }

  .products-header h2 {
    font-size: 45px;
  }

  .product-grid-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-overlay {
    padding: 30px 35px;
  }

  .product-overlay h3 {
    font-size: 32px;
  }

  .product-overlay p {
    font-size: 16px;
	  line-height: 100%;
  }

  /* Logos */
  .logos-heading h2 {
    font-size: 36px;
  }

  .logo-item {
    width: 100%;
    height: 120px;
  }

  /* Rainscreen */
	
	  .rainscreen-grid {
    grid-template-columns: 1fr;
  }
	
  .rainscreen-content h2 {
    font-size: 36px;
  }

  .rainscreen-content h3 {
    font-size: 26px;
  }

  .rainscreen-content p {
    font-size: 15px;
  }

  .products-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  /* Hero Section */
  .hero-siding {
    height: auto;
    min-height: 400px;
    padding: 80px 20px 60px;
    background-position: center center !important;
  }

  .hero-content {
    transform: none;
    margin-top: 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .subtitle {
    font-size: 20px;
  }

  .trust-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    gap: 12px;
    padding: 20px;
  }

  .trust-item {
    font-size: 18px;
    width: 100%;
    justify-content: flex-start;
  }

  .trust-item svg {
    width: 20px;
  }

  .red-accent-line {
    margin: 30px auto 0;
  }

  /* Info Section */
  .info-section {
    padding: 80px 20px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header h2.red-text {
    font-size: 28px;
    margin-top: 15px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .text-content {
    padding: 40px 30px;
  }

  .text-content p {
    font-size: 20px;
    line-height: 140%;
  }

  .image-container {
    height: 450px;
    max-width: 100%;
  }

  .feature-overlay {
    padding: 40px 30px;
    grid-template-columns: 1fr 1fr;
    gap: 20px 15px;
  }

  .feature-item {
    font-size: 18px;
  }

  /* Product Grid */
  .product-grid-section {
    padding: 80px 20px 0;
  }
  .productcontainer{
  	padding-bottom: 80px;
  }

  .grid-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 35px;
  }

  .header-left h2 {
    font-size: 34px;
  }

  .header-right .lead {
    font-size: 26px;
  }

  .header-right p:not(.lead) {
    font-size: 20px;
  }

  .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .img-wrapper {
    height: 240px;
  }

  /* Siding Products */
  .siding-products {
    padding: 80px 20px;
  }

  .products-header {
    margin-bottom: 35px;
  }

  .products-header p {
    font-size: 30px;
  }

  .products-header h2 {
    font-size: 42px;
  }

  .product-grid-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-item {
    height: 280px;
  }

  .product-overlay {
    padding: 25px;
  }

  .product-overlay h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .product-overlay p {
    font-size: 16px;
  }

  .products-footer {
    margin-top: 40px;
  }

  .products-footer p {
    font-size: 26px;
  }

  /* Logos */
  .logos {
    padding: 80px 20px;
  }

  .logos-heading {
    margin-bottom: 40px;
  }

  .logos-heading h2 {
    font-size: 34px;
  }

  .logos-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .logo-item {
    width: 100%;
    height: 110px;
  }

  /* Rainscreen */

  .rainscreen-image {
    height: 350px;
    overflow: hidden;
  }

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

  .rainscreen-content {
    padding: 50px 30px;
  }

  .rainscreen-content h2 {
    font-size: 34px;
  }

  .rainscreen-content h3 {
    font-size: 24px;
  }

  .rainscreen-content p {
    font-size: 16px;
    line-height: 140%;
  }

  /* Delivery */
  .delivery-section {
    padding: 0 0 80px;
  }

  .delivery-content h2 {
    font-size: 36px;
  }

  .delivery-content p {
    font-size: 15px;
  }

  /* Help */
  .help-section {
    padding: 50px 20px;
  }

  .help-section h2 {
    font-size: 36px;
  }

  .help-section .call-text {
    font-size: 22px;
    line-height: 140%;
  }

  .email-box p {
    font-size: 17px;
  }

  .help-section .email-link {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-siding {
    min-height: 350px;
    padding: 70px 15px 50px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
    line-height: 130%;
  }

  .trust-bar {
    max-width: 350px;
    padding: 16px;
    gap: 8px;
    border-radius: 8px;
  }

  .trust-item {
    font-size: 15px;
  }

  .trust-item svg {
    width: 18px;
  }

  /* Info Section */
  .info-section {
    padding: 60px 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 30px;
    padding: 0 10px;
  }

  .section-header h2.red-text {
    font-size: 24px;
  }

  .text-content {
    padding: 35px 25px;
  }

  .text-content p {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 15px;
  }

  .image-container {
    height: 380px;
  }

  .feature-overlay {
    grid-template-columns: 1fr;
    padding: 30px 25px;
    gap: 15px;
  }

  .feature-item {
    font-size: 17px;
  }

  .feature-item img {
    width: 26px !important;
  }

  /* Product Grid */
  .product-grid-section {
    padding: 60px 15px 0;
  }
  
  .productcontainer{
  	padding-bottom: 60px;
  }

  .grid-header {
    margin-bottom: 30px;
  }

  .header-left h2 {
    font-size: 30px;
  }

  .header-right .lead {
    font-size: 24px;
  }

  .header-right p:not(.lead) {
    font-size: 18px;
  }

  .products-container {
    gap: 30px;
  }

  .img-wrapper {
    height: auto;
    aspect-ratio: 4/3;
  }

  .product-card h4 {
    font-size: 24px;
    margin: 18px 0 6px;
  }

  .product-card p {
    font-size: 16px;
  }

  /* Siding Products */
  .siding-products {
    padding: 60px 15px;
  }

  .products-header {
    margin-bottom: 30px;
  }

  .products-header p {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .products-header h2 {
    font-size: 36px;
  }

  .product-grid-main {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-item {
    height: 300px;
  }

  .product-overlay {
    padding: 30px 25px;
  }

  .product-overlay h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .product-overlay p {
    font-size: 15px;
    line-height: 130%;
  }

  .learn-more {
    font-size: 15px;
  }

  .products-footer {
    margin-top: 35px;
  }

  .products-footer p {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .btn-expert {
    font-size: 17px;
    padding: 12px 18px 14px;
  }

  /* Logos */
  .logos {
    padding: 60px 15px;
  }

  .logos-heading {
    margin-bottom: 35px;
  }

  .logos-heading h2 {
    font-size: 30px;
  }

  .logos-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-item {
    width: 100%;
    height: 100px;
  }

  /* Rainscreen */
  .rainscreen-section {
    padding: 0 15px;
  }

  .rainscreen-image {
    height: 280px;
  }

  .rainscreen-content {
    padding: 40px 25px;
  }

  .rainscreen-content h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .rainscreen-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .rainscreen-content p {
    font-size: 15px;
    line-height: 150%;
    margin-bottom: 28px;
  }

  .btn-find-out {
    font-size: 17px;
    padding: 12px 18px 14px;
  }

  /* Delivery */
  .delivery-section {
    padding: 0 0 60px;
  }

  .delivery-content h2 {
    font-size: 32px;
    margin-top: 12px;
  }

  .delivery-content p {
    font-size: 15px;
    margin: 15px 0 20px;
  }

  /* Help */
  .help-section {
    padding: 45px 15px;
  }

  .help-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .help-section .call-text {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 20px;
  }

  .email-box p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .help-section .email-link {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  /* Hero */
  .hero-siding {
    min-height: 320px;
    padding: 60px 15px 40px;
  }

  .anniversary-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 14px;
    line-height: 140%;
  }

  .trust-bar {
    max-width: 300px;
    padding: 14px;
    gap: 6px;
  }

  .trust-item {
    font-size: 13px;
  }

  .trust-item svg {
    width: 16px;
  }

  .red-accent-line {
    width: 150px;
    height: 3px;
    margin-top: 25px;
  }

  /* Info Section */
  .info-section {
    padding: 50px 15px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header h2.red-text {
    font-size: 20px;
    margin-top: 12px;
  }

  .text-content {
    padding: 30px 20px;
  }

  .text-content p {
    font-size: 16px;
    line-height: 160%;
  }

  .image-container {
    height: 320px;
  }

  .feature-overlay {
    padding: 25px 20px;
    gap: 12px;
  }

  .feature-item {
    font-size: 15px;
  }

  .feature-item img {
    width: 24px !important;
  }

  /* Product Grid */
  .product-grid-section {
    padding: 50px 15px 0;
  }
  
  .productcontainer{
  	padding-bottom: 50px;
  }

  .grid-header {
    margin-bottom: 25px;
  }

  .header-left h2 {
    font-size: 26px;
  }

  .header-right .lead {
    font-size: 20px;
  }

  .header-right p:not(.lead) {
    font-size: 16px;
  }

  .products-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .img-wrapper {
    aspect-ratio: 16/10;
  }

  .product-card h4 {
    font-size: 22px;
    margin: 15px 0 5px;
  }

  .product-card p {
    font-size: 15px;
  }

  /* Siding Products */
  .siding-products {
    padding: 50px 15px;
  }

  .products-header {
    margin-bottom: 25px;
  }

  .products-header p {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .products-header h2 {
    font-size: 32px;
  }

  .product-grid-main {
    gap: 12px;
  }

  .product-item {
    height: 260px;
  }

  .product-overlay {
    padding: 25px 20px;
  }

  .product-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .product-overlay p {
    font-size: 14px;
    line-height: 140%;
  }

  .learn-more {
    font-size: 14px;
  }

  .products-footer {
    margin-top: 30px;
  }

  .products-footer p {
    font-size: 19px;
    margin-bottom: 22px;
  }

  .btn-expert {
    font-size: 16px;
    padding: 11px 16px 13px;
  }

  /* Logos */
  .logos {
    padding: 50px 15px;
  }

  .logos-heading {
    margin-bottom: 30px;
  }

  .logos-heading h2 {
    font-size: 26px;
  }

  .logos-container {
    gap: 10px;
  }

  .logo-item {
    height: auto;
    padding: 10px 20px;
  }

  .logo-item img {
    width: 90px !important;
  }

  /* Rainscreen */
  .rainscreen-image {
    height: 240px;
  }

  .rainscreen-content {
    padding: 35px 20px;
  }

  .rainscreen-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .rainscreen-content h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .rainscreen-content p {
    font-size: 14px;
    line-height: 160%;
    margin-bottom: 25px;
  }

  .btn-find-out {
    font-size: 16px;
    padding: 11px 16px 13px;
  }

  /* Delivery */
  .delivery-section {
    padding: 0 0 50px;
  }

  .delivery-content h2 {
    font-size: 28px;
    margin-top: 10px;
  }

  .delivery-content p {
    font-size: 14px;
    margin: 12px 0 18px;
  }

  /* Help */
  .help-section {
    padding: 40px 15px;
  }

  .help-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .help-section .call-text {
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 18px;
  }

  .email-box p {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .help-section .email-link {
    font-size: 16px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 15px;
  }

  .trust-item {
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header h2.red-text {
    font-size: 18px;
  }

  .product-item {
    height: 220px;
  }

  .product-overlay h3 {
    font-size: 22px;
  }

  .logo-item {
    height: 80px;
  }
}