/* ================= DESIGN SYSTEM ================= */

:root {
  --green: #3f6b45;
  --olive: #00af47;
  --text-dark: #1f2937;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #ffffff;
}

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

/* ================= CONTAINER ================= */

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 24px;
  margin: 0 auto;
}

/* ================= HEADER ================= */

.header {
  background: #003440;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.top-header {
  padding: 8px 0;
}
.top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  width: auto;
}

/* Desktop Menu */

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
  padding: 20px 10px;
}

.menu a:hover {
  background: #05af47;
}

.btn-primary {
  background: var(--green);
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 1201;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.hamburger span:nth-child(1){ top:0; }
.hamburger span:nth-child(2){ top:8px; }
.hamburger span:nth-child(3){ top:16px; }

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

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

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.28);
  color: white;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 16px;
  max-width: 520px;
}

/* ================= TRUST BAR ================= */

.trust-bar {
  background: var(--olive);
  padding: 16px 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  color: white;
  font-size: 11px;
  font-weight: 500;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.4);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

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

.section {
  padding: 40px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 600;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 26px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  margin-bottom: 25px;
  color: #003440;
}


.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.2);
}

.certification {
  padding: 60px 0;
  background: #f3efe6;
}
/* ================= CERTIFICATION SECTION ================= */

.cirt-grid {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* vertical alignment */
  gap: 5%;                    /* no space between items */
}


.certification p {
      text-align: center;
    margin-bottom: 20px;
}
/* Image styling */
.cirt-item img {
  height: 120px;
  display: block;
}


/* ================= PRODUCT GRID ================= */
.product-bg {
  position: relative;
  background-color: #fff;  /* warm organic */
}

.product-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/texture-bg.png");
  background-repeat: repeat;
  background-size: 260px;
  opacity: 0.05;
  pointer-events: none;
}


.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.product-card {
  background: #ffffff;
  padding-bottom: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 4px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-card img {
  margin-bottom: 24px;
  border-radius: 8px 8px 0 0;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card span {
      font-size: 13px;
    color: var(--green);
    display: block;
    border-top: .5px solid var(--green);
    width: 75%;
    margin: auto;
    padding-top: 4px;
}
.product-card span .arrow {
  font-weight: bolder;
    font-size: 16px;
    letter-spacing: -5px;
    font-style: normal;
    vertical-align: middle;
}


/* ================= WHY US SECTION ================= */

.why-us {
  background-image: url("../images/3.jpg");
  padding: 100px 0;
  position: relative;
}
.why-us .section-title {
  color: #05af47;
}
.why-us .section-title::before, .why-us .section-title::after {
  background: rgba(244, 244, 244, 0.3)
}

.impact .trust-item {
  display: block;
  text-align: center;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.impact .trust-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.impact .trust-item:not(:last-child)::after {
  display: none;
}

.impact .trust-item h3{
  font-size: 38px;
  margin-bottom: 4px;
  line-height: 1;
  color: #69e3a0;
}

.impact .trust-item span {
  display: block;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.2px;
  opacity: 0.92;
}

.impact .trust-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer{
  background:#fff;
  color:#003441;
  padding:70px 0;
}
.footer p{
  font-size: 13px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.footer-grid img {
  width: 35%;
  margin-bottom: 16px;
}
.footer .call-us {
  display: flex;
    align-items: center;
    gap: 4px;
}
.footer .call-us {
  margin-bottom: 8px;
}
.footer .footer-grid h3 {
  margin: 10px 0 8px;
}

.footer a{
      display: block;
    color: #003441;
    margin: 12px 0;
    text-decoration: none;
    font-size: 13px;
    font-weight: normal;
}

.social-icons a{
  display: flex;
  gap: 10px;
  align-items: center;
  color: #003441;
  opacity: 1;
  visibility: visible;
}

.social-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #003441;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 0;          /* important */
}

.footer .social-circle{
  color: #fff;
  padding: 4px;
}

.footer .social-circle svg {
  width: 14px;
  height: 14px;
  display: block;
}

.footer .social-icons span:last-child {
  color: #003441;
  font-size: 13px;
  line-height: 1.4;
}

.footer-grid > div {
  min-width: 0;
}

.footer .stay-connected {
  display: block;
}

.footer .stay-connected .social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .stay-connected .social-icons {
  display: block;
  margin: 8px 0;
}

.footer .stay-connected .social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #003441;
  text-decoration: none;
}

.footer .stay-connected .social-circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  background: #003441;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer .stay-connected .social-circle svg {
  width: 15px;
  height: 15px;
  display: block;
}

.footer .stay-connected .social-label {
  display: inline-block;
  color: #003441;
  font-size: 13px;
  line-height: 1.4;
}



/* Card */
.why-card {
  
      padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(244, 244, 244, 0.3);
    transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* Icon */
.why-card .icon {
  margin-bottom: 20px;
}

.why-card .icon img{
  width: 20%;
  margin: auto;
}

/* Title */
.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #05af47;
}

/* Description */
.why-card p {
  font-size: 14px;
  color: #999;
}

/* ================= RESPONSIVE ================= */

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

@media (max-width: 768px) {
.header {
    padding: 16px 0;

}
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-card h3 {
    font-size: 14px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-title span::before,
  .why-title span::after {
    display: none;
  }

  .why-us {
    padding: 70px 0;
  }

}


/* ================= HOW ITS MADE ================= */

.how-made {
  padding: 120px 0;
  background: #f3efe6; /* beige tone */
  text-align: center;
}


.how-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.how-step {
  text-align: center;
}

.circle-bg {
  width: 220px;
  height: 220px;
  background: #e9e2d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.circle-bg img {
  width: 160px;
}

.how-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
}

/* Arrow between steps */
.how-made .arrow {
  width: 60px;
  height: 2px;
  position: relative;
}

.how-made .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-140%);
  width: 100%;
  height: 20px;
  background-image: url("../images/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Description */
.how-desc {
  max-width: 700px;
  margin: 60px auto 0;
  font-size: 16px;
  color: #555;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .how-flow {
    flex-direction: column;
    gap: 50px;
  }

  .how-made .arrow {
    width: 2px;
    height: 40px;
  }

  .how-made .arrow::after {
    right: -4px;
    top: 34px;
    transform: rotate(135deg);
  }

  .circle-bg {
    width: 180px;
    height: 180px;
  }

  .circle-bg img {
    width: 130px;
  }

}


