 /* General Styling */
 body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9fb;
    overflow-x: hidden;
    margin: 0;
  }

  .hero {
    position: relative;
    height: 100vh;
    margin-top:100px; /* Adjust based on your navbar height */
    background: linear-gradient(135deg, #1a0933 0%, #4b2e83 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
  }
  
  

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top:12px;
    background: url('../images/banner.png') no-repeat center/cover;
    opacity: 0.3;
   
  }
  

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.9;
  }

  .hero-image:hover {
    transform: scale(1.1) rotate(2deg);
    opacity: 1;
  }

  .text-gradient {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .btn-hero {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #f9d423, #ff4e50);
  }

  .btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
  }

  .btn-hero:hover::before {
    left: 100%;
  }

  /* Card Section */
  .card-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #fff 0%, #f9f9fb 100%);
    position: relative;
  }

  .service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f6f6fa 100%);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    backdrop-filter: blur(15px);
  }

  .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .card-img-top {
    object-fit: cover;
    height: 250px;
    transition: transform 0.4s ease;
  }

  .service-card:hover .card-img-top {
    transform: scale(1.1);
  }

  .btn-service {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-service:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  /* Testimonials Section */
  .testimonials {
    background: linear-gradient(135deg, #e9ecef 0%, #d1d9e6 100%);
    padding: 6rem 2rem;
    position: relative;
  }

  .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a0933;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff4e50, #f9d423);
    border-radius: 3px;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
  }

  .testimonial-card p {
    font-style: italic;
    color: #2d3748;
    font-size: 1.2rem;
  }

  .testimonial-card h6 {
    color: #1a0933;
    font-weight: 700;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 8%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #ff4e50;
    border-radius: 50%;
    padding: 10px;
  }

  /* Floating Particles Animation */
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite linear;
  }

  @keyframes float {
    0% {
      transform: translateY(100vh) scale(0.5);
      opacity: 0.8;
    }
    100% {
      transform: translateY(-100vh) scale(1.5);
      opacity: 0;
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 3rem;
    }
    .hero-image {
      max-width: 400px;
    }
  }

  @media (max-width: 768px) {
    .hero {
      height: auto;
      padding: 4rem 2rem;
    }
    .hero-image {
      max-width: 300px;
      margin-bottom: 2rem;
    }
    .card-section,
    .testimonials {
      padding: 4rem 1rem;
    }
    .section-title {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 576px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    .btn-hero {
      padding: 12px 25px;
      font-size: 0.9rem;
    }
    .hero-image {
      max-width: 250px;
    }
    .section-title {
      font-size: 2rem;
    }
  }

    /* Navbar Styling */
    .navbar {
      background-color: #ffffff !important; /* Solid white background */
      padding: 1rem 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: background 0.3s ease;
      backdrop-filter: blur(10px);
    }
    /* Change the color of the hamburger icon */
    .navbar-toggler-icon {
      background-color: #9c2d6a;  /* Set the color to match your brand or theme */
    }

    /* Nav link styling */
    .navbar-nav .nav-link {
      color: #4b2e83 !important;  /* Custom purple/navy tone */
      font-weight: 500;
      margin-left: 1rem;
      transition: color 0.3s;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #1a0933 !important;  /* Darker on hover */
    }
    .navbar .navbar-brand span {
      font-family: 'Poppins', sans-serif;
      color: #9c2d6a !important; /* Brand purple */
    }
    
   /* Media query to target mobile devices */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    color: white !important; /* Change color to white */
  }

  .navbar-nav .nav-link:hover {
    color: #f8f9fa !important; /* Light shade for hover effect */
  }

  /* Ensure the active link is also white */
  .navbar-nav .nav-link.active {
    color: #f8f9fa !important; /* Active link color */
  }

  /* Change the hamburger icon color to white */
  
}

    
    .navbar.fixed-top {
      z-index: 1030;
    }
  
    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }
  
    .brand-text {
      background: linear-gradient(45deg, #ff4e50, #f9d423);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      transition: transform 0.3s ease;
    }
  
    .navbar-brand:hover .brand-text {
      transform: translateY(-2px);
    }
  
    .navbar-toggler {
      border: none;
      padding: 0.5rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
    }
  
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
  
    .navbar-nav .nav-link {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 500;
      padding: 0.5rem 1.2rem;
      position: relative;
      transition: color 0.3s ease, transform 0.3s ease;
    }
  
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #ff4e50, #f9d423);
      transition: width 0.3s ease, left 0.3s ease;
    }
  
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 100%;
      left: 0;
    }
  
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #f9d423;
      transform: translateY(-2px);
    }
  
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .navbar-nav {
        background: rgba(26, 9, 51, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
      }
  
      .navbar-nav .nav-link {
        text-align: center;
        padding: 0.8rem;
      }
    }
  
    @media (max-width: 576px) {
      .navbar-brand {
        font-size: 1.5rem;
      }
  
      .navbar-nav .nav-link {
        font-size: 1rem;
      }
      .navbar-nav .nav-link:hover::after,
      .navbar-nav .nav-link.active::after {
        width: 40%; /* or 60% depending on your design */
        left: 30%;  /* center the line */
      }
    }
    
  /* About Section Styling */
  .about-section {
   
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
  }

  .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff4e50, #f9d423);
    border-radius: 3px;
  }

  .about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
  }

  .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .text-gradient {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
  }

  .about-story {
    background: linear-gradient(135deg, #ffffff 0%, #f6f6fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }

  .about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center/cover;
    opacity: 0.05;
    z-index: 0;
  }

  .about-story h2,
  .about-story p,
  .about-story a {
    position: relative;
    z-index: 1;
  }

  .btn-primary {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }

  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #f9d423, #ff4e50);
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .section-title {
      font-size: 2.8rem;
    }

    .about-card {
      padding: 2rem;
    }

    .fs-5 {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 768px) {
    .about-section {
      padding: 4rem 1rem;
    }

    .section-title {
      font-size: 2.3rem;
    }

    .about-story {
      padding: 2rem;
    }

    .fs-4 {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 576px) {
    .section-title {
      font-size: 2rem;
    }

    .btn-primary {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }



/* Booking Section Styling */
.booking-section {
  background: linear-gradient(180deg, #f9f9fb 0%, #e9ecef 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a0933;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #ff4e50, #f9d423);
  border-radius: 3px;
}

.calendar-card, .booking-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
}

.calendar-card:hover, .booking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.text-gradient {
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.form-control, .form-select {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #ff4e50;
  box-shadow: 0 0 8px rgba(255, 78, 80, 0.3);
  outline: none;
}

.btn-primary {
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #f9d423, #ff4e50);
}

/* FullCalendar Styling */
#calendar {
  max-width: 100%;
  margin: 0 auto;
}

.fc {
  font-family: 'Poppins', sans-serif;
}

.fc-daygrid-day-number {
  color: #1a0933;
  font-weight: 600;
}

.fc-daygrid-day.fc-day-disabled {
  background: #f0f0f0;
  opacity: 0.6;
}

.fc-daygrid-day:hover {
  background: rgba(255, 78, 80, 0.1);
  cursor: pointer;
}

.fc-daygrid-day.fc-day-today {
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  color: #fff;
}

.fc-button {
  background: #ff4e50;
  border: none;
  border-radius: 10px;
  padding: 8px 15px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
}

.fc-button:hover {
  background: #f9d423;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.8rem;
  }

  .calendar-card, .booking-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .calendar-card, .booking-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Contact Styling */

.contact-section {
   
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.circle-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  left: -100px;
  animation: float 15s infinite ease-in-out;
}

.circle-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -50px;
  right: -50px;
  animation: float 12s infinite ease-in-out reverse;
}

.circle-shape-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  top: 40%;
  right: 20%;
  animation: float 18s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(20px, 20px);
  }
}

