/* ======================================================
   SWIPER SLIDER
====================================================== */

.swiper {
  width: 100%;
  height: 100vh;
  min-height: 350px;
  max-height: 700px;
  position: relative;
  overflow: hidden;
}

/* Slide Image */

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

/* Slow Zoom Effect */

.swiper-slide-active img {
  transform: scale(1.08);
}

/* Gradient Overlay */

.swiper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.45)
  );
  z-index: 2;
  pointer-events: none;
}

/* Pagination */

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #93296f;
  opacity: 1;
  transform: scale(1.3);
}

/* Navigation Arrows */

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  transition: .3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #c94fa1;
  transform: scale(1.2);
}


/* ======================================================
   HERO ICON BOXES
====================================================== */

.icon-box {
  padding: 30px 20px;
  text-align: center;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);

  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  transition: 0.4s;
}

.icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.icon-box .icon {
  font-size: 32px;
  color: #93296f;
  margin-bottom: 15px;
}

.icon-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}


/* ======================================================
   ACCOUNT SECTION
====================================================== */

.account {
  padding: 70px 0;
  background: linear-gradient(120deg,#faf7ff,#f5f0ff);
}


/* Section Title */

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  color: #93296f;
}

.section-title .description-title {
  color: #c94fa1;
  font-weight: 600;
}


/* ======================================================
   ACCOUNT CARDS
====================================================== */

.account-tem {
  position: relative;
  overflow: hidden;

  padding: 30px 20px;
  text-align: center;

  background: #fff;
  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s;
}

/* Top Gradient Border */

.account-tem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg,#93296f,#c94fa1);
}

.account-tem:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.account-tem h3 {
  font-weight: 600;
}

.account-tem .icon {
  font-size: 40px;
  margin: 15px 0;
}

/* List */

.account-tem ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.account-tem ul li {
  font-size: 14px;
  color: #666;
  padding: 4px 0;
}


/* ======================================================
   BUTTON STYLE
====================================================== */

.btn-buy {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 22px;

  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;

  transition: .3s;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(147,41,111,0.35);
}


/* ======================================================
   FOOTER (DARK DESIGN)
====================================================== */

.footer-dark {
  position: relative;
  padding: 70px 0 0;

  color: #ddd;
  overflow: hidden;

  background: linear-gradient(135deg,#0f0f16,#1a1a2e,#22223b);
}

/* Particle Background */

#footer-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-wrapper {
  position: relative;
  z-index: 2;
}


/* Footer Columns */

.footer-col {
  padding: 10px 20px;
}


/* Logo */

.footer-logo {
  font-family: "Baumans";
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}


/* Footer Text */

.footer-text {
  color: #bbb;
  line-height: 1.7;
}


/* Section Titles */

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}


/* Footer Links */

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: .3s;
}

.footer-links a:hover {
  color: #c94fa1;
  padding-left: 5px;
}


/* ======================================================
   SOCIAL ICONS
====================================================== */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;
  font-size: 16px;
  color: #fff;

  background: rgba(255,255,255,0.08);
  transition: .3s;
}

.footer-social a:hover {
  background: #c94fa1;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(201,79,161,0.4);
}


/* ======================================================
   CONTACT SECTION
====================================================== */

.footer-contact {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 12px 14px;

  border-radius: 10px;
  background: rgba(255,255,255,0.05);

  transition: .3s;
}

.contact-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(6px);
}

/* Contact Icon */

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;
  font-size: 18px;
  color: #fff;

  background: linear-gradient(135deg,#93296f,#c94fa1);
  box-shadow: 0 4px 10px rgba(201,79,161,0.35);

  flex-shrink: 0;
}

/* Contact Text */

.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.contact-item a {
  color: #ddd;
  text-decoration: none;
}

.contact-item a:hover {
  color: #c94fa1;
}


/* ======================================================
   FOOTER BOTTOM BAR
====================================================== */

.footer-bottom {
  /* margin-top: 40px; */
  padding: 16px 0;

  text-align: center;
  font-size: 14px;

  background: #0c0c12;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 1003;
}

.footer-bottom p{
  color: #fff;
}

.footer-bottom a {
  color: #c94fa1;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}


/* ======================================================
   RESPONSIVE DESIGN
====================================================== */

@media (max-width: 992px) {

  .swiper {
    height: 55vh;
  }

  .footer-col {
    text-align: left;
  }

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

  .contact-item {
    justify-content: left;
  }

  .footer-links {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {

  .swiper {
    height: 45vh;
  }

  .icon-box {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {

  .swiper {
    height: 35vh;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .account-tem {
    padding: 25px 15px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-title {
    font-size: 17px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* ===============================
   SWIPER MOBILE OPTIMIZATION
================================ */

/* Tablet */
@media (max-width: 768px) {

  .swiper {
    height: 45vh;
  }

  .swiper-slide img {
    object-position: center;
  }

}

/* Mobile Phones */
@media (max-width: 576px) {

  .swiper {
    height: 30vh;
  }

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

}







/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-chat{
position:fixed;
bottom:25px;
right:25px;
z-index:999;
}

.whatsapp-chat a{
display:flex;
align-items:center;
justify-content:center;

width:60px;
height:60px;

background:#25D366;
color:#fff;

border-radius:50%;
font-size:32px;

box-shadow:0 8px 20px rgba(0,0,0,0.25);

transition:.3s;
animation:whatsappPulse 2s infinite;
}

.whatsapp-chat a:hover{
transform:scale(1.1);
background:#1ebe5d;
}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.6);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}



/* =========================
FLOATING CONTACT WIDGET
========================= */

.floating-contact{
position:fixed;
right:20px;
bottom:25px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

/* buttons */

.contact-btn{

width:44px;
height:44px;

display:flex;
align-items:center;
justify-content:center;

color:#fff;
font-size:22px;

border-radius:50%;
text-decoration:none;

box-shadow:0 6px 20px rgba(0,0,0,0.25);

transition:.3s;

}

/* Call */

.contact-btn.call{
background:#4f46e5;
}

/* WhatsApp */

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

/* Email */

.contact-btn.email{
background:#ff6b6b;
}

/* hover */

.contact-btn:hover{
transform:scale(1.12);
}

/* pulse animation */

.contact-btn.whatsapp{
animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.7);
}

70%{
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}
}