@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "PP Neue Montreal";
  src: url("./pp-neue-montreal-cufonfonts/ppneuemontreal-medium.otf")
      format("opentype"),
    url("./pp-neue-montreal-cufonfonts/ppneuemontreal-bold.otf")
      format("opentype"),
    url("./pp-neue-montreal-cufonfonts/ppneuemontreal-light.otf")
      format("opentype"),
    url("./pp-neue-montreal-cufonfonts/ppneuemontreal-regular.otf")
      format("opentype");
}

@font-face {
  font-family: "PP Editorial Old";
  src: url("./pp-editorial-old/ppeditorialold-regular.otf") format("opentype");
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  width: 100%;
  font-family: "PP Neue Montreal";
  font-family: "Montserrat", sans-serif;
}

main {
  width: 100%;
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
}

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

h1 {
  text-align: center;
  font-size: clamp(3rem, 5vw, 8rem);
  font-weight: 500;
  line-height: 1;
}

h1 span {
  font-family: "PP Editorial Old";
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 7rem);
  -webkit-font-smoothing: antialiased;
  padding: 0 0.7rem 0 0;
  color: #ea611b;
}

a,
p {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-size: clamp(0.8rem, 0.6vw, 3rem);
  font-weight: 500;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.container {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1em 3.5em 1em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  will-change: transform;
  z-index: 99;
}

nav > div {
  flex: 1;
}

.logo1 a {
  position: relative;
  text-transform: capitalize;
  font-size: clamp(1.2rem, 1vw, 3.9rem);
  font-weight: 500;
  z-index: 100;
  color: #000000;
  transition: color 2s ease;
}
.logo-white a {
  color: #ffffff;
}

.nav-link {
  display: flex;
  width: 50%;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.nav-link a {
  font-size: clamp(0.9rem, 0.6vw, 3rem);
  text-align: center;
  font-weight: 500;
}

.menu-btn {
  display: flex;
  justify-content: flex-end;
}

.burger {
  position: relative;
  top: 50%;
  left: 50%;
  height: 20px;
  width: 40px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 100;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: #000000;
  left: 5%;
  transition: all 0.3s ease, background-color 2s ease;
}
.burger::before {
  top: 10px;
}
.burger::after {
  bottom: 10px;
}
.burger.active::before {
  transform: translateY(3px) rotate(45deg);
}
.burger.active::after {
  transform: translateY(-7px) rotate(-45deg);
}

.burger.active::before,
.burger.active::after {
  background-color: #ffffff;
}

.overlay-2 {
  position: absolute;
  top: -100svh;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: #141412;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  z-index: 99;
}

.overlay-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  z-index: 99;
}

.menu-item {
  position: relative;
  display: flex;
  cursor: pointer;
  background-color: #141412;
}

.menu-item a {
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 6rem;
  transition: letter-spacing 0.3s;
  z-index: 100;
}
.menu-item p:hover {
  letter-spacing: 0.4em;
}

.header {
  width: 100%;
  height: 100%;
  padding-top: 25svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}

.cta {
  position: absolute;
  left: 50%;
  bottom: 3.5em;
  transform: translateX(-50%);
  width: 50%;
  height: 60px;
  padding: 0.3rem;
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
  border-radius: 4rem;
  will-change: transform;
  cursor: pointer;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 1;
  margin-top: -6.5rem;
}

.cta-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-label p {
  color: #000;
}

.cta-icon {
  top: 0;
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #303030;
  border-radius: 60px;
  will-change: transform;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none;
}

.block {
  width: 100%;
  height: 100%;
  background-color: #141412;
  pointer-events: none;
}

.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0.25em;
}

#word1 {
  position: relative;
  left: -0.5rem;
  padding-right: 0.25rem;
}

#word-1 h1 span {
  color: white;
}

#word-2 h1 {
  color: #ea611b;
}

.spinner-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 1.4px solid #fff;
  border-radius: 50%;
  border-top-color: rgba(255, 255, 255, 0.125);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-image {
  width: 600px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.nav {
  transform: translateY(-120%);
}

.cta {
  transform: translateX(-50%) scale(0);
}

.cta-icon {
  transform: scale(0);
}

.line,
.cta-label,
.word {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.line h1 {
  padding-left: 0.7rem;
  padding: 0.3rem;
}

.counter {
  opacity: 0;
}

.line h1,
.line p,
.cta-label p {
  position: relative;
  transform: translateY(120%);
  will-change: transform;
}

#word-1 h1 {
  transform: translateY(-120%);
}
#word-2 h1 {
  transform: translateY(120%);
}

