/* Resets */

/* Modern CSS Reset 2025 */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
    padding: 0;
   
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  margin: 0;
 padding: 0;
   scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
  overflow-y: scroll;
  background: #fff;

  
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4, h5, h6,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* Remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Modern focus styles */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Smooth scrolling for users who don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Smooth scrolling for all links */
a[href^="#"] {
  scroll-behavior: smooth;
}

/* Remove default button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Improve table styling */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Modern form styling */
input,
textarea,
select {
  border: none;
  outline: none;
}

/* Hide scrollbars but maintain functionality for webkit browsers */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Container query support */
@supports (container-type: inline-size) {
  .container {
    container-type: inline-size;
  }
}

/* Logical properties for better internationalization */
.flow > * + * {
  margin-block-start: var(--flow-space, 1em);
}

a{
  text-decoration: none;
}



.header {
    height: 8vh; 
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 10;
    animation: fade-down 1s ease-out;
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

.nav-container{
    z-index:3 ;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 2rem 2rem;
    margin:0 auto;
    line-height: 1;
    position: relative;
    gap: 2rem;
} 

.logo-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:0.9rem;

}



.logo-text{
    font-size: clamp(0.75rem, 4vw, 1.5rem);
    font-family:'Audiowide' , sans-serif ;
    font-weight: 500;
    line-height:1 ;
}

.logo-span-1{
  color:#13265C;
}
.logo-span-2{
  color:#FF6700 ;
}



.both-navigations {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    gap: 10px;
    position: fixed;
    top: 40px; /* Sub header-ul tau */
    left: 50%;
    transform: translateX(-50%); /* Centreaza orizontal */
    
}

.navigation-box {
    
    position: relative; 
    width: 20vw;
    height: 3rem;
    margin-inline: 0.5em;
    padding: 1rem;
    border-radius: 10px;
    background:#3333333b ;
    border: 1px solid rgba(255, 255, 255, 0.233);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}

.second-nav {
    position: relative;
    width: 20rem;
    height: 22rem;
    margin-inline: 0.5em;
    padding: 1rem;
    border-radius: 10px;
    background: #3333333b;
    border: 1px solid rgba(255, 255, 255, 0.233);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    gap:3rem;
    align-self:start;
   transition: opacity 0.5s ease, transform 0.5s ease;
    
}

.second-nav.open {
    
    display: flex;
    pointer-events: auto;
    transform: translateY(0);
}

.main-ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}


.main-ul-li{
    color:#fff;
     font-size: 2rem;
     font-family: 'Inter',sans-serif;
     font-weight: 400;
}

.bar{
    content: '';
    background: #333;
    align-self: start;
    width:18rem;
    height: 1px;
    
}

.btn-contact-nav{
    padding:1rem 2rem;
    border: 1px solid #fff  ;
    border-radius: 10px;
}

.contact-button{
    font-size: 1rem;
    color:#333;
    font-family: 'Inter' , sans-serif;
    font-weight: 500;
}


.nav-text{
   font-size: 1rem;
   color:#000000f8;
   font-family: 'Inter' ,sans-serif;
   line-height: 1;
   font-weight: 400;
}

.span-icon-btn{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:0.5rem;
    position: relative;
    cursor: pointer;
    transition: gap 0.1s ease;
}

.span-icon-btn:hover,
.span-icon-btn.active{
    gap:0.7rem;
}

.span-icon{
    content:'';
    width:30px;
    height:1px;
    background: black;
    transition: all 0.3s ease;
    transform-origin: center;
   
   
}  
.span-icon:nth-child(1) {
   top: calc(50% - 8px);
 }

.span-icon:nth-child(2) {
    top: calc(50% + 8px);
 }

.span-icon-btn.active .span-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
 }

.span-icon-btn.active .span-icon:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
 }


.circle {
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    height: 50px;
    width: 50px;
    float: left;
    margin: 0 5px;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:700px){
  .nav-container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 1rem 2rem;
    height: 6rem;
    margin: 0;
  }

  .navigation-box {
    position: relative; 
    width: 4rem;
    height: 3rem;
    right: -18rem;
    top: -1rem;
    border-radius: 10px;
    background: #3333333b;
    border: 1px solid rgba(255, 255, 255, 0.233);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .logo-text{
    font-size: 1rem;
  }

  .nav-text{
    display: none;
  }
  .socials{
    display: none;
  }
}

