.hero-slider {
  height: 80vh;
}
.hero-slider .swiper-slide {
  position: relative;
}
.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slider .swiper-slide .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-section .filter-buttons .btn {
  margin: 0 0.5rem;
}
.gallery-section .filter-buttons .btn .filter-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}
.gallery-section #gallery-grid .gallery-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.gallery-section #gallery-grid .gallery-item img:hover {
  transform: scale(1.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333333;
}

.section-dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

.section-light {
  background-color: #ffffff;
  color: #333333;
}

.footer-section {
  background: linear-gradient(45deg, #257366, #df3411);
  color: #ffffff;
}
.footer-section .footer-heading {
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-section .footer-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #F1684C;
}
.footer-section .social-links a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.footer-section .social-links a:hover {
  color: #F1684C;
}
.footer-section .category-links .category-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.footer-section .category-links .category-link i {
  margin-right: 0.5rem;
  color: #F1684C;
}
.footer-section .category-links .category-link:hover {
  color: #F1684C;
  transform: translateX(5px);
}
.footer-section .contact-info p {
  margin-bottom: 1rem;
}
.footer-section .contact-info p i {
  color: #F1684C;
}
.footer-section .newsletter .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
}
.footer-section .newsletter .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer-section .newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer-section .newsletter .btn {
  background: #F1684C;
  border-color: #F1684C;
}
.footer-section .newsletter .btn:hover {
  background: #ed401d;
}
.footer-section .footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer-section .footer-bottom-links a:hover {
  color: #F1684C;
}

@media (max-width: 768px) {
  .footer-section .footer-bottom-links {
    text-align: center;
    margin-top: 1rem;
  }
  .footer-section .footer-bottom-links a {
    margin: 0 0.5rem;
  }
}
.top-bar {
  background: linear-gradient(to right, #37AD99, #F1684C);
  color: #ffffff;
  font-size: 0.9rem;
}
.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-bar a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.top-bar .top-social-links a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.top-bar .top-social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.top-bar .top-auth-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.top-bar .top-auth-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.top-bar .top-auth-links a i {
  font-size: 0.8rem;
}

.main-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .navbar {
  padding: 1rem 0;
}
.main-header .navbar .navbar-brand img {
  transition: all 0.3s ease;
}
.main-header .navbar .navbar-brand img:hover {
  transform: scale(1.05);
}
.main-header .navbar .navbar-nav .nav-item {
  margin: 0 0.5rem;
}
.main-header .navbar .navbar-nav .nav-item .nav-link {
  color: #333333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}
.main-header .navbar .navbar-nav .nav-item .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F1684C;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.main-header .navbar .navbar-nav .nav-item .nav-link:hover, .main-header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #F1684C;
}
.main-header .navbar .navbar-nav .nav-item .nav-link:hover:after, .main-header .navbar .navbar-nav .nav-item .nav-link.active:after {
  width: 80%;
}
.main-header .navbar .navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.main-header .navbar .navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
.main-header .navbar .navbar-nav .dropdown-menu .dropdown-item i {
  color: #F1684C;
}
.main-header .navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: rgba(241, 104, 76, 0.1);
  color: #F1684C;
  transform: translateX(5px);
}
.main-header .navbar .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}
.main-header .navbar .header-buttons .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}
.main-header .navbar .header-buttons .btn.btn-outline-primary {
  border-color: #F1684C;
  color: #F1684C;
}
.main-header .navbar .header-buttons .btn.btn-outline-primary:hover {
  background: #F1684C;
  color: #ffffff;
}
.main-header .navbar .header-buttons .btn.btn-primary {
  background: #F1684C;
  border-color: #F1684C;
}
.main-header .navbar .header-buttons .btn.btn-primary:hover {
  background: #ed401d;
}