.line p {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: #141412;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: none;
}

.header > .line {
  position: relative;
  z-index: 5;
  overflow: visible;
}

.block {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-img {
  transform: scale(1.5);
  will-change: transform;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 2.4rem;
  }
  h1 span {
    font-size: 2.5rem;
    padding: 0 0.3rem 0 0;
  }
  .burger {
    left: 94%;
  }
  .nav-link {
    display: none;
  }

  .menu-item a {
    font-size: 3rem;
    line-height: 0.8;
  }

  .cta {
    width: 90%;
  }
  .loading-image {
    width: 350px;
    left: 51%;
  }
}

@media (max-width: 900px) {
  .hero-copy {
    margin-top: -4rem;
  }
  .burger {
    left: 85%;
  }
  .line p {
    font-size: 0.85rem;
  }
  .cta-label p {
    font-size: 0.78rem;
  }
}

@media (max-width: 600px) {
  .cta-label p {
    font-size: 0.68rem;
  }
}

/*-------------------------------------- adding the marquee------------------------------------------------------- */

.marquee-heading {
  position: absolute;
  top: 7%;
  z-index: 2;
  width: 100%;
  text-align: center;

}
.marquee-heading h2 {
  font-size: 2.8rem;
  font-weight: 200;
  color: #000000;
  letter-spacing: -1px;
  font-family: "PP Neue Montreal";
  text-transform: capitalize;
}

.marquee {
  position: relative;
  padding-top: 2rem;
  width: 90%;
  margin-left: 5%;
  min-height: 20svh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 6rem;
  flex-shrink: 0;
  animation: marquee 25s linear infinite;
  padding: 0 3rem;
}

.markq {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: grayscale(1);
  aspect-ratio: 3/4;
}