@media screen and (max-width:644px){
  .navigation-box {
    right: -15rem;
  }
}

@media screen and (max-width:546px){
  .navigation-box {
    right: -12rem;
  }
}

@media screen and (max-width:414px){
  .navigation-box {
    right: -10rem;
  }
}

/*  Services Digital*/

#hero {
    height: auto;
    min-height: 100vh;
    width: 100%;
    background: url(./assets-services/hero.png);
    background-size: cover; 
    background-repeat: no-repeat;
    display: flex;
     animation: fade-down 1s ease-out;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10rem;
    mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
);
}
.text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 1rem;
    gap: 2rem;
    animation: fade-down 1s ease-out;
}

.text-content  span{
  font-size: clamp(0.875rem, 2vw, 1.2rem);
  text-transform: uppercase;
  font-family:'Inter',sans-serif;
  font-weight: 500;
  color:#FF6700;
}

.title{
  font-family: 'Audiowide',sans-serif;
   font-size: clamp(1.5rem, 8vw, 2.5rem);
  color: #13265C;
}

.hero-subheading{
  font-size: clamp(0.875rem, 2.5vw, 1.2rem);
  font-family: 'Inter',sans-serif;
  font-weight: 500;
}

.btns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:2rem;
}

.btn{
  border: 1px solid #1B1B1B;
  padding: 1rem 2rem;
  border-radius:24px ;
}

.btn a{
    font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-family: 'Inter',sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

/* Benefits */

.benefits{
  min-height: 100vh;
  height: 100%;
  width: 100%;
  padding: 1rem 4rem;
    display: flex;
    flex-direction: column;
    gap:4rem;
     animation: fade-down 1s ease-out;
    align-items: center;
    justify-content: center;
}

.text-content-1{
  display:flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap:30rem;
}

.benefit-title{
  font-size: clamp(1rem, 2.5vw, 3rem);
  font-weight: 500;
  font-family: 'Inter',sans-serif;
  text-transform: uppercase ;

  color: #0c0c0c;
 
}

.benefit-title span{
  font-family: 'Audiowide',sans-serif;
font-size: clamp(1rem, 1.5vw, 2.5rem);
 font-weight: 400 ;
}

.benefit-desc{
  font-size: clamp(0.8rem, 1vw, 1.2rem);
  font-weight: 500;
  font-family: 'Inter',sans-serif;
  text-transform: uppercase ;
  color: #13265C;
  
  align-self: self-end;
}

.benefits-boxes{
  display: flex;
  align-items: center;
  justify-content: center;
    flex-wrap: wrap;
  gap:2rem;
  
}

.benefit-box{
  width: 400px;
  height: 400px;
  border: 1px solid #FF6700;
  border-radius: 24px;
  background: url(assets-services/services.png);
  background-size: cover;
  background-position: center;
}

.box-content{
  padding: 2rem 1rem;
  
}

.box1{
 display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:6rem;

}

.box2{
  display: flex;
  flex-direction: column;
  justify-content:space-around;
  align-items: center;
  gap:15rem;
 
}

.box2 p{
  text-align: center;
}


.box3{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:18rem;

}


.box3-desc{
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-family: 'Inter',sans-serif;
  font-weight: 500;
  
}



.box-title{
 font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  text-transform:uppercase ;
  font-family: 'Inter',sans-serif;
  font-weight: 600;
  text-align: center;
}

.box-desc{
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-family: 'Inter',sans-serif;
  text-align: start;
  font-weight: 500;
  color: #1B1B1B;
}




/* //////// */

/* services*/
.services {
  min-height: 80vh;
  width: 100%;
  max-width: 120rem;
  padding: 4rem 2rem;
  margin: 0 auto 20rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  animation: fade-down 1s ease-out;
  align-items: center;
  justify-content: center;
  
}

.services-boxes {
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  
}


  .services-boxes.visible {
    opacity: 1;
  }
   .services-boxes.hidden {
    opacity: 0;
  }


.service-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.text-content-services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-title{
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-family: 'Inter',sans-serif;
  font-weight: 500;
  
}

.service-desc{
font-size: clamp(1rem, 2vw, 1.2rem);
    font-family: 'Inter',sans-serif;
  font-weight: 500;
  width: 70%;
}

.service-img-box {
  width: 100%;
}

.service-img-box img {
  width: 100%;
  border-radius: 24px;
  height: auto;
  display: block;
}

.spans > p{
  display: flex;
  align-items: center;
  gap:0.5rem;
  margin:0;

  /* Text Styles */

  font-size: clamp(1rem, 2vw, 1.2rem);
  color:#0C0C0C;
}

/* //////////////////// */


/* Blog */

.blog-section{
  animation: fade-down 1s ease-out;
  height:auto;
  width: 120rem;
  padding: 1rem 2rem;
  margin:0 auto;
  z-index: 3;
}

.blog-p{
  font-size: 2.5rem;
  font-family: 'Audiowide',sans-serif;
  font-weight: 400;
  padding:6rem 4rem;
  color: #091430;
}

.blog-box {
    width: 500px;
    height: 500px;
    position: relative;
    box-shadow: 0 2px 7px #d4d3cb;
    border-radius: 11px;
    /* margin: 50px auto; */
    background: #d4d3cb;
    cursor: pointer;
    border-radius: 22px;
}


.product-tumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    width: 100%;
    padding: 50px;
    border-radius: 22px 22px 0 0;
}

