/* 
===============================================
   Shorty's Shrimp - Core Styles
=============================================== 
*/

:root {
  /* Color Palette */
  --bg-dark: #070b10;
  --bg-darker: #040609;
  --bg-panel: #0f1620;
  --primary-orange: #ff541c;
  --primary-orange-hover: #e04513;
  --text-white: #ffffff;
  --text-gray: #aab2bd;
  --text-dark: #1e242d;
  --border-color: #2a3544;

  /* Typography */
  --font-heading: "Bebas Neue", sans-serif;
  --font-cursive: "Behavioline Regular", "Behavioline", "Pacifico", cursive;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container-width: 1400px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* ================== Typography ================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: 1px;
}

.section-subtitle {
  font-family: var(--font-cursive);
  color: var(--primary-orange);

  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.section-title {
  font-size: 5.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ================== Layout & Utilities ================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================== Buttons ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--text-white);
  border: 1px solid var(--primary-orange);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  border-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 84, 28, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

/* ================== Header ================== */
.header {
  background-color: rgb(7 11 16 / 0%);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: none;
  min-height: 96px;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 110px;
  width: 210px;
  margin-bottom: -4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 2px;
}

.logo-subtitle {
  font-family: var(--font-body);
  color: var(--primary-orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-subtitle hr {
  flex: 1;
  border: none;
  height: 1px;
  background-color: var(--primary-orange);
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-orange);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  padding: 1rem 0;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ================== Hero Section ================== */
.hero {
  position: relative;
  padding: 7rem 0 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  display: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-wave {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: screen;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-graphic {
  flex: 1;
  position: relative;
  left: clamp(-4rem, -4vw, -1rem);
  min-width: 0;
}

.hero-character {
  width: min(54vw, 760px);
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.speech-bubble {
  position: absolute;
  background: white;
  color: var(--text-dark);
  font-family: var(--font-heading);
  padding: 1.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bubble-left {
  top: 10%;
  left: -10%;
}

.bubble-right {
  top: 5%;
  right: 5%;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 0;
  height: 0;
  border-style: solid;
}

.bubble-left::after {
  right: 20px;
  border-width: 20px 20px 0 0;
  border-color: white transparent transparent transparent;
}

.bubble-right::after {
  left: 20px;
  border-width: 20px 0 0 20px;
  border-color: white transparent transparent transparent;
}

.hero-content {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.hero-subtitle {
  margin-bottom: 1rem;
  color: var(--primary-orange);
  font-family: var(--font-cursive);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: none;
}

.hero-title {
  font-family:
    "Alternate Gothic Std No2", "Alternate Gothic Pro No2", "Bebas Neue",
    sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-white);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.features-products-bg {
  background:
    radial-gradient(ellipse at 4% 4%, rgba(255, 84, 28, 0.18), transparent 28rem),
    radial-gradient(ellipse at 96% 18%, rgba(19, 86, 120, 0.22), transparent 34rem),
    linear-gradient(140deg, #070b10 0%, #09121a 42%, #071018 100%);
}

/* ================== Features Strip ================== */
.features-strip {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 2rem clamp(1.5rem, 5vw, 6rem) 0;
  background: transparent;
}

.features-container {
  max-width: 1400px;
  padding: 2.6rem 2rem;
  margin-top: -70px;
  background-color: rgb(4 6 9 / 72%);

  border: 1px solid rgba(255, 84, 28, 0.2);
  border-radius: 3px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.feature-item {
  flex: 1 1 190px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:first-child {
  padding-left: 0;
}

.feature-item:last-child {
  padding-right: 0;
  border-right: none;
}

.feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.2;
}

/* ================== Products Section ================== */
.products {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 0rem;
  background: transparent;
}

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

.products-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.products-title-area {
  flex: 0 0 270px;
}

.products-carousel {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
  overflow: visible;
  padding: 1rem 0;
  scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-control {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-orange);
  font-size: 2rem;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.carousel-control:hover {
  transform: scale(1.2);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(13, 31, 44, 0) 42%, rgba(3, 5, 8, 0.96) 100%),
    linear-gradient(160deg, rgba(18, 35, 48, 0.96), rgba(6, 14, 22, 0.98));
  border: 1px solid rgba(143, 178, 203, 0.32);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  min-width: 0;
  transition: all var(--transition-normal);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 84, 28, 0.16), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.42), transparent 58%);
  opacity: 0.65;
}

.product-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 84, 28, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-image-container {
  position: relative;
  height: 180px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
}

.product-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
  z-index: 1;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-bag {
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 60px;
  z-index: 2;
}

.product-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 0 rgba(255, 84, 28, 0.22);
}

.product-sizes {
  position: relative;
  z-index: 1;
  font-size: 1.0rem;
  margin-bottom: 1.7rem;
  color: #c8d7e7;
}

.product-card .btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(255, 84, 28, 0.18);
}

/* ================== Contact & About Section ================== */
.contact-about {
  background: transparent;
  padding: 0rem 0;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.contact-form-wrapper {
  background-color: var(--bg-panel);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: none;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
}

.contact-form .form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-white);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.form-note {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
  color: var(--text-gray);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.about-content {
  flex: 1;
}

.about-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.stat-item p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-white);
  line-height: 1.2;
}

.about-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.94) 0%, rgba(4, 6, 9, 0.72) 34%, rgba(4, 6, 9, 0.4) 62%, rgba(4, 6, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 6, 9, 0.2), rgba(4, 6, 9, 0.72));
  pointer-events: none;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

/* ================== Footer ================== */
.footer {
  background:
    radial-gradient(ellipse at 14% 18%, rgba(255, 84, 28, 0.16), transparent 26rem),
    radial-gradient(ellipse at 82% 12%, rgba(19, 86, 120, 0.18), transparent 30rem),
    linear-gradient(180deg, #05080c 0%, #020304 100%);
  padding-top: 2.5rem;
  border-top: none;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  opacity: 0.18;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(150px, 190px) minmax(190px, 230px) minmax(270px, 320px);
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2.25rem, 5vw, 5.5rem);
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-top: -0.75rem;
}

.footer-logo .logo {
  display: inline-flex;
}

.footer-logo-img {
  width: 440px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.footer h4 {
  font-size: 26px;
  margin-bottom: 1.1rem;
  color: var(--text-white);
}

.footer-links,
.footer-contact {
  min-width: 0;
  text-align: left;
}

.footer-links ul,
.footer-contact ul {
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links ul li {
  margin-bottom: 0.65rem;
}

.footer-links ul li a {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.footer-links ul li a:hover {
  color: var(--primary-orange);
}

.footer-contact ul li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  color: var(--text-gray);
  font-size: 1.0rem;
}

.footer-contact ul li i {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  text-align: center;
}

.footer-contact span {
  display: block;
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.bottom-container p {
  margin-bottom: 0;
}

.footer-bottom-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-gray);
}

.footer-bottom-social span {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-bottom-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(170, 178, 189, 0.32);
  border-radius: 50%;
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.footer-bottom-social a:hover {
  color: var(--text-white);
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

/* ================== Responsive ================== */
@media (max-width: 1366px) {
  .header-container {
    min-height: 84px;
    padding: 0 clamp(1.25rem, 3vw, 3rem);
  }

  .logo-img {
    width: 170px;
    height: auto;
  }

  .nav-list {
    gap: 2rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-character {
    width: min(50vw, 660px);
    max-height: calc(100vh - 7rem);
  }

  .hero-title {
    font-size: clamp(3rem, 4.3vw, 4.7rem);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .products-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .products-title-area {
    flex: none;
    margin-bottom: 2rem;
  }

  .products-carousel {
    width: 100%;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 3rem;
  }

  .contact-container {
    justify-content: center;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .section-subtitle {
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(3.15rem, 14vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
  }

  .section-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header .btn-primary {
    display: none;
  }

  .header-container {
    min-height: 76px;
    padding: 0 1.1rem;
  }

  .logo-img {
    width: 142px;
  }

  .hero {
    padding-top: 8.25rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .hero::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(4, 6, 9, 0.56) 0%, rgba(4, 6, 9, 0.18) 32%, rgba(4, 6, 9, 0.62) 100%),
      radial-gradient(ellipse at 50% 24%, rgba(4, 6, 9, 0.48), transparent 42%);
  }

  .hero-container {
    gap: 1.5rem;
  }

  .hero-graphic {
    left: 0;
  }

  .hero-character {
    width: min(82vw, 360px);
    max-height: none;
  }

  .hero-title {
    font-size: clamp(3rem, 13vw, 3.5rem);
    white-space: normal;
  }

  .features-container {
    margin-top: -36px;
    padding: 1.75rem 1.25rem;
    justify-content: center;
    gap: 1.25rem;
  }

  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child {
    flex: 1 1 220px;
    padding: 0;
    border-right: none;
  }

  .products-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .products {
    padding-top: 2.25rem;
  }

  .products-header {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .products-title-area {
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .product-card {
    padding: 0.85rem;
  }

  .contact-container {
    margin-bottom: 3.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.25rem;
    border-radius: 6px;
  }

  .contact-desc,
  .about-desc {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .contact-form-wrapper .section-subtitle {
    margin-bottom: 0.55rem;
  }

  .contact-form .form-group {
    margin-bottom: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 52px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .about-container {
    gap: 2rem;
    min-height: auto;
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .about-content {
    max-width: 420px;
  }

  .about-content .section-subtitle {
    margin-bottom: 0.85rem;
  }

  .about-content .section-title {
    margin-bottom: 1.35rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .about-image {
    display: block;
    height: 100%;
  }

  .about-image::after {
    background:
      linear-gradient(180deg, rgba(4, 6, 9, 0.86) 0%, rgba(4, 6, 9, 0.66) 42%, rgba(4, 6, 9, 0.9) 100%),
      radial-gradient(ellipse at 50% 18%, rgba(7, 33, 46, 0.52), transparent 62%);
  }

  .about-bg-img {
    opacity: 0.42;
    object-position: center;
  }

  .footer-container {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }

  .footer-logo,
  .footer-logo .logo {
    justify-content: center;
  }

  .footer-logo-img {
    width: min(280px, 82vw);
  }

  .footer h4 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links ul li {
    margin-bottom: 0.45rem;
  }

  .footer-links ul li a,
  .footer-contact ul li {
    font-size: 1rem;
  }

  .footer-contact ul li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
  }

  .bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 0.9rem;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 420px) {
  .section-title {
    font-size: clamp(2.75rem, 13vw, 3.45rem);
    padding-top: 6px;
  }

  .contact-form-wrapper {
    padding: 1.65rem 1rem;
  }

  .btn {
    min-height: 44px;
    padding: 0.7rem 1.25rem;
    font-size: 0.82rem;
  }

  .footer {
    padding-top: 2rem;
  }
}