/* how to made */
.how-made {
  padding: 100px 0;
  background: #f3efe6;
}

.process {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: center;
}

.step {
  flex: 1;
}

.circle {
  width: 60px;
  height: 60px;
  background: #00af47;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 600;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  /* Show Hamburger */
  .hamburger {
    display: block;
  }

  /* Hide desktop menu */
  .menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #003440;
  flex-direction: column;
  align-items: flex-start;
  padding-top:85px;
  gap: 0;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  z-index: 1000;

}

.menu a {
  color: #fff;
  display: block;
  width: 100%;;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.menu-item{width: 100%;}
  .menu.active {
    right: 0;
  }

  /* Overlay */
 .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

  /* Trust stack */
  .trust-grid {
    flex-direction: column;
    gap: 16px;
  }

  .trust-item::after {
    display: none;
  }

  .trust-bar.premium-eco .trust-grid {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 0;
    max-width: 560px;
    margin: 0 auto;
  }

  .trust-bar.premium-eco .trust-item {
    width: 50%;
    justify-content: center;
    padding: 0 10px;
    text-align: center;
  }

  .trust-bar.premium-eco .trust-item::after {
    display: none;
  }

  .trust-bar.premium-eco .trust-item:nth-child(odd)::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.4);
  }

}


.trust-bar {
  position: relative;
  padding: 14px 0;
  background:
    linear-gradient(rgba(0,110,50,0.9), rgba(0,80,40,0.9)),
    url("../images/leaf.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.menu-item {
  position: relative;
}

.submenu-toggle {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.submenu-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 0px);
  z-index: 9;
  left: 0;
  background: rgba(0, 52, 64, 0.97);
  min-width: 220px;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.sub-menu a {
  padding: 10px 12px;
  color: #fff !important;
  font-size: 14px;
  border-bottom: 0;
  border-radius: 8px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.sub-menu a:hover {
  background: rgba(0, 175, 71, 0.24);
  padding-left: 16px;
}

.menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-item:hover > .submenu-toggle::after {
  transform: rotate(225deg) translateY(1px);
}

@media (max-width: 768px) {
  .submenu-toggle {
    justify-content: space-between;
  }

  .sub-menu {
    position: static;
    min-width: 100%;
    padding: 0 0 0 12px;
    background: rgba(0, 0, 0, 0.16);
    border: 0;
    border-radius: 0;
    gap: 2px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .sub-menu a {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    box-shadow: none;
  }

  .menu-item.open .sub-menu {
    max-height: 220px;
  }

  .menu-item.open > .submenu-toggle::after {
    transform: rotate(225deg) translateY(1px);
  }
}
.menu-item:hover > a,
.menu a.active {
  background: #00af47;
  color: #fff !important;
}

/* ================= MOBILE POLISH ================= */
html,
body {
  overflow-x: hidden;
}

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

@media (max-width: 768px) {
  .container,
  .nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-header .container {
    flex-wrap: wrap;
    gap: 8px 14px;
    text-align: center;
  }

  .logo img {
    height: 52px;
  }

  .contact-item {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
    gap: 4px;
  }

  .menu {
    width: 82vw;
    max-width: 300px;
  }

  .menu a {
    font-size: 15px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .submenu-toggle::after {
    margin-right: 14px;
  }

  .hero-content .container {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 34px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 14px;
    max-width: 100%;
  }

  .section,
  .why-us,
  .how-made,
  .certification,
  .footer {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-title {
    font-size: 28px;
    gap: 10px;
    margin-bottom: 22px;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .product-grid {
    gap: 10px;
  }

  .product-card {
    border-radius: 6px;
    padding-bottom: 12px;
  }

  .product-card h3 {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 6px;
    padding: 0 6px;
  }

  .product-card span {
    width: 90%;
    font-size: 10px;
  }

  .product-card span .arrow {
    font-size: 12px;
    letter-spacing: -3px;
  }

  .impact .trust-item {
    padding: 0 18px;
  }

  .impact .trust-item h3 {
    font-size: 28px;
  }

  .how-desc {
    margin-top: 24px;
    font-size: 14px;
  }

  .cirt-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .cirt-item {
    flex: 0 0 calc(33.333% - 11px);
    display: flex;
    justify-content: center;
  }

  .cirt-item img {
    width: auto;
    max-width: 100%;
    height: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid img {
    width: 120px;
  }

  .footer .call-us {
    align-items: flex-start;
  }

  .footer p,
  .footer a {
    font-size: 12px;
    line-height: 1.5;
  }

  .social-icons {
    margin: 6px 0;
  }

  .social-icons a {
    gap: 8px;
  }

  .footer .social-icons span:last-child {
    font-size: 12px;
  }

  .footer .stay-connected .social-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }

  .product-card h3 {
    font-size: 11px;
  }

  .product-card span {
    font-size: 9px;
  }

  .trust-item {
    font-size: 10px;
    gap: 6px;
  }

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

  .trust-bar.premium-eco .trust-item {
    padding: 0 6px;
  }

  .cirt-item img {
    height: 60px;
  }
}

/* ================= ENHANCED UI ================= */
:root {
  --brand-deep: #003440;
  --brand-green: #00af47;
  --brand-warm: #f5f0e7;
  --shadow-soft: 0 10px 24px rgba(0, 52, 64, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  background:
    radial-gradient(1200px 420px at 10% -10%, rgba(0, 175, 71, 0.08), transparent 60%),
    radial-gradient(1200px 420px at 90% -10%, rgba(0, 52, 64, 0.08), transparent 60%),
    #ffffff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1200;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}


.menu a:hover,
.menu a.active {
  transform: translateY(-1px);
}


.slide img {
  width: 100%;
}

.hero-content {
  background: linear-gradient(90deg, rgba(0, 20, 24, 0.56), rgba(0, 20, 24, 0.3));
}

.hero-content h1 {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.section,
.why-us,
.how-made,
.certification,
.footer {
  padding-top: clamp(46px, 7vw, 100px);
  padding-bottom: clamp(46px, 7vw, 100px);
}

.product-bg {
  padding-top: clamp(24px, 7vw, 0px);
}

.section-title {
  letter-spacing: 0.4px;
}

.product-card,
.why-card {
  border: 1px solid rgba(0, 52, 64, 0.08);
  box-shadow: var(--shadow-soft);
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 52, 64, 0.18);
}
.product-card a {
  text-decoration: none;
  color: unset;
}
.product-card a:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 52, 64, 0.18);
}

.how-made {
  position: relative;
  overflow: hidden;
}

.how-made::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 52, 64, 0.03), rgba(0, 175, 71, 0.04));
  pointer-events: none;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58));
}

.why-us > .container {
  position: relative;
  z-index: 1;
}

.why-card {
  backdrop-filter: blur(1px);
  background: rgba(255, 255, 255, 0.06);
}

.why-card p {
  color: #e6f5ee;
}

.impact.trust-bar {
  background: #003440;
}

.footer {
  border-top: 1px solid rgba(0, 52, 64, 0.12);
}

.footer a:hover {
  color: var(--brand-green);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .container,
  .nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content h1 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .why-grid {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .hero,
  .slide img {
    height: clamp(320px, 70vw, 550px)
  }

  .slide img {
    object-fit: cover;
  }

  .top-header {
    padding: 6px 0;
  }

  .top-header .container {
    gap: 6px 12px;
  }

  .logo img {
    height: 48px;
  }

  .hero-content {
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 20, 24, 0.52), rgba(0, 20, 24, 0.4));
  }

  .hero-content h1 {
    font-size: clamp(26px, 8vw, 36px);
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 30px);
    margin-bottom: 18px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    border-radius: 10px;
    padding-bottom: 10px;
  }

  .product-card h3 {
    font-size: 12px;
    margin-bottom: 4px;
    min-height: 30px;
  }

  .product-card span {
    font-size: 10px;
    width: 92%;
  }

  .how-made {
    padding-top: clamp(28px, 8vw, 42px);
    padding-bottom: clamp(28px, 8vw, 42px);
  }

  .how-flow {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: clamp(4px, 1.8vw, 10px);
    overflow: visible;
    padding: 0;
  }

  .how-step {
    flex: 1 1 0;
    min-width: 0;
  }

  .how-made .arrow {
    flex: 0 0 clamp(16px, 5vw, 28px);
    width: auto;
    height: 24px;
    position: relative;
  }

  .how-made .arrow::after {
    content: "";
        position: absolute;
        left: -28%;
        right: 0;
        top: 0;
        background-image: url(../images/arrow.png);
        transform: none;
        width: 6vw;
  }

  .circle-bg {
    width: clamp(64px, 21vw, 98px);
    height: clamp(64px, 21vw, 98px);
    margin-bottom: clamp(4px, 1.5vw, 8px);
  }

  .circle-bg img {
    width: clamp(46px, 14.5vw, 70px);
  }

  .how-step h3 {
    font-size: clamp(10px, 2.9vw, 13px);
    line-height: 1.2;
    white-space: normal;
  }

  .how-desc {
    margin-top: clamp(clamp(8px, 4vw, 40px));
    font-size: clamp(12px, 3.1vw, 14px);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .impact .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .impact .trust-item {
    width: auto;
    padding: 12px 6px;
  }

  .impact .trust-item:not(:last-child)::after {
    display: none;
  }

  .impact .trust-item h3 {
    font-size: clamp(18px, 5vw, 24px);
  }

  .cirt-grid {
    gap: 14px;
  }

  .cirt-item img {
    height: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid img {
    width: 110px;
  }

  .footer p,
  .footer a {
    font-size: 12px;
  }

  .footer .stay-connected .social-icons {
    margin: 6px 0;
  }
}

@media (max-width: 420px) {
  .container,
  .nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-grid {
    gap: 8px;
  }

  .product-card h3 {
    font-size: 11px;
  }

  .product-card span {
    font-size: 9px;
  }

  .how-flow {
    gap: 2px;
  }

  .how-made .arrow {
    flex-basis: 12px;
    height: 9px;
  }

  .circle-bg {
    width: 60px;
    height: 60px;
  }

  .circle-bg img {
    width: 42px;
  }

  .how-step h3 {
    font-size: 10px;
  }

  .trust-bar.premium-eco .trust-item {
    width: 50%;
  }

  .trust-bar.premium-eco .trust-item span {
    font-size: 9px;
  }
}

/* How-Made hard mobile override */
@media (max-width: 768px) {
  .how-made .how-flow {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: clamp(4px, 1.6vw, 8px) !important;
  }

  .how-made .how-step {
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }

  .how-made .arrow {
    width: auto !important;
  }

  .how-made .circle-bg {
    width: 25vw;
        height: 25vw;
        margin-bottom: 16px !important;
  }

  .how-made .circle-bg img {
    width: 24vw
  }

  .how-made .how-step h3 {
    font-size: clamp(10px, 2.8vw, 14px) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-weight: bold;
  }
}

/* Premium Eco (original layout + content-matched icons) */
.trust-bar.premium-eco .eco-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

/* Products Page */
.products-page {
  background: linear-gradient(180deg, #f7f9f5 0%, #ffffff 40%);
}

.products-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.products-sidebar {
  position: sticky;
  top: 130px;
  background: #ffffff;
  border: 1px solid rgba(0, 52, 64, 0.1);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 52, 64, 0.08);
}

.products-sidebar h3 {
  margin-bottom: 12px;
  color: #003440;
  font-size: 16px;
}

.products-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.products-nav-btn {
  border: 1px solid rgba(0, 52, 64, 0.16);
  background: #fff;
  color: #003440;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.products-nav-btn:hover {
  border-color: #00af47;
  transform: translateX(2px);
}

.products-nav-btn.active {
  background: #003440;
  border-color: #003440;
  color: #fff;
}

.products-main {
  min-width: 0;
}

.products-mobile-controls {
  display: none;
}

.products-hero-card {
  background: linear-gradient(120deg, #003440, #046d43);
  color: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
}

.products-kicker {
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.85;
}

.products-hero-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.2;
  margin: 6px 0;
}

.products-hero-card p {
  font-size: 14px;
  opacity: 0.94;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.catalog-card {
  background: #fff;
  border: 1px solid rgba(0, 52, 64, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 52, 64, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 52, 64, 0.14);
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.catalog-card-body {
  padding: 12px;
}

.catalog-card-body h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #003440;
}

.catalog-card-body p {
  font-size: 13px;
  color: #56646a;
}

@media (max-width: 980px) {
  .products-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .products-sidebar {
    display: none;
  }

  .products-mobile-controls {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
  }

  .products-mobile-controls label,
  .products-mobile-controls select {
    display: none;
  }

  .products-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .products-chip {
    border: 1px solid rgba(0, 52, 64, 0.18);
    background: #fff;
    color: #003440;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    cursor: pointer;
  }

  .products-chip.active {
    background: #003440;
    border-color: #003440;
    color: #fff;
  }

  .products-hero-card {
    padding: 16px 14px;
  }

  .products-hero-card h1 {
    font-size: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page */
.about-hero {
  background:
    linear-gradient(rgba(0, 32, 40, 0.68), rgba(0, 32, 40, 0.72)),
    url("../images/3.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 0 80px;
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0.86;
  margin-bottom: 8px;
}

.about-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 14px;
}

.about-hero p {
  max-width: 680px;
  font-size: 16px;
}

.about-story {
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.about-story-copy .section-title {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.about-story-copy .section-title::before,
.about-story-copy .section-title::after {
  display: none;
}

.about-story-copy p {
  font-size: 15px;
  color: #4e5d63;
  margin-bottom: 10px;
}

.about-story-media img {
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 52, 64, 0.18);
}

.about-values {
  background: #f4f8f5;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-value-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 14px;
  border: 1px solid rgba(0, 52, 64, 0.1);
  box-shadow: 0 8px 18px rgba(0, 52, 64, 0.06);
}

.about-value-card h3 {
  color: #003440;
  font-size: 17px;
  margin-bottom: 5px;
}

.about-value-card p {
  color: #5d6a70;
  font-size: 13px;
}

.about-process {
  background: linear-gradient(180deg, #ffffff, #f9f5ec);
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-process-item {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 52, 64, 0.1);
  border-radius: 12px;
  padding: 18px 14px;
  box-shadow: 0 8px 18px rgba(0, 52, 64, 0.06);
}

.about-process-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #e9e2d6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.about-process-icon img {
  width: 48px;
}

.about-process-item h3 {
  font-size: 16px;
  color: #003440;
  margin-bottom: 4px;
}

.about-process-item p {
  font-size: 13px;
  color: #5d6a70;
}

.about-impact {
  background: #003440;
  color: #fff;
}

.about-impact .section-title {
  color: #fff;
}

.about-impact .section-title::before,
.about-impact .section-title::after {
  background: rgba(255, 255, 255, 0.22);
}

.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-impact-item {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.06);
}

.about-impact-item h3 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 4px;
  color: #69e3a0;
}

.about-impact-item p {
  font-size: 12px;
  opacity: 0.92;
}

.about-cta {
  background: #fff;
}

.about-cta-card {
  background: linear-gradient(135deg, #003440, #00af47);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 30px 18px;
}

.about-cta-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-bottom: 8px;
}

.about-cta-card p {
  max-width: 640px;
  margin: 0 auto 16px;
}

.about-cta-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #003440;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 980px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 58px 0 52px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 14px;
  }

  .about-values-grid,
  .about-impact-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-card {
    padding: 22px 14px;
  }

  .about-cta-card h2 {
    font-size: 27px;
  }
}

/* Why Compare Section */
.why-us.why-compare-section {
  position: relative;
  background:
    radial-gradient(540px 300px at 12% 90%, rgba(0, 175, 71, 0.34), transparent 65%),
    radial-gradient(520px 290px at 88% 92%, rgba(236, 53, 61, 0.2), transparent 66%),
    linear-gradient(160deg, #043b49 0%, #012d37 100%);
  overflow: hidden;
}

.why-us.why-compare-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 22, 28, 0.2), rgba(2, 22, 28, 0.42));
  pointer-events: none;
}