.blog-content{
  display:flex;
  align-items: center;
  justify-content: flex-start;
  gap:4rem;
}

.blog-details{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding:2rem 2rem;
  position: absolute;
  gap:2rem;
}

.blog-title{
  font-size: clamp(0.75rem, 1.5vw, 1.2rem);
  font-family: 'Inter' ,sans-serif;
  color:#091430;
  font-weight: 500;
  text-transform: uppercase;
}

.producer{
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0;
  gap:1rem;
}

.user-image {
  height: 3.2rem;
  width: 3.2rem;
  background: url(../../assets/img/logo.jpeg) center/cover no-repeat;
  border-radius: 999px;
}
.user-span{
  text-transform: uppercase;
  font-size: clamp(0.6rem, 1.2vw, 1rem);
  font-family: 500;
  font-family: 'Inter',sans-serif;
  color:#0C0C0C;
}

.date-span{
 font-size: 0.8rem;
 color:#072929;
 font-family: 'Inter',sans-serif;
 font-weight: 400;
}

/* //////////////////// */

@media screen and (min-width: 650px) and (max-width: 1340px){

#hero {
     background-position: center;
     background-size: cover; 
        min-height: 80vh;
}
}

@media screen and (max-width: 970px){
  #hero {
     background-position: center;
    background-size:cover; 
    height: auto;

     
}
.hero-subheading{
  color: #0c0c0c;
}

.benefit-box{
  width:400;
  height: 400px;
  border: 1px solid #FF6700;
  border-radius: 24px;

}

.text-content-1{
  
  width: 100%;
  gap:20rem;
}

  .services {
    max-width: 100%;
    padding: 3rem 1.5rem;
  }
  
  .service-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
}

@media screen and (max-width: 820px){
   #hero {
     background-position:unset;
    background-size:cover; 
    min-height: 60vh;
    mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0)
);
   }

   .hero-subheading{
    color: #fff;
   }

.btn{
  border: 1px solid #FF6700;
}

.btn a{
  color: #ffb347;
}

.text-content-1{
  gap: 10rem;
}

.benefit-box{
  width:200;
  height: 300px;
  border: 1px solid #FF6700;
  border-radius: 24px;

}
.box3{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:13rem;

}

.box2{
  display: flex;
  flex-direction: column;
  justify-content:space-around;
  align-items: center;
  gap:10rem;
 
}




 
}

@media screen and (max-width: 650px){

  
.text-content-1{
  gap: 4rem;
}

.benefits{
  padding: 2rem 1rem;
}
  
.benefit-title{
  font-size: 0.8rem;
  font-weight: 400;
  font-family: 'Inter',sans-serif;
  text-transform: uppercase ;
   
  color: #0c0c0c;
 
}
  .benefit-desc{
    font-size: 0.5rem;
     font-weight: 400;
  }
}