h1 {
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.highlight-text {
  color: #ffc107;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #a23c74 0%, #9c2d6a 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-card:hover::before {
  opacity: 1;
}

.icon-wrapper {
  background: linear-gradient(to right, #9c2d6a 0%, #9c2d6a 100%) ;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 28px;
  transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
  transform: rotate(15deg) scale(1.1);
}

.btn-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: white;
  transform: translateX(5px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  transition: all 0.4s ease;
}

.glass-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.glass-card .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.glass-card .form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.15);
}

.glass-card label {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2.5rem;
}

.glass-card .form-floating>.form-control:focus~label,
.glass-card .form-floating>.form-control:not(:placeholder-shown)~label {
  transform: scale(0.85) translateY(-1rem) translateX(1rem);
  color: rgba(255, 255, 255, 0.6);
}

.btn-gradient {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-gradient:hover::before {
  opacity: 1;
}

.social-links {
  margin-top: 30px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 20px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.1);
  color:#9c2d6a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section {
      padding-top: 60px;
  }
  
  .glass-card {
      padding: 2rem;
  }
  
  .info-card {
      margin-bottom: 20px;
  }
}

/* Footer Styling */
/* Footer Styles */
.site-footer {
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 4rem 0 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background:#9c2d6a;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: #9c2d6a;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-tagline {
  color: #a1a1a1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}


.social-icon:hover {
  background: linear-gradient(90deg, #ff4e50, #f9d423);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-column {
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff4e50, #f9d423);
}

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

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu a {
  color: #a1a1a1;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-menu a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background:linear-gradient(90deg, #ff4e50, #f9d423);
  transition: width 0.3s ease;
}

.footer-menu a:hover::before {
  width: 100%;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #a1a1a1;
  line-height: 1.5;
}

.footer-contact i {
  margin-right: 0.8rem;
  color: #d4af37;
  font-size: 1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

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

.footer-legal p {
  margin: 0;
  color: #a1a1a1;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #a1a1a1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #d4af37;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-payment span {
  color: #a1a1a1;
  font-size: 0.9rem;
}

.payment-methods {
  display: flex;
  gap: 0.8rem;
}

.payment-methods i {
  font-size: 1.8rem;
  color: #a1a1a1;
  transition: all 0.3s ease;
}

.payment-methods i:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* Animations */
.site-footer {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    padding: 0 1.5rem;
  }
}