@media (max-width: 768px) {
  .top-bar .top-auth-links {
    display: block;
  }
  .main-header .navbar .navbar-nav {
    margin: 1.5rem 0;
  }
  .main-header .navbar .header-buttons {
    display: none !important;
  }
  .main-header .navbar .navbar-nav .mobile-auth-link {
    display: none !important;
  }
}
.gallery-section {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}
.gallery-section .section-header h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #F1684C !important;
}
.gallery-section .filter-buttons-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .gallery-section .filter-buttons-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .gallery-section .filter-buttons-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.gallery-section .filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .gallery-section .filter-buttons {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.25rem;
    min-width: -moz-min-content;
    min-width: min-content;
  }
}
.gallery-section .filter-buttons .filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 50px;
  background: none;
  color: #333333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.gallery-section .filter-buttons .filter-btn .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 104, 76, 0.1);
  border-radius: 50%;
  color: #F1684C;
  transition: all 0.3s ease;
}
.gallery-section .filter-buttons .filter-btn .text {
  display: inline-block !important;
}
.gallery-section .filter-buttons .filter-btn:hover, .gallery-section .filter-buttons .filter-btn.active {
  border-color: #F1684C;
  color: #F1684C;
}
.gallery-section .filter-buttons .filter-btn:hover .icon, .gallery-section .filter-buttons .filter-btn.active .icon {
  background: #F1684C;
  color: #ffffff;
}
.gallery-section .gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.gallery-section .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.gallery-section .gallery-card:hover .hover-overlay {
  opacity: 1;
  visibility: visible;
}
.gallery-section .gallery-card:hover .hover-overlay .hover-content {
  transform: translateY(0);
}
.gallery-section .gallery-card .gallery-image {
  position: relative;
  overflow: hidden;
}
.gallery-section .gallery-card .gallery-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.gallery-section .gallery-card .gallery-image .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(241, 104, 76, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-section .gallery-card .gallery-image .hover-overlay .hover-content {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.gallery-section .gallery-card .gallery-image .hover-overlay .hover-content h5 {
  margin-bottom: 0.5rem;
}
.gallery-section .gallery-card .gallery-image .hover-overlay .hover-content .category {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.gallery-section .gallery-card .card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F1684C;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .filter-buttons-wrapper {
    margin: 0 -15px;
    padding: 0 15px;
  }
  .filter-buttons .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    margin: 0 0.25rem;
  }
  .filter-buttons .filter-btn .icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .filter-buttons .filter-btn:first-child {
    margin-left: 0;
  }
  .filter-buttons .filter-btn:last-child {
    margin-right: 0;
  }
}
.text-primary {
  color: #37AD99;
}

.btn-view-all {
  background: linear-gradient(45deg, #37AD99, #F1684C);
  color: #ffffff;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-view-all:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(241, 104, 76, 0.4);
}
.btn-view-all:hover i {
  transform: translateX(3px);
}
.btn-view-all i {
  transition: transform 0.3s ease;
}

.hero-slider {
  height: 80vh;
  position: relative;
}
.hero-slider .swiper-slide {
  position: relative;
}
.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slider .swiper-slide .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  width: 80%;
  max-width: 800px;
}
.hero-slider .swiper-slide .slide-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-slider .swiper-slide .slide-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #37AD99, #F1684C);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 20px;
  color: #ffffff;
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #F1684C;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .gallery-section .filter-buttons .filter-btn {
    padding: 0.25rem 0.5rem;
  }
  .hero-slider {
    height: auto;
  }
  .hero-slider .swiper-slide .slide-content h1 {
    font-size: 2.5rem;
  }
  .hero-slider .swiper-slide .slide-content p {
    font-size: 1rem;
  }
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    display: none;
  }
  .hero-slider .swiper-button-next::after,
  .hero-slider .swiper-button-prev::after {
    font-size: 16px;
  }
}
.gallery-item {
  transition: all 0.3s ease-in-out;
}
.gallery-item[style*="display: none"] {
  opacity: 0;
  transform: scale(0.8);
}

.filter-btn.active .icon {
  background: #F1684C !important;
  color: #ffffff !important;
}

