* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
  }

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000;
  color: white;
  transition: all 0.3s ease;
  padding: 20px 40px;
}

/* Scroll sonrası görünüm */
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.6); /* yarı şeffaf */
  backdrop-filter: blur(10px);         /* blur efekti */
  -webkit-backdrop-filter: blur(10px); /* Safari desteği */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* hafif gölge */
}

/* Navbar İçeriği */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

/* Sol tarafta logo */
.sitelogo {
  display: flex;
  align-items: center;
}

.sitelogo img {
  height: 40px;
}

/* Menü ve buton için grup */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
 
}

/* Masaüstü Menü */
.desktop-menu {
  display: flex;
  gap: 20px;
}

.desktop-menu a {
  color: #d1d1d1;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.desktop-menu a:hover {
  color: #ffffff;
}

/* Toplantı Butonu */
.toplanti-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d1d1d1 !important;
  border: 1px solid #d1d1d1;
  padding: 9px 15px;
  border-radius: 10px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.toplanti-button:hover {
  color: white !important;
  border-color: white;
}

.toplanti-button .icon {
  font-size: 16px;
  vertical-align: middle;
}

/* Footer Toplantı Butonu */
.footer-toplanti-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff !important;
  border: 1px solid #ffffff;
  padding: 9px 15px;
  border-radius: 10px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.footer-toplanti-button:hover {
  color: rgb(9, 32, 117) !important;
  background-color: #ffffff;
}

.footer-toplanti-button .icon {
  font-size: 16px;
  vertical-align: middle;
}



/* Responsive */
@media screen and (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .nav-right {
    justify-content: flex-end;
  }

  .toplanti-button {
    display: inline-flex;
  }
}


  
 
  
  /* BÖLÜMLER */
  section {
    padding: 60px 20px;
    margin: auto;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  
  /* HİZMET LİSTESİ */
  .hizmetler-section {
    margin: 60px auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
  }
  
  /* Grid düzeni */
  .hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive */
    gap: 20px;
    justify-items: center;
  }
  
  /* Her bir hizmet kutusu */
  .hizmet-item {
    position: relative;
    width: 397,5px;
    height: 502px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.15);
    transition: transform 0.3s ease;
  }
  
  .hizmet-item:hover {
    transform: scale(1.03);
  }
  
  /* Görsel tam kutu */
  .hizmet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Üstteki metin alanı */
  .hizmet-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px; /* Sağ boşluk vermek için */
    background: rgba(0, 0, 0, 0.5); /* Hafif karartma */
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    text-align: left;
  }
  
  /* Başlık */
  .hizmet-overlay h3 {
    font-size: 19px;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  /* Açıklama */
  .hizmet-overlay p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 300;
  }



  /* PROJE KARTLARI */
  .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .card {
    width: 325px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  @media screen and (max-width: 768px) {
  .card {
    width: 400px;
  }
}

  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .card p {
    padding: 10px 15px;
    font-weight: 500;
  }
  
  /* HEPSİNİ GÖR LİNKİ */
  .see-all {
    width: 100%;
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    color: #000;
    display: block;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .see-all:hover {
    color: #052d5b;
  }
  
  /* FORM ALANI */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  
  form input,
  form textarea {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  form button {
    background-color: #000;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s;
  }
  
  form button:hover {
    background-color: #444;
  }
  
  /* FOOTER */
  footer {
    background-color: #eee;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
  }
/* HERO TAM EKRAN */
.hero-section {
    position: relative;
    width: 100%;
    height: 1080px;
    overflow: hidden;
    background-image: url('assets/images/hero-bg.jpg');
    
  }


  
  /*
  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  */


  /* METİN ORTALAMA */
  .hero-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 10px;
  }
  
  .hero-overlay .slogan {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
  }


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

  .hero-overlay {
    top: 40%;
    }
  
  .hero-overlay .slogan {
    font-size: 9px;
  }
  .hero-overlay h1 {
    font-size: 19pt !important;
  }

}



  .hero-overlay h1 {
    font-size: 21pt;
    line-height: 1.5;
    max-width: 800px;
    font-weight: 500;
    margin: auto;
  }
  
  /* CTA BUTON */
  .cta-button {
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    padding: 12px 20px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    border-color: #fff;
    border-style: solid;
    animation: scrollDownAnim 1.5s infinite;
  }
  
  .scroll-down-arrow {
    display: inline-block;
    margin-left: 10px;
    animation: scrollDownAnim 1.5s infinite;
    color: rgb(255, 255, 255);
  }
  
  @keyframes scrollDownAnim {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    50% {
      transform: translateY(8px);
      opacity: 0.6;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  


  .about-us-section {
    
    background-color: #fff;
    color: #111;
    font-family: 'Poppins', sans-serif;
    
  }
  

  .about-us-container {
    display: flex;
    
    margin-top: 30px;
    flex-wrap: wrap;
    text-align: right;
    
  }
  
  .about-us-image img {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    position: relative;
  
  }
  
  .about-us-content {
    flex: 1;
    min-width: 300px;
    margin-top: 40px;
    z-index: 1;
  }
  
  .about-us-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    
    line-height: 1.3;
  }
  
  .about-us-content p {
    font-size: 1rem;
    line-height: 1.6;
    
  }
  
/*Deneyim ve özellikler*/

.deneyim-ve-ozellikler {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  margin-top: 40px;
  float: right;
  margin-right: 25px;
}


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

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

  .about-us-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .about-us-content {
    max-width: 100%;
    padding: 0 20px;
    text-align: center !important;
  }

  .deneyim-ve-ozellikler {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-right: 0;
    float: none;
    margin-top: 30px;
  }

  .deneyim-blok {
    text-align: center;
  }

  .ozellikler-listesi {
    text-align: left;
    padding-left: 0;
    margin: 0;
    list-style: none;
  }

}




.deneyim-blok {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.deneyim-rakam {
  font-size: 64px;
  font-weight: 700;
  color: #2e3f50;
  line-height: 1;
}

.deneyim-yazi {
  font-size: 16px;
  color: #666;
  margin-top: 4px;
}

.ozellikler-listesi {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #333;
  
}

.ozellikler-listesi li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.ozellikler-listesi li::after {
  content: "✔";
  position: absolute;
  color: #2e3f50;
  font-weight: bold;
  margin-left: 10px;
}


/* ---------- Yazı Alanı için yeni section ---------- */
.hizmet-yazi {
  position: relative;
  padding: 60px 40px 40px 40px;
  background: url('assets/images/hizmetler-bg.jpg') center center/cover no-repeat;
  color: white;
  overflow: hidden;
  user-select: none;
  max-width: 450px;
  margin: 0 auto; /* ortala */
}

.hizmet-yazi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.hizmet-yazi .service-intro {
  position: relative;
  z-index: 10;
}

.hizmet-yazi .service-intro h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.hizmet-yazi .service-intro p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}

/* ---------- Mevcut hizmet-detaylari section (Swiper alanı) ---------- */
/* Temel hizalama */
.hizmet-detaylari {
  position: relative;
  background-image: url('assets/images/us-bg.jpeg');
  
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 40px 0;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 60px;
  padding-left: 60px;
  box-sizing: border-box;
  
}

/* Yazı kutusu (overlay gibi) */
.hizmet-detaylari .service-intro {
  position: absolute;
  top: 40px;
  left: 120px;
  max-width: 400px;
  color: white;
  z-index: 10;
  user-select: none;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 50px 40px;
  margin-top: 30px;

}

/* Başlık */
.hizmet-detaylari .service-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

/* Açıklama */
.hizmet-detaylari .service-intro p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}

