/* --- Reset base --- */
*⁠  ⁠{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
      margin: 0;
      height: 300vh; 
      color: white;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;

    }

    .seo-title {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.sale-section {
  width: 80%;
  max-width: 1300px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}

.sale-section h2 {
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  color: #191616;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.sale-grid {
    display:inline-flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

.sale-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.sale-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
  border-radius: 18px;
}

.sale-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 18px;
}

.sale-item h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  text-transform: uppercase;
}

.sale-item:hover img {
  transform: scale(1.08);
}

.sale-item:hover .overlay {
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
}

.sale-item:hover h3 {
  opacity: 1;
  transform: translateY(0);
}

.sale-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .sale-section {
    margin: 60px auto;
  }

  .sale-item h3 {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: no-preference){
    .sale-section {
      scale: .8; opacity: 0;
      animation: fade-in linear forwards;
      animation-timeline: view();
      animation-range: entry;
    }
    @keyframes fade-in{
      from {scale: .8; opacity: 0;}
      to { scale: 1; opacity: 1;}
    }
   }
  
    .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin: 10px 0;
      gap: 10px;
      width: 100%;
    }

body {
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  background: #e3e3e3; 
  color: #000000;
}

.navbar {
  position: fixed;
  top: 0;
  width: 98%;
  height: 70px;
  background: #60729378;;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #a0efff;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a.active::after {
  width: 100%;
  background-color: #a0efff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100; 
  padding: 15px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: -100%;
    background: rgba(0, 0, 0, 0);
    width: 220px;
    height: calc(100% - 70px);
    padding: 0px;
    gap: 20px;
    transition: right 0.3s ease;
  }
.nav-links.open{
  right: 0;
}
  .hamburger {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 54px;
    right: -100%;
    background: rgba(0, 0, 0, 0);
    width: 200px;
    height: calc(100% - 48px);
    padding: 0px;
    gap: 0px;
    transition: right 0.3s;
  }
}


.section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px 6px black;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(85, 142, 168, 0.9);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 160px;
  display: none;
  flex-direction: column;
  border-radius: 4px;
  z-index: 999;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #f5f5f7;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

@media (max-width: 900px) {
  .nav-links li a{
    display:block;
    padding: 12px 15px;
    background: rgba(85, 142, 168, 0.9);
    border-radius: 0%;
  }

  .nav-links li a:hover{
      background: rgb(170 170 170 / 21%);
  }

  .dropdown-menu li a {
    background: #66baf585;
    border-radius: 1px;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }
}

    .row-1 video {
      position: relative;
      width: 100%;
      display: flex;
       justify-content: center;
    }

    .row-1 video{
      width: 100%;
      height: auto;
      display: block;
    }

    .video-text {
      text-align: center;
      margin-top: 20px;
      color: #1d1d1d;
      font-size: 1.2rem;
      line-height: 1.6;
    }


.contact-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
}

.contact-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}

.contact-buttons a img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.btn-call {
  background-color: #e53935;
}

.btn-whatsapp {
  background-color: #25D366;
}

.contact-buttons a:hover {
  transform: scale(1.08);
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-text {
  font-size: 16px;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-buttons {
    bottom: 15px;
    right: 15px;
  }

  .contact-buttons a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .contact-buttons a img {
    margin: 0;
    width: 28px;
    height: 28px;
  }

  .btn-text {
    display: none; 
  }
}

.map-container{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #fff;
}
.box{
  max-width: 600px;
  border-radius: 4px;
}

.text-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
  text-align: center;
}

.text-container h1{
  font-size: 4em;
  margin-bottom: 15px;
  color: #191616;
}
.text-container p{
  font-size: 1.23em;
  line-height: 1.5;
  color: #191616;
}
.map-container iframe{
   border-radius: 10px;
   width: 80%;
   height: 600px;
   transition: 0.3s ease-in-out;
}
.map-container iframe:hover{
  transform: scale(1.05);
}

.social-container{
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  margin-top: 20px;
} 