.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}
.whatsapp-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
  color: white;
}
.whatsapp-sticky:active {
  transform: scale(0.95);
}

@media (max-width: 576px) {
  .whatsapp-sticky {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}
.pricing-section {
  background: linear-gradient(135deg, #FFE5B4, #FFD700);
  position: relative;
  overflow: hidden;
}
.pricing-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 25%;
  height: 100%;
  background: #DC143C;
  transform: skewX(-15deg) translateX(50%);
  z-index: 1;
}
.pricing-section .container {
  position: relative;
  z-index: 2;
}
.pricing-section .price-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 0 50px;
}
.pricing-section .price-title::before, .pricing-section .price-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #333;
}
.pricing-section .price-title::before {
  left: 0;
}
.pricing-section .price-title::after {
  right: 0;
}
.pricing-section .pricing-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}
.pricing-section .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.pricing-section .pricing-card.basic {
  border-color: #3a95da;
}
.pricing-section .pricing-card.basic .plan-title {
  color: #3a95da;
}
.pricing-section .pricing-card.basic .btn-select {
  background: #3a95da;
}
.pricing-section .pricing-card.basic .btn-select:hover {
  background: #247bbd;
}
.pricing-section .pricing-card.standard {
  border-color: #e98f35;
}
.pricing-section .pricing-card.standard .plan-title {
  color: #e98f35;
}
.pricing-section .pricing-card.standard .btn-select {
  background: #e98f35;
}
.pricing-section .pricing-card.standard .btn-select:hover {
  background: #d47617;
}
.pricing-section .pricing-card.premium {
  border-color: #7f4a84;
}
.pricing-section .pricing-card.premium .plan-title {
  color: #7f4a84;
}
.pricing-section .pricing-card.premium .btn-select {
  background: #7f4a84;
}
.pricing-section .pricing-card.premium .btn-select:hover {
  background: #603863;
}
.pricing-section .pricing-card .plan-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-section .pricing-card .price {
  margin-bottom: 10px;
}
.pricing-section .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 5px;
}
.pricing-section .pricing-card .price .amount {
  font-size: 2.5rem;
  font-weight: 700;
}
.pricing-section .pricing-card .price .duration {
  font-size: 1rem;
  color: #666;
  margin-left: 5px;
}
.pricing-section .pricing-card .billing-info {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.pricing-section .pricing-card .invitation-count {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.pricing-section .pricing-card .invitation-count h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.pricing-section .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.pricing-section .pricing-card .features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.pricing-section .pricing-card .features-list li i {
  color: #28a745;
  margin-right: 10px;
}
.pricing-section .pricing-card .features-title {
  font-weight: 600;
  margin-bottom: 15px;
}
.pricing-section .pricing-card .btn-select {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
  border: none;
}
.pricing-section .pricing-card .btn-select:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .pricing-section .price-title {
    font-size: 2rem;
    padding: 0 30px;
  }
  .pricing-section .pricing-card {
    margin-bottom: 30px;
  }
}
.policy-section {
  background: #f8f9fa;
}
.policy-section .policy-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.policy-section .policy-content h1 {
  color: #F1684C;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.policy-section .policy-content h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: #F1684C;
}
.policy-section .policy-content .policy-block {
  margin-bottom: 2rem;
}
.policy-section .policy-content .policy-block h2 {
  color: #333333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.policy-section .policy-content .policy-block p {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.policy-section .policy-content .policy-block ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-section .policy-content .policy-block ul li {
  margin-bottom: 0.5rem;
  color: #333333;
}
.policy-section .policy-content .contact-info {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
}
.policy-section .policy-content .contact-info a {
  color: #F1684C;
  text-decoration: none;
}
.policy-section .policy-content .contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-section .policy-content {
    padding: 1.5rem;
  }
  .policy-section .policy-content h1 {
    font-size: 1.8rem;
  }
  .policy-section .policy-content h2 {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=style.css.map */