.marquee::before {
  content: "";
  height: 20svh;
  width: 10%;
  position: absolute;
  background: linear-gradient(to right, #fff, transparent);
  bottom: 0;
  left: -1px;
  z-index: 1;
}

.marquee::after {
  content: "";
  height: 20svh;
  width: 10%;
  position: absolute;
  background: linear-gradient(to left, #fff, transparent);
  bottom: 0;
  right: -1px;
  z-index: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (min-width: 900px) {
  .markq:hover {
    cursor: pointer;
    filter: grayscale(0);
  }

  .marquee:hover .marquee-content {
    animation-play-state: paused;
  }
}

@media (max-width: 900px) {
  .marquee-heading {
    top: 10%;
  }
  .marquee-heading h2 {
    font-size: 1.5rem;
  }

  .marquee {
    padding-top: 1.5rem;
  }

  .markq {
    width: 80px;
    filter: grayscale(0);
  }
  .marquee-content {
    gap: 2rem;
    padding: 0 1rem;
  }
}
/*--------------------------adding product-------------------------*/

.product-container {
  max-width: 105rem;
  margin-top: 2rem;
}

.product-title {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.titleh1 span {
  display: inline-block;
  position: relative;
  text-align: center;
  font-weight: 700;
  letter-spacing: -6px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  color: rgb(0, 0, 0);
}

.card-wrapper {
  margin: 0 60px 35px;
  padding: 0px 15px 10px;
  overflow: hidden;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-link {
  color: #000000;
  border-radius: 10px;
  box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.08);
}

.card-list .card-item .card-link {
  user-select: none;
  display: block;
  background-color: #ffffff;
  padding: 1rem;
  text-decoration: none;
}

.card-list .card-link .card-img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.card-list .card-link .badge {
  color: rgb(2, 2, 2);
  font-size: 1.3rem;
  padding: 8px 0px;
  margin: 16px 0 18px;
  text-align: left;
  font-weight: 600;
  text-align: center;
}

.card-list .card-link .card-title {
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
  color: #000000;
}

button {
  padding: 1rem;
  width: 100%;
  border-radius: 50px;
  border: none;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 300;
}

.card-wrapper .swiper-pagination {
  color: #000;
}

.card-wrapper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #000000;
  opacity: 0.5;
  margin: 0 5px;
  border-radius: 50%;
}

.card-wrapper .swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  color: #000;
  transform: scale(0.7);
}

.title-fraction-mobile {
  text-align: center;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 15px;
  font-family: "Gilroy", sans-serif;
  display: none;
}

@media (min-width: 1440px) {
  .product-container {
    max-width: 130rem;
  }
  .titleh1 span {
    letter-spacing: -13px;
  }
}

@media (max-width: 768px) {
  .title-fraction-mobile {
    display: block;
  }

  .title-fraction-mobile .current {
    font-weight: 600;
    font-size: 17px;
    color: #000;
  }

  .title-fraction-mobile .total {
    color: #777;
  }
}

@media (max-width: 768px) {
  .titleh1 span {
    font-size: 2.4rem;
    padding: 0.2rem;
    letter-spacing: -9px;
  }

  .card-wrapper {
    margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button {
    display: none;
  }

  .card-list .card-item .card-link {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
  }
  .card-wrapper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 600px) {
  .titleh1 {
    font-size: 2.5rem;
  }
}

/* adding scrolling animation in website..................................................................... */

.frames-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.frame-image {
  height: 100%;
  width: 0%;
  object-fit: cover;
  object-position: top center;
}

.page4 {
  height: 100vh;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.frame-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.frame-text p {
  font-size: 1.2rem;
  text-transform: none;
  font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .frame-image {
    height: 80%;
  }
  .frame-text h2 {
    font-size: 1.8rem;
  }

  .frame-text p {
    font-size: 1rem;
  }
}

/* adding page5  ------------------------------------------------------------------------------*/

.page5 {
  margin-top: 2rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: #eeeeee;
  overflow-x: hidden;
  border-top-left-radius: 5%;
  border-top-right-radius: 5%;
}

.page5-container {
  max-width: 105rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Flute Section Styles */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  padding-top: 3rem;
}

.section-description {
  font-size: 1.25rem;
  color: #000000;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.5;
  text-transform: capitalize;
}

/* Flute Grid */
.flute-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.flute-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  overflow: visible;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.flute-card:hover {
  transform: scale(1.02);
  border-color: #d1d5db;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.flute-card.selected {
  transform: scale(1.05);
  border-color: #fbbf24;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.flute-header {
  padding: 1rem;
  text-align: center;
  border-radius: 0.75rem 0.75rem 0 0;
}

.flute-header.amber {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.flute-header.orange {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
}
.flute-header.yellow {
  background: linear-gradient(135deg, #fef3c7, #fde047);
}
.flute-header.emerald {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.flute-header.blue {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
}

.flute-type {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
}

.flute-thickness {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.wave-container {
  padding: 1.5rem;
  background: #f9fafb;
}

.wave-visualization {
  position: relative;
  height: 5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}

.wave-svg {
  width: 100%;
  height: 100%;
}

.flute-content {
  padding: 1.5rem 1.5rem 1rem;
}

.flute-description {
  color: #374151;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.content-section {
  margin-bottom: 0.75rem;
}

.content-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
}

.content-list {
  list-style: none;
}

.content-item {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.content-item::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background: #fbbf24;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.strengths-item::before {
  background: #10b981;
}

.expand-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.expand-indicator span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  transition: all 0.2s;
}

.flute-card.selected .expand-indicator {
  background: #fef3c7;
}

.flute-card.selected .expand-indicator span {
  color: #d97706;
  transform: rotate(45deg);
}

.flute-details {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  margin-top: 0.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  max-width: 100%;
  width: 100%;
}

.flute-details.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.details-section {
  margin-bottom: 1rem;
}

.details-section:last-child {
  margin-bottom: 0;
}

.details-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.tag.application {
  background: #f3f4f6;
  color: #374151;
}

.tag.strength {
  background: #d1fae5;
  color: #065f46;
}

/* Comparison Chart */
.comparison-chart {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  width: 100%;
}

.chart-header {
  background: linear-gradient(135deg, #f9fafb, white);
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.chart-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.chart-description {
  color: #6b7280;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

.table-header {
  background: #f9fafb;
}

.table-header th {
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

.table-header th:first-child {
  text-align: left;
}

.table-header th:not(:first-child) {
  text-align: center;
  min-width: 120px;
}

.flute-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  color: #374151;
  font-weight: 600;
}

.table-row {
  border-bottom: 1px solid #f3f4f6;
}

.table-row:nth-child(even) {
  background: #f9fafb;
}

.table-cell {
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.table-cell:first-child {
  font-weight: 500;
  color: #374151;
}

.rating-cell {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.rating-icon {
  width: 1rem;
  height: 1rem;
}

.rating-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
}

.chart-legend {
  background: #f9fafb;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-out;
}

/* Particles animation */
.particle {
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  background: #fbbf24;
  border-radius: 50%;
  animation: pulse 2s infinite;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

/* Responsive Comparison Chart */
@media (max-width: 1024px) {
  .comparison-chart {
    margin: 0 15px 4rem;
    border-radius: 0.75rem;
  }

  .chart-header {
    padding: 1.25rem;
  }

  .chart-title {
    font-size: 1.25rem;
  }
}

/* Table Responsive Styles - Horizontal Scrolling */
@media (max-width: 768px) {
  .page5-container {
    max-width: 22rem;
  }
  .page5 {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .section-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #111827;
    padding-top: 1.5rem;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: thin;
  }

  /* Custom scrollbar for webkit browsers */
  .comparison-table::-webkit-scrollbar {
    height: 6px;
  }

  .comparison-table::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
  }

  .comparison-table::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
  }

  .comparison-table::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
  }

  /* Ensure column widths are maintained */
  .table-header th:not(:first-child) {
    min-width: 120px;
  }

  /* Make legend scroll horizontally as well */
  .chart-legend {
    display: flex;
    padding: 0.75rem;
    gap: 1rem;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .legend-item {
    flex-shrink: 0;
    font-size: 0.75rem;
  }

  /* Add scroll indicator */
  .comparison-chart::after {
    content: "← Scroll →";
    display: block;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
  }
}

/* adding page 6  ------------------------------------------------------------------------------*/

/* Premium Color Palette Enhancement */

:root {
  --premium-orange: #d97706;
  --premium-orange-dark: #b45309;
  --premium-orange-light: #f59e0b;
  --premium-gold: #c2a661;
  --premium-gold-light: #e9d8a6;
  --premium-black: #1a1a1a;
  --premium-gray-dark: #333333;
  --premium-gray-light: #e5e7eb;
  --premium-white: #ffffff;
  --premium-shadow: rgba(0, 0, 0, 0.08);
}

.custom-packaging-container {
  max-width: 80rem;
  padding: 0 20px;
}

/* Custom Packaging Section */
.custom-packaging {
  position: relative;
  padding: 4rem 0;
  /* background: linear-gradient(135deg, #f9fafb, #f3f4f6); */
    background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .custom1 {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 4rem;
  letter-spacing: -1px;
}

.section-header .packaging1 {
  font-weight: 600;
  color: #d97706;
  font-size: 4rem;
  letter-spacing: -1px;
  text-shadow: 1px 1px 3px rgba(217, 119, 6, 0.2);
}

.overview {
  font-size: 1.2rem;
  color: #333333;
  text-transform: capitalize;
  width: 80%;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  margin-bottom: 60px;
  text-align: center;
}

.features-section h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  list-style: none;
}

.feature-list li {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  position: relative;
  top: 0;
  border: 1px solid rgba(217, 119, 6, 0.05);
}

.feature-list li:hover {
  top: -5px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid #d97706;
}

.feature-list i {
  font-size: 2.5rem;
  color: #d97706;
  margin-bottom: 15px;
}

.feature-list h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.feature-list p {
  font-size: 1.15rem;
  line-height: 1.2;
  opacity: 0.9;
  color: #333333;
  text-transform: lowercase;
}

/* Design Tool Section */
.design-tool-section {
  margin-bottom: 60px;
  text-align: center;
}

.design-tool-h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.design-tool-p {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: capitalize;
}

.design-tool {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  border: 1px solid rgba(217, 119, 6, 0.1);
}

.design-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.option-group {
  text-align: left;
}

.option-group.logo-upload {
  grid-column: span 2;
}

.option-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.9rem;
}

.option-group select,
.option-group input[type="number"],
.option-group input[type="color"],
.option-group input[type="range"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  font-size: 1rem;
}

.option-group input[type="color"] {
  height: 43px;
  padding: 0;
}

.option-group input[type="range"] {
  padding: 0;
  height: 5px;
  margin-top: 15px;
  outline: none;
  -webkit-appearance: none;
  background: #d8d8d8;
}

.option-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #d97706;
  cursor: pointer;
}

#logoSizeValue {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d97706;
}

.dimensions {
  grid-column: span 2;
}

.dimension-inputs {
  display: flex;
  gap: 10px;
}

.dimension-inputs input {
  flex: 1;
}

/* Logo Upload Styling */
.file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-label {
  display: inline-block;
  padding: 10px 15px;
  background-color: #d97706;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.file-label:hover {
  background-color: #b45309;
  transform: translateY(-2px);
}

.file-label i {
  margin-right: 5px;
}

#selected-file-name {
  display: inline-block;
  font-size: 0.9rem;
  color: #333333;
  margin-left: 5px;
  vertical-align: middle;
}

#logo-preview-container {
  display: none;
  margin-top: 15px;
  position: relative;
  width: 150px;
  height: 100px;
  border: 1px dashed #d97706;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f9f9f9;
}

#logo-preview {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#remove-logo {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ef4444;
  transition: all 0.3s ease;
}

#remove-logo:hover {
  background-color: #ef4444;
  color: white;
}

/* 3D Model Viewer Section */
.model-viewer-section {
  margin-bottom: 60px;
  text-align: center;
  display: none;
}

.model-viewer-h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.model-viewer-p {
  font-size: 1.5rem;
  color: #333333;
  text-transform: capitalize;
  letter-spacing: -1px;
  font-weight: 500;
}

.model-viewer-container {
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 30px 0;
  position: relative;
  border: 1px solid rgba(217, 119, 6, 0.1);
}

#model-viewer-3d {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  position: relative;
  overflow: hidden;
  touch-action: none;
}

#model-viewer-3d canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.model-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.model-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  transition: all 0.3s ease;
}