.social-container a{
   background-color: #fff;
   padding: 0.5em;
   border-radius: 50%;
   width: 64px;
   height: 64px;
   box-sizing: border-box;
   flex-shrink: 0;
   display: grid;
   place-items: center;
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.33);
   transition: transform 0.3s ease;
}
.social-container a:hover{
   transform: scale(1.1); 
}
.social-container a svg{
  height: 32px;
  fill: rgb(0, 0, 0);
}

.img-fit {
  object-fit:cover;
  border-radius: 20px;
}

.image {
      width: 60%;
      max-width: 1200px;
      margin: 40px auto;
      text-align: center;
    }

.image h3 {
      color: #191616;
      margin-top: 10px;
      font-size: 1.5rem;
    }

.responsive-img {
 width: 100%;
 height: auto;
 display: block;
 border-radius: 20px;
 object-fit: cover;
}    

.logo-under{
  object-fit:cover;
  border-radius: 20px;
}

.text-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 30px;
  text-align: center;
}

.text-container h1{
  font-size: 2em;
  margin-bottom: 15px;
  color: #191616;
}
.text-container p{
  font-size: 1em;
  line-height: 1.5;
  color: #191616;
}

body.light-mode {
  background-color: #e3e3e3;
  color: #191616;
}

body.dark-mode {
  background-color: #051a24f7;
  color: #f5f5f5;
}

body.dark-mode p,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: #f5f5f5 !important;
}

body.dark-mode .navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 15px;
}

body.light-mode .theme-toggle {
  color: #111;
  border-color: #111;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .theme-toggle {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-left: -35px;
    border-width: 1.5px;
    
  }

 .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}
}

.theme-toggle {
  cursor: pointer;
  font-size: 1.2rem;
  border: 2px solid #fff;
  background: none;
  border-radius: 50%;
  padding: unset 10px;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background-color: rgba(255,255,255,0.1);
}

#logo {
  visibility: hidden;
}
body.dark-mode #logo,
body.light-mode #logo {
  visibility: visible;
}

.main-section {
  background-color: #fff;
  padding: 40px 0;
}

.container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.heading-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item-title {
  padding: 15px 20px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.accordion-item-title-icon i {
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-item-title-icon i {
  transform: rotate(45deg);
}

.accordion-item-content {
  max-height: 0;
  overflow: hidden;
  background-color: #f4f4f4;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.accordion-item.open .accordion-item-content {
  padding: 20px;
  text-align:center;
}
.accordion-item-title i {
  transition: transform 0.5s ease;
}

.accordion-item.open .accordion-item-title i {
  transform: rotate(45deg);
}
.accordion-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 16%);
}

.accordion-item-title {
  padding: 15px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #041227;
  border-radius: 8px;
}

.accordion-item-title-icon {
  font-size: 1.5rem;
  color: #666;
}

.accordion-item-title i {
  transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-item-title i {
  transform: rotate(45deg);
}

.accordion-item-content {
  padding: 20px;
  background-color: #f4f4f4;
  display: none;
}

.accordion-item[open] .accordion-item-content {
  display: contents;
}

.accordion-item-content p {
  color: #111 !important;
}

body.dark-mode .accordion-item-content {
  background-color: #222 !important; 
}

body.dark-mode .accordion-item-content p {
  color: #0c4c6d !important;
}

@media screen and (max-width: 768px) {
  .heading-title {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .accordion-item-title {
    font-size: 1rem;
  }

  .accordion-item-content {
    font-size: 0.9rem;
  }
}

.animated-text {
  position: relative;
  perspective: 1000px;
  font-family: "Poppins", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 1.5px;
  height: 1.5em;
  overflow: visible;
}

.animated-text .word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: center;
  animation: rotateWord 12s linear infinite;
}

.animated-text .word:nth-child(1) { animation-delay: 0s; }
.animated-text .word:nth-child(2) { animation-delay: 3s; }
.animated-text .word:nth-child(3) { animation-delay: 6s; }
.animated-text .word:nth-child(4) { animation-delay: 9s; }

@keyframes rotateWord {
  0%   { transform: rotateX(90deg); opacity: 0; }
  10%  { transform: rotateX(0deg);  opacity: 1; }
  25%  { transform: rotateX(0deg);  opacity: 1; }
  35%  { transform: rotateX(-90deg); opacity: 0; }
  100% { transform: rotateX(-90deg); opacity: 0; }
}