/* Fonturi principale */
body {
  font-family: 'Poppins', 'Quicksand', 'Nunito', Arial, sans-serif;
  background: #FFFFFF;
  color: #333333;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4vw 1.5rem 4vw;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(177, 139, 208, 0.07);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #B18BD0;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.nav a {
  color: #333;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover {
  background: #B18BD0;
  color: #fff;
}

.hero {
  background: url('assets/hero2.png') no-repeat center center;
  background-size: cover;
  padding: 4rem 0 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60vh;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-img {
  width: 500px;
  max-width: 90vw;
  border-radius: 2.5rem;
  box-shadow: none;
  background: transparent;
  filter: none;
}

.hero-text h1 {
  font-size: 2.2rem;
  color: #B18BD0;
  margin-bottom: 1.5rem;
  font-family: 'Quicksand', 'Poppins', sans-serif;
  margin-top: 0;
}

.hero-text {
  padding-top: 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #6D8AC8;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(200, 109, 215, 0.10);
}

.btn-gradient {
  background: linear-gradient(90deg, #C86DD7 0%, #6D8AC8 100%);
  color: #fff;
}

.btn-gradient:hover {
  background: #A06BC2;
}

.servicii {
  background: #f7f3fa;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.servicii h2 {
  color: #B18BD0;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.servicii-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.serviciu {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px 0 rgba(177, 139, 208, 0.07);
  padding: 1.5rem 2.5rem;
  font-size: 1.15rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 120px;
  min-height: 120px;
}

.serviciu:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px 0 rgba(177, 139, 208, 0.15);
}

.icon {
  font-size: 2rem;
  color: #B18BD0;
}

.icon svg {
  display: block;
  height: 2.2rem;
  width: 2.2rem;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
}

.galerie {
  background: #fff;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.galerie h2 {
  color: #B18BD0;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 2px 12px 0 rgba(177, 139, 208, 0.07);
  background: #f7f3fa;
}

/* Add fade gradients on the sides */
.carousel::before,
.carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 1;
  pointer-events: none;
}

.carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(247, 243, 250, 1) 0%, rgba(247, 243, 250, 0.9) 30%, rgba(247, 243, 250, 0.6) 60%, rgba(247, 243, 250, 0) 100%);
}

.carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(247, 243, 250, 1) 0%, rgba(247, 243, 250, 0.9) 30%, rgba(247, 243, 250, 0.6) 60%, rgba(247, 243, 250, 0) 100%);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0 2rem;
  /* Width will be calculated dynamically by JavaScript */
}

.carousel-img {
  width: 600px;
  height: 700px;
  min-width: 600px;
  object-fit: contain;
  border-radius: 1rem;
  background: transparent;
  border: none;
  box-sizing: border-box;
  display: block;
  object-position: center;
  transition: all 0.5s ease;
  flex-shrink: 0;
  box-shadow: none;
}

/* Add greying effect for non-centered images */
.carousel-img:not(.active) {
  opacity: 0.6;
  transform: scale(0.9);
}

/* Center image (active) - full color and size */
.carousel-img.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #B18BD0;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(200, 109, 215, 0.10);
  transition: background 0.2s;
  z-index: 10;
}

.carousel-btn:hover {
  background: #A06BC2;
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

/* Carousel dots navigation */
.carousel-dots {
  position: relative;
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  z-index: 10;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(177, 139, 208, 0.3);
  border: 2px solid #B18BD0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  z-index: 10;
}

.carousel-dot:hover {
  background: rgba(177, 139, 208, 0.6);
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(177, 139, 208, 0.3);
}

.carousel-dot.active {
  background: #B18BD0;
  border-color: #B18BD0;
  transform: scale(1.3);
  box-shadow: 0 2px 12px rgba(177, 139, 208, 0.4);
}

.testimoniale {
  background: #f7f3fa;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.testimoniale h2 {
  color: #B18BD0;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.testimoniale-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px 0 rgba(177, 139, 208, 0.07);
  padding: 2rem 2.5rem;
  min-width: 260px;
  max-width: 350px;
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial span {
  color: #B18BD0;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
}

.testimonial-author {
  display: block;
  color: #B18BD0;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  margin-top: 0.5rem;
}

.testimonial-location {
  display: block;
  font-size: 0.9rem;
  color: #6D8AC8;
  font-style: normal;
  font-weight: 500;
  margin-top: 0.3rem;
}

.testimonial-date {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 400;
}

.contact {
  background: #fff;
  padding: 2rem 0 2rem 0;
  text-align: center;
}

.contact h2 {
  color: #B18BD0;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1.5px solid #B18BD0;
  font-size: 1.1rem;
  font-family: inherit;
  outline: none;
  resize: none;
  background: #f7f3fa;
  color: #333;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #C86DD7;
}

.footer {
  background: #fff;
  padding: 1.5rem 4vw;
  border-top: 1.5px solid #f7f3fa;
  font-size: 1rem;
  color: #B18BD0;
}

.footer-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

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

.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #B18BD0;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.footer-social a:hover {
  color: #C86DD7;
  transform: translateY(-1px);
}

.footer-social a:hover svg {
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-social svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: all 0.2s;
}

/* Facebook specific styles */
.facebook-link:hover {
  color: #1877F2 !important;
}

.facebook-link:hover svg {
  filter: drop-shadow(0 2px 8px rgba(24, 119, 242, 0.3));
}

/* Instagram specific styles */
.instagram-link:hover {
  color: #E4405F !important;
}

.instagram-link:hover svg {
  filter: drop-shadow(0 2px 8px rgba(228, 64, 95, 0.3));
}

.footer-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-info a,
.footer-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #B18BD0;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer-info a:hover {
  color: #C86DD7;
}