.why-compare-head {
  text-align: center;
  margin-bottom: 30px;
}

.why-compare-head h2 {
  margin: 0;
  color: #f4fbff;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
  font-family: "Baloo 2", "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

.why-compare-head p {
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(227, 245, 249, 0.9);
  font-size: 15px;
}

.why-compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 18px 40px rgba(0, 20, 24, 0.32);
}

/* Classic panel: clean look without inner boxes */
.why-compare-grid {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 8px 0 2px;
}

.why-compare-title {
  padding: 14px 12px;
  border-radius: 12px;
  text-align: center;
  font-family: "Baloo 2", "Poppins", sans-serif;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.why-compare-title.eco {
  
  text-align: right;
}
.why-compare-title.eco span{ 
color: #14d55d;
}

.why-compare-title.plastic {
  text-align: left;
}
.why-compare-title.plastic span{
  color: #ff4a51;
}
.why-compare-title {
  background: transparent;
  border: 0;
  padding-bottom: 8px;
}

.why-compare-vs {
  align-self: center;
  justify-self: center;
  width: 58px;
  height: 58px;
  position: relative;
  border-radius: 50%;
  border: 0;
  color: #14d55d;
  display: flex;
  place-items: center;
  font-family: "Baloo 2", "Poppins", sans-serif;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.16);
  align-items: center;
  justify-content: center;
}

