/* ====================================
   MODERN HOMEPAGE REDESIGN STYLES
   ==================================== */

/* Global Variables */
:root {
  --primary-color: #e91e63;
  --secondary-color: #ff6b9d;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
  --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section Modern */
.hero-section-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffeef4 0%, #fff5f8 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.min-vh-80 {
  min-height: 80vh;
}

.hero-content-modern {
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  animation: fadeIn 1s ease-out 0.3s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title-modern {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-color);
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out 0.4s both;
}

.gradient-text-modern {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Modern Search Box */
.search-box-modern {
  margin-top: 2rem;
  animation: fadeIn 1s ease-out 0.6s both;
}

.search-wrapper-modern {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 60px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.search-wrapper-modern:hover {
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
}

.search-field-modern {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  position: relative;
}

.field-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  opacity: 0.6;
}

.form-control-modern {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
  width: 100%;
  cursor: pointer;
}

.form-control-modern option {
  padding: 12px;
}

.search-divider {
  width: 1px;
  height: 30px;
  background: #e0e0e0;
}

.btn-search-modern {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-search-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* Popular Searches */
.popular-searches-modern {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeIn 1s ease-out 0.8s both;
}

.popular-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin: 0;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popular-tag {
  padding: 8px 16px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: var(--transition);
}

.popular-tag:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Hero Image Section */
.hero-image-modern {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.hero-decoration {
  position: absolute;
  top: 10%;
  left: -50px;
  z-index: 2;
}

.decoration-icon {
  width: 100px;
  height: 100px;
}

.pulse-animation {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* USP Section Modern */
.usp-section-modern {
  padding: 80px 0;
  background: white;
}

.usp-card-modern {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.usp-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ====================================
   MODERN HOMEPAGE REDESIGN STYLES - PART 2
   ==================================== */

/* USP Section Continued */
.usp-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffeef4 0%, #fff5f8 100%);
  border-radius: 50%;
}

.usp-icon img {
  width: 32px;
  height: 32px;
}

.usp-content {
  flex: 1;
}

.usp-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.usp-text {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Section Headers */
.section-header-modern {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.section-title-modern {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin: 0;
}

/* Venues Section */
.venues-section-modern {
  padding: 80px 0;
  background: var(--light-color);
}

.venue-card-modern {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.venue-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.venue-link {
  text-decoration: none;
  color: inherit;
}

.venue-image-wrapper {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.venue-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.venue-card-modern:hover .venue-image {
  transform: scale(1.1);
}

.venue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.venue-card-modern:hover .venue-overlay {
  opacity: 1;
}

.view-details {
  color: white;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue-info {
  padding: 20px;
}

.venue-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.venue-location {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.venue-location a {
  color: var(--primary-color);
  text-decoration: none;
}

.venue-location a:hover {
  text-decoration: underline;
}

/* Category Section */
.category-section-modern {
  padding: 80px 0;
  background: white;
}

.category-card-modern {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  padding: 20px;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.category-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

.category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card-modern:hover .category-image {
  transform: scale(1.1);
}

.category-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

/* Services Section */
.services-section-modern {
  padding: 80px 0;
  background: var(--light-color);
}

.service-card-modern {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.service-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.service-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.price-currency {
  font-size: 24px;
}

.btn-service-contact {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-service-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* Featured Section */
.featured-section-modern {
  padding: 80px 0;
  background: white;
}

.featured-card-modern {
  display: block;
  text-decoration: none;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.featured-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-image-wrapper {
  position: relative;
  padding-top: 65%;
  overflow: hidden;
}

.featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.featured-card-modern:hover .featured-image {
  transform: scale(1.1);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-content {
  padding: 24px;
}

.featured-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.featured-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.featured-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}

.price-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.featured-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #ffa726;
}

/* Real Wedding Section */
.realwedding-section-modern {
  padding: 80px 0;
  background: var(--light-color);
}

.wedding-card-modern {
  display: block;
  text-decoration: none;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.wedding-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.wedding-image-wrapper {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.wedding-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.wedding-card-modern:hover .wedding-image {
  transform: scale(1.1);
}

.wedding-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.wedding-icon img {
  width: 32px;
  height: 32px;
}

.wedding-content {
  padding: 24px;
  text-align: center;
}

.wedding-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.wedding-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
}

.wedding-date {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Gallery Section */
.gallery-section-modern {
  padding: 80px 0;
  background: white;
}

.gallery-card-modern {
  display: block;
  text-decoration: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-image-wrapper {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card-modern:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card-modern:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* Blog Section */
.blog-section-modern {
  padding: 80px 0;
  background: var(--light-color);
}

.blog-card-modern {
  display: block;
  text-decoration: none;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.blog-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.blog-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card-modern:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: 24px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

.blog-read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Testimonials Section */
.testimonials-section-modern {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.testimonial-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.9;
}

.testimonial-card-modern {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.testimonial-quote {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.testimonial-quote i {
  color: white;
  font-size: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.author-location {
  font-size: 14px;
  color: #999;
  margin: 0;
}

/* FAQ Section */
.faq-section-modern {
  padding: 80px 0;
  background: white;
}

.accordion-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item-modern {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header-modern {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  transition: var(--transition);
}

.accordion-header-modern:hover {
  background: var(--light-color);
}

.accordion-header-modern.active {
  background: var(--gradient-primary);
  color: white;
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-header-modern.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content-modern {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-content-modern.show {
  padding: 0 24px 24px;
  max-height: 500px;
}

/* Primary Button Modern */
.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
  color: white;
}

/* Swiper Modern Customization */
.swiper-pagination-modern {
  margin-top: 40px !important;
  position: relative !important;
}

.swiper-pagination-modern .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
}

.swiper-pagination-modern .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

.swiper-button-next-modern,
.swiper-button-prev-modern {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.swiper-button-next-modern:hover,
.swiper-button-prev-modern:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.swiper-button-next-modern::after,
.swiper-button-prev-modern::after {
  font-size: 20px;
  color: var(--dark-color);
}

.swiper-button-next-modern:hover::after,
.swiper-button-prev-modern:hover::after {
  color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title-modern {
    font-size: 2.5rem;
  }

  .hero-image-modern {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 40px;
  }

  .hero-bg-image {
    clip-path: none;
  }

  .section-title-modern {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title-modern {
    font-size: 2rem;
  }

  .search-wrapper-modern {
    flex-direction: column;
    border-radius: 20px;
  }

  .search-divider {
    display: none;
  }

  .search-field-modern {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .btn-search-modern {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .section-title-modern {
    font-size: 1.75rem;
  }
  
}