.footer-info svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}



.logo-img {
  height: 73px;
  width: auto;
  display: block;
  border-radius: 1.5rem;
  background: none;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 1rem;
  background: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background: #B18BD0;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: center;
}

.mobile-menu-btn.active span:first-child {
  transform: rotate(45deg) translate(0, 12px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0, -12px);
}

/* Tablet și Mobile - Breakpoint principal */
@media (max-width: 900px) {

  /* Header și navigare */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 3vw;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(177, 139, 208, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn {
    display: flex;
    position: relative;
    top: auto;
    right: auto;
    z-index: 1002;
    transition: all 0.3s ease;
    align-self: center;
    margin-left: auto;
  }

  .logo-img {
    display: block;
    height: 70px;
    margin-right: auto;
  }

  .nav-logo {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #f7f3fa 0%, #fff 100%);
    box-shadow: -2px 0 12px rgba(177, 139, 208, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 120px 2.5rem 2.5rem 2.5rem;
    transition: right 0.3s ease;
    z-index: 1001;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-logo {
    margin-top: auto;
    padding: 1.5rem;
    text-align: center;
    display: none;
  }

  .nav-logo img {
    height: 70px;
    width: auto;
    border-radius: 1rem;
  }

  .nav.active {
    right: 0;
  }

  .nav.active .nav-logo {
    display: block;
  }

  .nav-menu a {
    display: block;
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
    background: #fff;
    border: 2px solid #B18BD0;
    border-radius: 1.5rem;
    color: #B18BD0;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(177, 139, 208, 0.1);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-menu a:hover {
    background: linear-gradient(90deg, #C86DD7 0%, #6D8AC8 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(177, 139, 208, 0.2);
  }

  /* Hero section */
  .hero {
    padding: 6rem 0 2rem 0;
    margin-top: 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .hero-img {
    width: 350px;
    max-width: 80vw;
    background: transparent;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    text-align: center;
  }

  /* Servicii */
  .servicii {
    padding: 3rem 0 2.5rem 0;
  }

  .servicii h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .servicii-list {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 0 2rem;
  }

  .serviciu {
    height: auto;
    min-height: 120px;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
  }

  /* Galerie */
  .galerie {
    padding: 3rem 0 2.5rem 0;
  }

  .galerie h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .carousel-img {
    width: 500px;
    height: 600px;
    min-width: 500px;
    border-radius: 1rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
    background: transparent;
    transition: all 0.5s ease;
    flex-shrink: 0;
    box-shadow: none;
  }

  /* Add greying effect for non-centered images */
  .carousel-img:not(.active) {
    opacity: 0.6;
    transform: scale(0.9);
  }

  .carousel-img.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: none;
  }

  .carousel {
    border-radius: 1rem;
    margin: 0 1rem;
    width: calc(100% - 2rem);
    max-width: 100%;
  }

  /* Adjust fade gradients for tablet */
  .carousel::before,
  .carousel::after {
    width: 14%;
  }

  .carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 0 1.5rem;
    /* Width will be calculated dynamically by JavaScript */
  }

  .carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.3rem;
  }

  .carousel-btn.prev {
    left: 1rem;
  }

  .carousel-btn.next {
    right: 1rem;
  }

  .carousel-dots {
    margin-top: 2rem;
    gap: 0.6rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  /* Testimoniale */
  .testimoniale {
    padding: 3rem 0 2.5rem 0;
  }

  .testimoniale h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .testimoniale-list {
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
  }

  .testimonial {
    min-width: auto;
    max-width: none;
    padding: 2rem;
    font-size: 1.1rem;
  }

  /* Contact */
  .contact {
    padding: 3rem 0 2.5rem 0;
  }

  .contact h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .contact-form {
    max-width: 500px;
    padding: 0 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 1.2rem;
    font-size: 1.1rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 3vw;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-contact {
    order: 2;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-social {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer-info {
    flex-direction: row;
    gap: 1rem;
  }



  .footer-social svg,
  .footer-info svg {
    width: 30px;
    height: 30px;
  }
}

/* Tablete mari - Breakpoint intermediar */
@media (max-width: 768px) and (min-width: 601px) {
  .hero-content {
    gap: 3rem;
    padding: 0 3rem;
  }

  .hero-img {
    width: 300px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .servicii-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 3rem;
  }

  .testimoniale-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 3rem;
  }

  .testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
  }

  .contact-form {
    max-width: 600px;
    padding: 0 3rem;
  }
}

/* Telefoane mici - Breakpoint secundar */
@media (max-width: 600px) {

  /* Header și navigare */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.8rem 2vw;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(177, 139, 208, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn {
    position: relative;
    top: auto;
    right: auto;
    align-self: center;
    z-index: 1002;
    margin-left: auto;
  }

  .logo-img {
    height: 55px;
    margin-right: auto;
  }

  .nav {
    width: 280px;
    padding: 100px 1.5rem 1.5rem 1.5rem;
    z-index: 1001;
  }

  .nav-logo img {
    height: 55px;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin: 0.8rem 0;
  }

  /* Hero section */
  .hero {
    padding: 5rem 0 1.5rem 0;
    margin-top: 0;
  }

  .hero-content {
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .hero-img {
    width: 300px;
    max-width: 85vw;
    background: transparent;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Servicii */
  .servicii {
    padding: 2.5rem 0 2rem 0;
  }

  .servicii h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .servicii-list {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .serviciu {
    min-height: 100px;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  /* Galerie */
  .galerie {
    padding: 2.5rem 0 2rem 0;
  }

  .galerie h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .carousel-img {
    width: 400px;
    height: 500px;
    min-width: 400px;
    border-radius: 0.8rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
    background: transparent;
    display: block;
    transition: all 0.5s ease;
    flex-shrink: 0;
    box-shadow: none;
  }

  /* Add greying effect for non-centered images */
  .carousel-img:not(.active) {
    opacity: 0.6;
    transform: scale(0.9);
  }

  .carousel-img.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: none;
  }

  .carousel {
    border-radius: 0.8rem;
    margin: 0 0.5rem;
    width: calc(100% - 1rem);
    max-width: 100%;
  }

  /* Adjust fade gradients for mobile */
  .carousel::before,
  .carousel::after {
    width: 12%;
  }

  .carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 1rem;
    /* Width will be calculated dynamically by JavaScript */
  }

  .carousel-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }

  .carousel-btn.prev {
    left: 0.5rem;
  }

  .carousel-btn.next {
    right: 0.5rem;
  }

  .carousel-dots {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  /* Testimoniale */
  .testimoniale {
    padding: 2.5rem 0 2rem 0;
  }

  .testimoniale h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .testimoniale-list {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
    font-size: 1rem;
  }

  /* Contact */
  .contact {
    padding: 2.5rem 0 2rem 0;
  }

  .contact h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .contact-form {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 2vw;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-social {
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }

  .footer-info {
    gap: 0.5rem;
  }

  .footer-social svg,
  .footer-info svg {
    width: 26px;
    height: 26px;
  }

  .footer-social a,
  .footer-info a,
  .footer-info span {
    font-size: 0.85rem;
  }
}

/* Copyright Section */
.copyright {
  background: #f7f3fa;
  padding: 1rem 4vw;
  text-align: center;
  border-top: 1px solid #e8e0f0;
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #6D8AC8;
  font-weight: 500;
}

.copyright a {
  color: #B18BD0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.copyright a:hover {
  color: #C86DD7;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 2px solid #B18BD0;
  box-shadow: 0 -4px 20px rgba(177, 139, 208, 0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 4vw;
  gap: 2rem;
}

.cookie-text h3 {
  margin: 0 0 0.5rem 0;
  color: #B18BD0;
  font-size: 1.2rem;
  font-weight: 700;
}

.cookie-text p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-link {
  color: #B18BD0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.cookie-link:hover {
  color: #C86DD7;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.accept-btn {
  background: linear-gradient(90deg, #C86DD7 0%, #6D8AC8 100%);
  color: white;
}

.accept-btn:hover {
  background: #A06BC2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 109, 215, 0.3);
}

.reject-btn {
  background: #f7f3fa;
  color: #6D8AC8;
  border: 2px solid #B18BD0;
}

.reject-btn:hover {
  background: #e8e0f0;
  color: #C86DD7;
  border-color: #C86DD7;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem 4vw;
  }

  .cookie-text h3 {
    font-size: 1.1rem;
  }

  .cookie-text p {
    font-size: 0.9rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cookie-content {
    padding: 1rem 2vw;
  }

  .cookie-text h3 {
    font-size: 1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    padding: 0.8rem 1rem;
  }
}