.why-compare-vs::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(90deg, #14d55d 0 50%, #ff4a51 50% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.why-compare-vs span {
  color: #ff4a51;
}

.why-compare-mid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-compare-mid span {
  width: 2px;
  height: 100%;
  min-height: 72px;
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(210, 235, 241, 0.55), rgba(210, 235, 241, 0.08));
}

.why-compare-cell {
  display: flex;
  align-items: center;

  gap: 12px;
  padding: 14px 12px;
  border-radius: 12px;
  min-height: 72px;
}

.why-compare-cell p {
  margin: 0;
  color: #f1f8fb;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: 0.2px;
}

.why-compare-cell strong {
  font-weight: 700;
}


.why-compare-cell.eco strong {
  color: #43ea89;
}

.why-compare-cell {
  background: transparent;
  border: 0;
  padding: 10px 0;
}

.why-compare-cell.plastic strong {
  color: #ff6f77;
}

.compare-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
}

.compare-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare-icon.ok {
  color: #39de7f;
  background: rgba(57, 222, 127, 0.16);
}

.compare-icon.bad {
  color: #ff6670;
  background: rgba(255, 102, 112, 0.15);
}

/* Classic panel icons like Icon Rail (filled green/red circles) */
.compare-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.62);
}

.compare-icon.ok {
  color: #fff;
  background: #09b34e;
}