/* Swiper alanı flex-grow ile genişliyor */
.hizmet-detaylari .hizmetSwiper {
  flex-grow: 1;
  position: relative;
  z-index: 1;
  padding: 30px 0px;
  margin-left: -200px;
  
}

/* Swiper kart stilleri */
.hizmetSwiper .swiper-slide {
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  width: 280px !important;
  height: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.hizmetSwiper .swiper-slide:hover {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  transition: background 0.4s ease !important;
}

.hizmet-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.hizmet-kart h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hizmet-kart p {
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 220px;
}

/* Masaüstü swiperde kartlar hizalama */
@media (min-width: 1024px) {
  .hizmetSwiper .swiper-wrapper {
    justify-content: center;
  }
  .hizmetSwiper .swiper-slide {
    width: 220px;
    margin-right: 20px;
  }
}

/* Mobil düzenleme */
@media (max-width: 768px) {
  .hizmet-detaylari {
    display: block;  /* Flex iptal, blok yap */
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Yazı kutusunu üstte, mutlak pozisyon iptal */
  .hizmet-detaylari .service-intro {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-bottom: 30px;
    background: none;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    text-align: center;
  }

  /* Swiper sol boşluk kalksın */
  .hizmet-detaylari .hizmetSwiper {
    margin-left: 0;
    width: 100%;
  }
}




/* POPUP FORM */
.popup {
 position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.popup-inner {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
}

.popup-inner h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.popup-inner input,
.popup-inner textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.popup-inner button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.popup-inner button:hover {
  background: #333;
}

.close-popup {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  body.menu-open .desktop-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 250px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    padding: 60px 20px;
    z-index: 9999;
    transition: transform 0.3s ease;
  }

  .desktop-menu a {
    margin: 10px 0;
    color: white;
    font-size: 18px;
  }
}






.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  background: #ffffff;
  margin-top: -210px;
}

.button-container2 {
  display: flex;
  align-items: center;
  min-height: 50px;
  background: #ffffff;
  margin-bottom: 50px;
}

.button-container3 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  background: #ffffff;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .button-container2 {
    justify-content: center;
  }

}