.model-control-btn:hover {
  background: #d97706;
  color: white;
  transform: scale(1.1);
}

#zoom-in,
#zoom-out {
  background-color: #d97706;
  color: white;
}

#zoom-in:hover,
#zoom-out:hover {
  background-color: #b45309;
  transform: scale(1.1);
}

.model-info {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(217, 119, 6, 0.1);
}

/* Touch interaction instructions */
.touch-instructions {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.touch-instructions.show {
  opacity: 1;
}

/* Error message styling */
.error-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #ef4444;
  padding: 30px;
}

.error-message i {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Loading Animation for 3D model */
.loading-model {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(217, 119, 6, 0.15);
  border-top-color: #d97706;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Gallery Section */
.gallery-section {
  margin-bottom: 60px;
  text-align: center;
}

.gallery-h3 {
  margin-bottom: 10px;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.gallery-p {
  display: none;
  font-size: 1rem;
  color: #333333;
  text-transform: capitalize;
  letter-spacing: -1px;
  font-weight: 500;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(217, 119, 6, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  transform: translateY(250px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay-p {
  color: white;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .overlay {
  transform: translateY(0px);
}

.gallery-item .overlay h4 {
  margin-bottom: 5px;
}

.gallery-item .overlay p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  margin-bottom: 60px;
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(217, 119, 6, 0.1);
}

.contact-section-h3 {
  margin-bottom: 10px;
  font-size: 3.5rem;
  text-transform: uppercase;
}
.contact-section-p {
  font-size: 1.1rem;
  color: #333333;
  text-transform: capitalize;
  letter-spacing: -1px;
  font-weight: 500;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
  margin-top: 30px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #b45309;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #d97706;
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
}

.form-success {
  background-color: rgba(22, 163, 74, 0.05);
  border: 1px solid #16a34a;
}

.form-error {
  background-color: rgba(239, 68, 68, 0.05);
  border: 1px solid #ef4444;
}

.form-success i,
.form-error i {
  font-size: 3rem;
  margin-bottom: 15px;
}

.form-success i {
  color: #16a34a;
}

.form-error i {
  color: #ef4444;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  background-color: #d97706;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(217, 119, 6, 0.3);
}

.cta-button:hover {
  background-color: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(180, 83, 9, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button i {
  margin-right: 8px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: white;
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.cta-section-h3 {
  color: rgb(248, 248, 248);
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-section-p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.2rem;
  text-transform: capitalize;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-btn {
  background-color: white;
  color: #d97706;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover {
  background-color: #f9fafb;
  color: #b45309;
}

.call-btn {
  background-color: transparent;
  border: 2px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.call-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Texture pattern overlay for materials */
.texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.2;
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header .custom1 {
    font-size: 3rem;
  }

  .section-header .packaging1 {
    font-size: 3.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .design-options {
    grid-template-columns: 1fr;
  }
  .design-tool-h3 {
    font-weight: 600;
  }

  .dimensions,
  .option-group.logo-upload {
    grid-column: span 1;
  }

  .model-controls {
    bottom: 10px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-section-h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .cta-section {
    padding: 30px;
  }
  .cta-section-h3 {
    font-size: 1.5rem;
  }
  .cta-section-p {
    font-size: 1rem;
    text-transform: capitalize;
  }
  .cta-buttons {
    flex-direction: column;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-item .overlay {
    transform: translateY(0px);
  }
  .gallery-h3 {
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  .custom-packaging {
    padding: 50px 0;
  }

  .model-control-btn {
    width: 35px;
    height: 35px;
  }

  .cta-section {
    padding: 25px 15px;
  }
}

/*adding footer in website ------------------------------------------------------------------------*/
/* Animations */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.fade-in {
  animation: fade-in 0.6s ease-out;
}

.slide-up {
  animation: slide-up 0.8s ease-out;
}

.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-2px);
}

/* Footer */
.premium-footer {
  padding: 1rem 4rem;
  background-color: rgba(0, 0, 0, 0.801);
  color: white;
  width: 100%;
  height: auto;
}

.footer-container {
  width: 100%;
  height: 50%;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem 0;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.brand-logo {
  width: 7.5rem;
  height: 7.5rem;
  margin-top: -0.8rem;
  margin-bottom: -1rem;
}

.brand-name {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-tagline {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
}

.brand-description {
  color: white;
  /* font-size: 0.875rem; */
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer Title */
.footer-title {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--luxury-700);
  text-decoration: none;
  /* font-size: 0.875rem; */
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.3s ease;
  display: inline-block;
  text-transform: capitalize;
}

.footer-link:hover {
  color: var(--crystal-600);
  transform: translateY(-1px);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: scale(1.02);
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--crystal-600);
  margin-top: 0.125rem;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-item .address-list {
  padding-left: 20px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--luxury-600);
}


/* Social Media */
.social-section {
  margin-top: 1rem;
}

.social-title {
  font-weight: 500;
  color: var(--luxury-800);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid var(--luxury-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: scale(1.1);
  background: var(--crystal-50);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--luxury-600);
  transition: color 0.3s ease;
}

.social-link:hover svg {
  color: var(--crystal-600);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1rem 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: white;
}

.legal-links a {
  color: white;
  margin-left: 0.5rem;
}

.copyright p {
  color: white;
  line-height: 1.2;
}

/* Media queries for different screen sizes */
@media (max-width: 1024px) {
  .premium-footer {
    padding: 2rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .brand-description {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .premium-footer {
    padding: 1.5rem;
  }

  .footer-grid {
    flex-direction: column;
    padding: 2rem 0;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 1rem;
  }

  .brand-logo {
    width: 5rem;
    height: 5rem;
  }

  .brand-tagline {
    font-size: 1.25rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-link {
    font-size: 1rem;
  }

  .social-link {
    width: 2.25rem;
    height: 2.25rem;
  }

  /* Make footer bottom stack on mobile */
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .legal-links a {
    margin: 0 0.25rem;
  }

  .copyright p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .premium-footer {
    padding: 1.25rem;
  }

  .footer-grid {
    padding: 1.5rem 0;
  }

  .brand-tagline {
    font-size: 1.1rem;
  }

  .brand-description {
    font-size: 0.9rem;
  }

  .footer-link,
  .contact-item span {
    font-size: 0.9rem;
  }
}