.compare-icon.bad {
  color: #fff;
  background: #ea3b45;
}

.compare-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

@media (max-width: 992px) {
  .why-compare-grid {
    grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 12px;
  }

  .why-compare-vs {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .why-compare-cell p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .why-us.why-compare-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .why-compare-head {
    margin-bottom: 20px;
  }

  .why-compare-head h2 {
    font-size: clamp(22px, 7vw, 32px);
  }

  .why-compare-head p {
    font-size: 13px;
  }

  .why-compare-grid {
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
    gap: 8px;
    border-radius: 14px;
    padding: 10px 8px;
  }

  .why-compare-title {
    font-size: 13px;
    padding: 10px 4px;
  }

  .why-compare-vs {
    width: 28px;
    height: 28px;
    font-size: 13px;
    border-width: 1px;
  }

  .why-compare-mid span {
    min-height: 58px;
    opacity: 0.8;
  }

  .why-compare-cell {
    gap: 6px;
    padding: 9px 6px;
    border-radius: 10px;
    min-height: 58px;
  }

  .compare-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-width: 1.6px;
  }

  .compare-icon svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.2;
  }

  .why-compare-cell p {
    font-size: 11.5px;
    line-height: 1.3;
  }

  .compare-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-width: 1px;
  }

  .compare-icon svg {
    width: 11px;
    height: 11px;
    stroke-width: 2.3;
  }
}