.animation {
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding: 14px 42px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  display: inline-block;
  z-index: 1;
}

.animation span {
  position: relative;
  z-index: 10;
}

.bubble-layer {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

.bubble-1 { background: #163e83; top: -20%; left: -10%; animation: moveUpRight 6s ease-in-out infinite; }
.bubble-2 { background: #0084ff; top: 0%; left: 10%; animation: moveDownLeft 5s ease-in-out infinite; animation-delay: 1s; }
.bubble-3 { background: #00314d; top: 20%; left: 50%; animation: moveRight 4s ease-in-out infinite; animation-delay: 2s; }
.bubble-4 { background: #00fff0; top: -20%; left: 70%; animation: moveUpLeft 7s ease-in-out infinite; animation-delay: 3s; }
.bubble-5 { background: #00032d; top: 30%; left: -10%; animation: moveDownRight 3s ease-in-out infinite; animation-delay: 4s; }
.bubble-6 { background: #000001; top: -10%; left: 30%; animation: moveLeft 8s ease-in-out infinite; animation-delay: 0.5s; }
.bubble-7 { background: #03fbff; top: 40%; left: 60%; animation: moveUp 6s ease-in-out infinite; animation-delay: 1.5s; }

@keyframes moveUpRight {
  0% { transform: translate(0, 0); }
  25% { transform: translate(100%, -100%); }
  50% { transform: translate(-50%, 50%); }
  75% { transform: translate(50%, -50%); }
  100% { transform: translate(0, 0); }
}

@keyframes moveDownLeft {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-100%, 100%); }
  50% { transform: translate(50%, -50%); }
  75% { transform: translate(-50%, 50%); }
  100% { transform: translate(0, 0); }
}

@keyframes moveRight {
  0% { transform: translate(0, 0); }
  25% { transform: translate(100%, 0); }
  50% { transform: translate(-100%, 50%); }
  75% { transform: translate(50%, -50%); }
  100% { transform: translate(0, 0); }
}

@keyframes moveUpLeft {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-100%, -100%); }
  50% { transform: translate(50%, 50%); }
  75% { transform: translate(-50%, -50%); }
  100% { transform: translate(0, 0); }
}

@keyframes moveDownRight {
  0% { transform: translate(0, 0); }
  25% { transform: translate(100%, 100%); }
  50% { transform: translate(-50%, -50%); }
  75% { transform: translate(50%, 50%); }
  100% { transform: translate(0, 0); }
}

@keyframes moveLeft {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-100%, 0); }
  50% { transform: translate(100%, -50%); }
  75% { transform: translate(-50%, 50%); }
  100% { transform: translate(0, 0); }
}

@keyframes moveUp {
  0% { transform: translate(0, 0); }
  25% { transform: translate(0, -100%); }
  50% { transform: translate(50%, 50%); }
  75% { transform: translate(-50%, -50%); }
  100% { transform: translate(0, 0); }
}


/* Hamburger'ı tamamen gizle */
.hamburger {
  display: none !important;
}

/* Masaüstü menüyü gizle */
@media screen and (max-width: 768px) {
  .desktop-menu {
    display: none !important;
  }
  
}


.references {
  width: 100%;
  padding: 40px 0;
  background: #fff;
}

.slider-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px; /* mobil kenar boşluk */
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider {
  display: flex;
  gap: 40px;
  will-change: transform;
}

.logo {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  user-select: none;
  flex-shrink: 0;
  height: auto;
  max-height: 60px;

}

/* Masaüstü: 8 logo */
@media (min-width: 1024px) {
  .logo {
    width: calc((100% - 7 * 40px) / 8);
  }
}

/* Mobil: 2.5 logo */
@media (max-width: 767px) {
  .slider {
    gap: 20px;
  }

  .logo {
    width: calc((100% - 2 * 20px) / 2.5);
    max-height: 50px;
  }
}

.logo:hover {
  opacity: 1;
  cursor:default;
  user-select: none;
}






.custom-footer {
  background: url('assets/images/us-bg.jpeg') no-repeat center center;
  background-size: cover;
  color: white;
  position: relative;
  bottom:0px;
}

.footer-overlay {
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Dikey ortalama */
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  flex: 1 1 300px;
  align-items: center;
  justify-content: center;
}



/* SADECE SOL TARAFTAKİ KUTU */

.footer-info-box {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 12px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  height: 100%; /* Yüksekliğe göre ortalama */
}


.footer-logo {
  width: 160px;
  margin-bottom: 20px;
  align-self: center;
}

.footer-about {
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
}

.footer-right h3 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-btn {
  background: white;
  color: rgb(7, 90, 33);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-btn:hover {
  background: #ddd;
}

.footer-social-title {
  margin-bottom: 8px;
  font-weight: 500;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00fff7;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-right h3 {
    margin-top: 30px;
  }

  .footer-info-box {
    margin-bottom: 30px;
  }
}