@media screen and (max-width: 500px){
  .title{
    color:#fff;
  }

   .btns{
    gap:4rem;
    margin-top: 2rem;
  }

 

.text-content  span{
  color:#FF6700;
  font-weight: 600;
}

.text-content-1{
  gap: 5rem;
}
  
}

/* DESKTOP - 1775px */
@media screen and (max-width: 1775px) {
  .blog-content {
    gap: 2rem;
  }
  
  .blog-box {
    width: 450px;
    height: 450px;
  }
  
  .blog-details {
    gap: 1.2rem;
  }
  
  .blog-title {
    font-size: 1rem;
  }
}

/* TABLET - 1665px */
@media screen and (max-width: 1665px) {
  .blog-content {
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .blog-details {
    gap: 1.2rem;
  }
  
  .blog-title {
    font-size: 1rem;
  }
}

/* TABLET - 1479px */
@media screen and (max-width: 1479px) {
  .blog-section {
    padding: 1rem 1rem;
  }
  
  .blog-box {
    width: 400px;
    height: 400px;
  }
  
  .blog-details {
    gap: 1rem;
  }
  
  .blog-title {
    font-size: 0.8rem;
  }
  
  .user-span {
    font-size: 0.7rem;
  }
  
  .user-image {
    height: 1.6rem;
    width: 1.6rem;
  }
}

/* TABLET - 1300px (GRID LAYOUT) */
@media screen and (max-width: 1300px) {
  .blog-section {
    width: auto;
  }
  
  .blog-content {
    display: grid;
    grid-auto-rows: auto;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }
  
  /* Al treilea card centrat sub primele două */
  .blog-content > .blog-box:nth-child(3) {
    grid-column: 1 / 3;
    justify-self: center;
  }
}

/* MOBILE - 844px */
@media screen and (max-width: 844px) {
  .blog-content {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}

/* MOBILE - 414px */
@media screen and (max-width: 414px) {
  .blog-section {
    margin-top: -20rem;
  }
  
  .blog-box {
    width: 350px;
    height: 400px;
  }
  
  .blog-content {
    align-items: center;
    gap: 2rem;
  }
  .date-span{
    font-size: 0.6rem;
  }
}


/* Footer */
.footer {
  height: auto;
  width: 100%;
  padding: 2rem;
  margin: 0 auto;
  background: #091430;
  position: relative;
}

.footer-content {
  display: flex;
  padding: 1rem;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  width: 90%;
  flex-wrap: wrap;
}

.logo {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Audiowide', sans-serif;
  font-weight: 400;
  min-width: 150px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  width: auto;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  min-width: 150px;
}

.footer-title {
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #fff;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.footer-a {
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.footer-a:hover {
  color: #74c0fc;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  display: flex;
  padding: 1rem;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.copyright p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #7a7a7a;
  margin: 0;
}

.design-credit a {
  color: #74c0fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.design-credit a:hover {
  color: #ffffff;
}

.legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 200px;
}

.legal-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #7a7a7a;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #74c0fc;
  transition: width 0.3s ease;
}

.legal-link:hover {
  color: #ffffff;
}

.legal-link:hover::after {
  width: 100%;
}

/* MEDIA QUERIES */

/* Tablet - 768px și mai mic */
@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-content {
    width: 95%;
    padding: 0.5rem;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .footer-column {
    min-width: 120px;
    gap: 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
    min-width: 120px;
  }

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

  .footer-a {
    font-size: 0.75rem;
  }

  .footer-bottom {
    width: 95%;
    padding: 0.5rem;
    gap: 1rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .copyright {
    min-width: 100%;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .legal-link {
    font-size: 0.75rem;
  }
}

/* Mobile - 480px și mai mic */
@media (max-width: 480px) {
  .footer {
    padding: 1rem;
    overflow-x: hidden;
  }

  .footer-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .logo {
    font-size: 1rem;
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .footer-column {
    width: 100%;
    min-width: unset;
    align-items: center;
    text-align: center;
  }

  .footer-list {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

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

  .footer-a {
    font-size: 0.7rem;
  }

  .footer-bottom {
    width: 100%;
    max-width: 100%;
    padding: 0;
    gap: 1rem;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .copyright {
    min-width: 100%;
    align-items: center;
    text-align: center;
  }

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

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
    min-width: 100%;
    align-items: center;
  }

  .legal-link {
    font-size: 0.7rem;
  }
}