/* Contact Page */
.contact-hero {
  padding: 62px 0 56px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(0, 175, 71, 0.25), transparent 70%),
    radial-gradient(700px 300px at 85% 0%, rgba(255, 93, 102, 0.16), transparent 70%),
    linear-gradient(160deg, #003440 0%, #012b35 100%);
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.contact-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5.2vw, 54px);
  line-height: 1.15;
}

.contact-hero p {
  max-width: 760px;
  margin: 12px auto 0;
  font-size: 15px;
  opacity: 0.94;
}

.contact-page {
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 48%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.contact-card {
  border-radius: 14px;
  border: 1px solid rgba(0, 52, 64, 0.12);
  background: #fff;
  padding: 20px 18px;
  box-shadow: 0 10px 24px rgba(0, 52, 64, 0.08);
}

.contact-card h3 {
  margin: 0 0 8px;
  color: #003440;
  font-size: 20px;
}

.contact-card p {
  margin: 0 0 6px;
  color: #3d4f56;
  font-size: 14px;
  line-height: 1.55;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #00af47;
}

.contact-card a:hover {
  color: #003440;
}

.contact-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: #5d7077;
}

.contact-map-wrap {
  background: #fff;
  border: 1px solid rgba(0, 52, 64, 0.12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0, 52, 64, 0.07);
}

.contact-map-wrap .section-title {
  margin-bottom: 12px;
}

.contact-map-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 52, 64, 0.14);
}

.contact-map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -92%);
  width: 40px;
  height: 40px;
  color: #e63946;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.contact-map-pin svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: #ffffff;
  stroke-width: 1.2;
}

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

@media (max-width: 768px) {
  .contact-hero {
    padding: 44px 0 40px;
  }

  .contact-hero p {
    font-size: 14px;
  }

  .contact-card {
    padding: 16px 14px;
  }

  .contact-card h3 {
    font-size: 18px;
  }

  .contact-card p {
    font-size: 13px;
  }

  .contact-map-wrap {
    padding: 10px;
  }

  .contact-map-frame iframe {
    height: 300px;
  }
}
