@charset "UTF-8";
/* Fonts Stylings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: #F8F5E4;
}

.site-header {
  background-color: #1C1C1C;
  border-bottom: 0.5px solid #D4AF37;
  padding: 0.5rem 2rem;
}
.site-header .container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo img {
  height: 110px;
  width: auto;
}
.site-header .nav-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.site-header .nav-menu ul li a {
  color: #D4AF37;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.site-header .nav-menu ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #D4AF37;
}
.site-header .nav-menu ul li a:hover {
  color: #E2C256;
}
.site-header .nav-menu ul li.has-submenu {
  position: relative;
}
.site-header .nav-menu ul li.has-submenu > a .arrow {
  font-size: 0.7em;
  margin-left: 5px;
}
.site-header .nav-menu ul li .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #D4AF37;
  border: 1px solid #3A2C23;
  border-radius: 4px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 1000;
}
.site-header .nav-menu ul li .submenu li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 15px;
  font-weight: 500;
  color: #3A2C23;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header .nav-menu ul li .submenu li a:hover {
  background: #3A2C23;
  color: #D4AF37;
}
.site-header .nav-menu ul li.has-submenu:hover > .submenu {
  display: block;
}
.site-header .call-btn {
  background-color: #D4AF37;
  color: #111;
  padding: 0.5rem 1.2rem;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.site-header .call-btn:hover {
  background-color: #E2C256;
}
.site-header .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.site-header .hamburger span {
  height: 3px;
  width: 25px;
  background: #D4AF37;
  margin: 4px 0;
  border-radius: 2px;
}

.hero-banner {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.hero-banner {
  /* Banner Content */
}
.hero-banner .banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #D4AF37;
  width: 100%;
  margin-left: 50px;
  z-index: 999;
}
.hero-banner .banner-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}
.hero-banner .banner-content h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-banner .banner-content p {
  font-size: 18px;
  color: #D4AF37;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1.5rem;
}
.hero-banner .banner-content .banner-btn {
  background-color: #D4AF37;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hero-banner .banner-content .banner-btn:hover {
  background-color: #E2C256;
}
.hero-banner .bride-banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  color: #D4AF37;
  margin-left: 50px;
}
.hero-banner .bride-banner-content h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #D4AF37;
}
.hero-banner .bride-banner-content p {
  font-size: 18px;
  color: #D4AF37;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-banner .bride-banner-content .banner-btn {
  background-color: #D4AF37;
  color: #3A2C23;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hero-banner .bride-banner-content .banner-btn:hover {
  background-color: #E2C256;
}

.site-footer {
  background-color: #1C1C1C;
  padding: 2rem 1.5rem;
  color: #D4AF37;
  font-family: "Poppins", sans-serif;
}
.site-footer .container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer .footer-col {
  flex: 1;
  min-width: 200px;
}
.site-footer .footer-col h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer .footer-col p {
  color: #E2C256;
}
.site-footer .footer-col p a {
  color: #E2C256;
  text-decoration: none;
}
.site-footer .footer-col p a:hover {
  color: rgb(233.4696969697, 209.7121212121, 129.5303030303);
  text-decoration: underline;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 14px;
  color: #E2C256;
}
.site-footer .footer-col ul a {
  color: #E2C256;
}
.site-footer .copyright {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #E2C256;
  margin-top: 1rem;
}
.site-footer .copyright a {
  color: #E2C256;
}
.site-footer .about {
  flex: 1.5;
}
.site-footer .about .logoImg {
  height: 80px;
  margin-bottom: 1rem;
  width: auto;
}
.site-footer .about p {
  font-size: 18px;
  margin-bottom: 1rem;
}
.site-footer .about .social-icons a {
  color: #D4AF37;
  font-size: 1.5rem;
  margin-right: 1rem;
  display: inline-block;
}
.site-footer .about .social-icons a:hover {
  color: #E2C256;
}
.site-footer iframe {
  max-width: 100%;
  border: none;
}

.main-section {
  background-color: #F8F5E4;
  padding: 2rem;
}

.about-section .container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-bottom: 40px;
}
.about-section .about-text {
  flex: 1;
  min-width: 300px;
}
.about-section .about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
}
.about-section .about-text p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #3A2C23;
  line-height: 1.7;
}
.about-section .about-image {
  flex: 1;
  min-width: 300px;
}
.about-section .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.performance-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.performance-section .container h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
}
.performance-section .container .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.performance-section .container .stat-card {
  background-color: #3A2C23;
  padding: 2rem;
  border-radius: 1rem;
  color: #D4AF37;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.performance-section .container .stat-card h3 {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #E2C256;
}
.performance-section .container .stat-card p {
  margin-top: 0.5rem;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  color: #E2C256;
}
.performance-section .container .stat-card .icon {
  width: 70px;
  height: 70px;
  background-color: #D4AF37;
  color: #F8F5E4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px auto;
}

.service-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.service-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
}
.service-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-section .service-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 0.2rem solid #3A2C23;
}
.service-section .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-section .service-card h3 {
  background: #E2C256;
  color: #3A2C23;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.service-section .service-card .scard {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.service-section .service-card p {
  margin: 8px 0;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #3A2C23;
  font-weight: 500;
  line-height: 1.6;
}
.service-section .service-card .highlight {
  color: #3A2C23;
  font-weight: bold;
  background: #E2C256;
  padding: 2px 5px;
  border-radius: 4px;
}
.service-section .service-card .service-btn {
  margin-top: auto;
  align-self: center;
  background-color: #D4AF37;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}
.service-section .service-card .service-btn:hover {
  background-color: #E2C256;
}

.testimonial-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.testimonial-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.testimonial-section > .container > p {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.testimonial-rating {
  margin-bottom: 20px;
}
.testimonial-rating i {
  color: #FFD700;
  font-size: 18px;
  margin-right: 3px;
}

.testimonial-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.testimonial-author strong {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 5px;
}
.testimonial-author span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #D4AF37;
  display: flex;
  align-items: center;
}
.testimonial-author span::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
  font-size: 12px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}
.testimonial-grid video {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.testimonial-grid video:hover {
  transform: scale(1.02);
}

.portfolio-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.portfolio-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
}
.portfolio-section .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-section .portfolio-grid .portfolio-item {
  overflow: hidden;
  border-radius: 8px;
}
.portfolio-section .portfolio-grid .portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.portfolio-section .portfolio-grid .portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-section .btn-container {
  text-align: center;
  margin-top: 30px;
}
.portfolio-section .btn-container .view-gallery-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  background: transparent;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.portfolio-section .btn-container .view-gallery-btn:hover {
  background: #D4AF37;
  color: #3A2C23;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.enquiry-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.enquiry-section .enquiry-form {
  flex: 1;
  min-width: 300px;
}
.enquiry-section .enquiry-form h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
}
.enquiry-section .enquiry-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.enquiry-section .enquiry-form form input {
  width: 100%;
  padding: 12px;
  border: 2px solid #3A2C23;
  border-radius: 4px;
  background-color: transparent;
  font-size: 1rem;
  outline: none;
  color: #3A2C23;
  font-family: "Poppins", sans-serif;
}
.enquiry-section .enquiry-form form input:focus {
  border-color: #D4AF37;
}
.enquiry-section .enquiry-form form input::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #3A2C23;
}
.enquiry-section .enquiry-form form input[type=date] {
  cursor: pointer;
  color-scheme: light;
}
.enquiry-section .enquiry-form form button {
  background-color: #D4AF37;
  color: #3A2C23;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.enquiry-section .enquiry-form form button:hover {
  background-color: #E2C256;
}
.enquiry-section .enquiry-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding-top: 20px;
}
.enquiry-section .enquiry-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}

.gallery-section .container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.gallery-section .container p {
  text-align: center;
  color: #3A2C23;
  font-size: 20px;
}
.gallery-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  font-weight: 700;
  text-align: center;
}
.gallery-section .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.gallery-section .gallery-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.gallery-section .gallery-item {
  background-color: #3A2C23;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
  width: 580px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-section .gallery-item img {
  display: block;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-section .gallery-item h2 {
  margin: 15px;
  color: #D4AF37;
  font-weight: 500;
  font-size: 32px;
  font-family: "Playfair Display", serif;
  transition: color 0.3s ease;
}
.gallery-section .gallery-item:hover, .gallery-section .gallery-item:active {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.gallery-section .gallery-item:hover img, .gallery-section .gallery-item:active img {
  transform: scale(1.05);
}
.gallery-section .gallery-item:hover h2, .gallery-section .gallery-item:active h2 {
  color: rgb(221.024691358, 191.7901234568, 96.975308642);
}

.galleryview-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.galleryview-section .container h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.galleryview-section .container p {
  padding-top: 20px;
  padding-bottom: 20px;
}
.galleryview-section .galleryContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.galleryview-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  aspect-ratio: 3/4;
}
.galleryview-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.galleryview-section .gallery-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

.gallery-page-section {
  padding: 60px 0;
  background: #F8F5E4;
}
.gallery-page-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1C1C1C;
  margin: 0;
}

.gallery-subtitle {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #C73F6D;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gallery-filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  position: relative;
}

.filter-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.filter-arrow i {
  font-size: 14px;
  color: #333;
  transition: color 0.3s ease;
}
.filter-arrow:hover {
  background: #C73F6D;
  border-color: #C73F6D;
  color: #FFFFFF;
}
.filter-arrow:hover i {
  color: #FFFFFF;
}

.gallery-filter-bar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
  max-width: 900px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: #C73F6D;
  color: #C73F6D;
}
.filter-btn.active {
  background: #C73F6D;
  border-color: #C73F6D;
  color: #FFFFFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-grid-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.gallery-grid-item:hover img {
  transform: scale(1.08);
}
.gallery-grid-item.hidden {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.gallery-lightbox.active {
  display: flex;
}
.gallery-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}
.gallery-lightbox .close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #FFFFFF;
  cursor: pointer;
  transition: color 0.3s ease;
}
.gallery-lightbox .close-lightbox:hover {
  color: #C73F6D;
}
.gallery-lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 15px;
  transition: color 0.3s ease;
}
.gallery-lightbox .lightbox-nav:hover {
  color: #C73F6D;
}
.gallery-lightbox .lightbox-prev {
  left: 20px;
}
.gallery-lightbox .lightbox-next {
  right: 20px;
}

.course-section .container {
  max-width: 100%;
  margin: 0 auto;
}
.course-section .container h1 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}
.course-section .container .course-card {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.course-section .container .course-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}
.course-section .container .course-image {
  flex: 1 1 50%;
}
.course-section .container .course-content {
  flex: 1 1 50%;
  padding: 20px 30px;
}
.course-section .container .course-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3A2C23;
}
.course-section .container .course-content p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #3A2C23;
  margin-bottom: 20px;
}
.course-section .container .course-buttons {
  display: flex;
  gap: 15px;
}
.course-section .container .btn-primary {
  background-color: #D4AF37;
  color: #3A2C23;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}
.course-section .container .btn-outline {
  background: transparent;
  border: 2px solid #D4AF37;
  color: #3A2C23;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.course-banner {
  position: relative;
  overflow: hidden;
}
.course-banner img {
  width: 100%;
  height: 80%;
}
.course-banner .course-banner-content {
  position: absolute;
  top: 30%;
  left: 2%;
  transform: translateY(-50%);
  color: #D4AF37;
  font-size: 32px;
}

.courseview-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px;
}
.courseview-section .course-details {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 40px;
}
.courseview-section .course-info {
  flex: 1;
  max-width: 60%;
}
.courseview-section .course-info h3 {
  font-size: 18px;
  color: #D4AF37;
  font-family: "Poppins", sans-serif;
  line-height: 2;
}
.courseview-section .course-info h3 span {
  color: #3A2C23;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.courseview-section .course-info ul {
  list-style: disc;
  padding-left: 20px;
  font-family: "Poppins", sans-serif;
  line-height: 2;
}
.courseview-section .course-info .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: #D4AF37;
  color: #3A2C23;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
}
.courseview-section .course-info .btn-primary:hover {
  background: #E2C256;
}
.courseview-section .course-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.courseview-section .course-image img {
  max-width: 100%;
  border-radius: 8px;
}

.contact-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.contact-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}
.contact-section p {
  text-align: center;
  color: #3A2C23;
  font-size: 20px;
  margin-bottom: 0.5rem;
}
.contact-section .contact {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 30px;
}
.contact-section .contact-card {
  background: #3A2C23;
  color: #D4AF37;
  padding: 30px 20px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.contact-section .contact-card .icon {
  width: 70px;
  height: 70px;
  background-color: #D4AF37;
  color: #F8F5E4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px auto;
}
.contact-section .contact-card h3 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}
.contact-section .contact-card p {
  margin: 0;
  font-size: 14px;
  color: #E2C256;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
}

.aboutus-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.aboutus-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  font-weight: 700;
  text-align: center;
}
.aboutus-section .aboutus-card {
  display: flex;
}
.aboutus-section .aboutus-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 15px;
}
.aboutus-section .aboutus-image {
  flex: 1 1 50%;
}
.aboutus-section .aboutus-content {
  flex: 1 1 50%;
  padding: 20px 30px;
}
.aboutus-section .aboutus-content h2 {
  color: #3A2C23;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}
.aboutus-section .aboutus-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #E2C256;
  text-align: start;
}
.aboutus-section span {
  font-size: 18px;
  color: #3A2C23;
}
.aboutus-section .aboutus-content p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #3A2C23;
  margin-bottom: 20px;
  text-align: start;
}
.aboutus-section .aboutus-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #D4AF37;
  margin-bottom: 20px;
  text-align: start;
}
.aboutus-section .aboutus-content h4 span {
  color: #3A2C23;
  font-size: 18px;
}
.aboutus-section .image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.aboutus-section .image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #D4AF37;
}

.whychoose-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.whychoose-section .container .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 30px;
}
.whychoose-section .container .stat-card {
  background-color: #3A2C23;
  padding: 2rem;
  border-radius: 1rem;
  color: #D4AF37;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.whychoose-section .container .stat-card h3 {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #E2C256;
}
.whychoose-section .container .stat-card p {
  margin-top: 0.5rem;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  color: #E2C256;
}
.whychoose-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}
.whychoose-section p {
  color: #3A2C23;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

.bridal-page {
  background-color: #F8F5E4;
  color: #3A2C23;
  font-family: "Playfair Display", serif;
}
.bridal-page .section-padding {
  padding: 80px 0;
}
.bridal-page .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 1.5rem;
}
.bridal-page p {
  color: #3A2C23;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
}
.bridal-page .makeup-categories .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.bridal-page .makeup-categories .category.reverse {
  flex-direction: row-reverse;
}
.bridal-page .makeup-categories .category .category-text {
  flex: 1;
  padding: 20px;
}
.bridal-page .makeup-categories .category .category-text h3 {
  font-size: 1.6rem;
  color: #D4AF37;
  margin-bottom: 1rem;
}
.bridal-page .makeup-categories .category .category-text p {
  color: #000000;
  text-align: left;
}
.bridal-page .makeup-categories .category .category-text ul {
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
}
.bridal-page .makeup-categories .category .category-text ul li {
  position: relative;
  padding-left: 25px;
  color: #000000;
  margin-bottom: 8px;
}
.bridal-page .makeup-categories .category .category-text ul li::before {
  content: "✔";
  color: #D4AF37;
  position: absolute;
  left: 0;
}
.bridal-page .makeup-categories .category .category-img {
  flex: 1;
  text-align: center;
}
.bridal-page .makeup-categories .category .category-img img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease;
}
.bridal-page .makeup-categories .category .category-img img:hover {
  transform: scale(1.03);
}
.bridal-page .cta-section {
  background: #3A2C23;
  padding: 100px 20px;
  border-top: 1px solid #E2C256;
}
.bridal-page .cta-section h2 {
  color: #D4AF37;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.bridal-page .cta-section p {
  color: #E2C256;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.bridal-page .cta-section .btn-primary {
  background: #D4AF37;
  color: #3A2C23;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.bridal-page .cta-section .btn-primary:hover {
  background: #fff;
  color: #D4AF37;
}

#goTopBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 25px;
  z-index: 999;
  background: #E2C256;
  color: #fff;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-features {
  margin-top: 2.5rem;
  padding: 3rem 2rem;
  background: #FFFFFF;
  border-radius: 16px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}
.why-choose-features h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.why-choose-features h3:first-child {
  margin-top: 0;
}
.why-choose-features h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #E2C256;
  border-radius: 2px;
}
.why-choose-features p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  text-align: left;
}

.contact-info-section {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 2.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}
.contact-info-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-info-section > p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-info-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #3A2C23;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}
.contact-info-section h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #D4AF37;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.contact-info-section h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 3px solid #D4AF37;
}
.contact-info-section h4 + p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.course-section .course-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2.5rem;
}
.course-section .course-intro p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.course-section .course-why-section {
  padding: 3rem 2rem;
  margin-top: 1rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
  border-top: 4px solid #D4AF37;
}
.course-section .course-why-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 1rem;
}
.course-section .course-why-section > p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.course-section .course-why-section ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}
.course-section .course-why-section ul li {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.course-section .course-why-section ul li:last-child {
  border-bottom: none;
}
.course-section .course-why-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

.gallery-about-section {
  padding: 3rem 0;
  background: #FFFFFF;
  margin-top: 2rem;
  border-top: 3px solid #D4AF37;
  border-bottom: 3px solid #D4AF37;
}
.gallery-about-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery-about-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.gallery-about-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #E2C256;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.gallery-about-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #3A2C23;
  text-align: center;
  margin: 2rem 0 0.75rem;
}
.gallery-about-section p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 1rem;
}

.gallery-header p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 1rem;
}

.contact-section > p,
.contact-section > h1 ~ p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .why-choose-features {
    padding: 2rem 1.5rem;
  }
  .contact-info-section {
    margin: 2rem 1.5rem 0;
    padding: 2rem 1.5rem;
  }
  .gallery-about-section {
    padding: 2rem 0;
  }
}
@media (max-width: 768px) {
  .why-choose-features {
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
    border-radius: 12px;
  }
  .why-choose-features h3 {
    font-size: 20px;
    margin-top: 1.5rem;
  }
  .why-choose-features p {
    font-size: 14px;
  }
  .contact-info-section {
    margin: 1.5rem 1rem 0;
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }
  .contact-info-section h2 {
    font-size: 24px;
  }
  .contact-info-section h3 {
    font-size: 20px;
  }
  .contact-info-section h4 {
    font-size: 16px;
  }
  .contact-info-section h4 + p {
    font-size: 14px;
  }
  .contact-info-section > p {
    font-size: 14px;
  }
  .course-section .course-intro p {
    font-size: 14px;
    margin-bottom: 0.75rem;
  }
  .course-section .course-why-section {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }
  .course-section .course-why-section h2 {
    font-size: 24px;
  }
  .course-section .course-why-section > p {
    font-size: 14px;
  }
  .course-section .course-why-section ul li {
    font-size: 14px;
    padding: 0.4rem 0 0.4rem 1.5rem;
  }
  .gallery-about-section {
    padding: 2rem 0;
    margin-top: 1.5rem;
  }
  .gallery-about-section h2 {
    font-size: 24px;
  }
  .gallery-about-section h3 {
    font-size: 20px;
  }
  .gallery-about-section p {
    font-size: 14px;
    padding: 0 1rem;
  }
  .gallery-header p {
    font-size: 14px;
    padding: 0 0.5rem;
  }
}
.popup-title {
  font-size: 20px;
  font-weight: 700;
  color: #E2C256;
  text-align: center;
  margin: 0 0 10px 0;
  width: 100%;
  display: block;
}

#goTopBtn:hover {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  transform: translateY(-3px);
}

.count {
  transition: all 0.3s ease-out;
}

.faq-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.faq-section .container h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
}
.faq-section .container .faq-item {
  background: #FFFFFF;
  border: 1px solid #E2C256;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
  overflow: hidden;
}
.faq-section .container .faq-question {
  width: 100%;
  padding: 18px;
  text-align: left;
  background: linear-gradient(to right, #fff, #fff8e6);
  border: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #3A2C23;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-section .container .faq-icon {
  font-size: 20px;
  color: #E2C256;
  transition: transform 0.3s ease;
}
.faq-section .container .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}
.faq-section .container .faq-answer p {
  padding: 15px 0;
  font-size: 14px;
  color: #3A2C23;
  line-height: 1.6;
}
.faq-section .container {
  /* When active */
}
.faq-section .container .faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-section .container .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.traditions-section {
  padding-bottom: 40px;
}
.traditions-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.traditions-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.traditions-section p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  line-height: 1.8;
  text-align: justify;
}

.areas-section {
  padding: 70px 0;
  background: #F8F5E4;
}
.areas-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.areas-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}
.areas-section > .container > p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3A2C23;
  text-align: center;
  margin-bottom: 2rem;
}

.areas-list {
  margin-top: 30px;
}
.areas-list .areas-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.areas-list .areas-grid li {
  background: #FFFFFF;
  padding: 18px 20px;
  border-radius: 16px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1C1C1C;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.areas-list .areas-grid li i {
  color: #1C1C1C;
  font-size: 14px;
}
.areas-list .areas-grid li:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.areas-section::after {
  content: "";
  display: block;
  width: 85%;
  height: 3px;
  background: #D4AF37;
  margin: 50px auto 0 auto;
}

.also-serve-section {
  padding-bottom: 40px;
}
.also-serve-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.also-serve-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #E2C256;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.also-serve-section > .container > p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #000000;
  margin-bottom: 2rem;
}
.also-serve-section .nearby-areas {
  padding: 24px 16px;
  text-align: center;
}
.also-serve-section .nearby-areas h3,
.also-serve-section .nearby-areas .nearby-title {
  color: #E2C256;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}
.also-serve-section .nearby-areas .area-list,
.also-serve-section .nearby-areas .nearby-areas-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.also-serve-section .nearby-areas .nearby-areas-list li,
.also-serve-section .nearby-areas .area-pill {
  background-color: #E2C256;
  color: #000000;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: default;
  white-space: nowrap;
}

.other-cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-bottom: 40px;
}
.other-cities-grid span {
  color: #000000;
}

.nearby-areas {
  padding: 24px 16px;
  text-align: center;
}
.nearby-areas h3,
.nearby-areas .nearby-title {
  color: #E2C256;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}
.nearby-areas .area-list,
.nearby-areas .nearby-areas-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nearby-areas .nearby-areas-list li,
.nearby-areas .area-pill {
  background-color: #E2C256;
  color: #000000;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: default;
  white-space: nowrap;
}

.city-link {
  color: #000000;
  display: block;
  background: #FFFFFF;
  padding: 25px 20px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.city-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: #D4AF37;
}
.city-link:hover .city-name {
  color: #D4AF37;
}

.city-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s ease;
}

.city-service {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #3A2C23;
  display: block;
}

.service-cities-bar {
  background: #3A2C23;
  padding: 15px 0;
}
.service-cities-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.service-cities-bar span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #D4AF37;
  font-weight: 500;
}
.service-cities-bar a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.service-cities-bar a:hover {
  background: #D4AF37;
  color: #1C1C1C;
}

.locations-list h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #D4AF37;
  margin-bottom: 15px;
  font-weight: 600;
}
.locations-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.locations-list li a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
.locations-list li a::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 10px;
  color: #D4AF37;
}
.locations-list li a:hover {
  color: #D4AF37;
}

.hero-banner {
  position: relative;
  height: 450px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-banner .bride-banner-content {
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  max-width: 1200px;
  padding: 0 16px;
}
.hero-banner .bride-banner-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
  color: #FFFFFF;
}
.hero-banner .bride-banner-content p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.portfolio-section .portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-item--hidden {
  display: none;
}

.load-more-btn {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.75rem 2rem;
  background-color: #D4AF37;
  color: #111;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.load-more-btn:hover {
  background-color: #b8961f;
}

.calendar-section {
  width: 100%;
}
.calendar-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.calendar-section .container h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  font-weight: 700;
}

.flatpickr-calendar {
  border-radius: 12px !important;
  margin: auto;
  left: unset !important;
  right: unset !important;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.25) !important;
}

.flatpickr-input {
  display: none !important;
}

#booking-calendar {
  max-width: 300px;
  margin: 20px auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-box {
  background: #fff7e6;
  padding: 25px;
  width: 90%;
  max-width: 360px;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.4);
  text-align: center;
}

.modal-box h2 {
  font-family: "Playfair Display", serif;
  color: #D4AF37;
  margin-bottom: 10px;
}

.close-modal {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #D4AF37;
}

.modal-box input,
.modal-box button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #d4af37;
}

.modal-box button {
  background: #d4af37;
  color: white;
  font-weight: 600;
}

.slot-filled {
  background: #ffcccc !important;
  border-color: #ff0000 !important;
  color: #ff0000 !important;
  pointer-events: auto !important;
}

.slot-filled:hover {
  background: #ffcccc !important;
  cursor: not-allowed;
}

/* Floating Icon */
#floatingCalendarBtn {
  position: fixed;
  bottom: 115px;
  right: 25px;
  background: #E2C256;
  color: #FFFFFF;
  padding: 15px;
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
  z-index: 999;
  height: 50px;
  width: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Popup Calendar Modal */
.popup-modal {
  display: none;
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.calendar-popup-content {
  position: relative;
  background: #fff7e6;
  padding-bottom: 25px;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 20px;
  width: 90%;
  max-width: 360px;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.4);
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  padding: 5px 10px;
}

/* Already booked twice = RED */
.red-date {
  background: #ffcccc !important;
  color: red !important;
  border-color: red !important;
  border-radius: 50% !important;
}

/* Disable past dates */
.disabled-date {
  background: rgb(227, 227, 227) !important;
  color: rgb(133, 132, 132) !important;
  pointer-events: none;
  opacity: 0.6;
}

/* Fully booked (red) */
.blocked-date {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.blocked-date span {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid #cc0000;
  /* red border */
  color: #cc0000;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* Highlight selected date */
.selected-date {
  background: white;
  border: 3px solid #E2C256;
  color: #3A2C23;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
}

.calendar-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  font-family: "Playfair Display", serif;
  padding-bottom: 40px;
  font-size: 14px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #E2C256;
  padding: 10px 20px;
  color: #FFFFFF;
  font-size: 26px;
  font-weight: bold;
  border-radius: 15px 15px 0 0;
}

.calendar-header button {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #FFFFFF;
  color: #3A2C23;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: #FFFFFF;
}

.day-cell {
  border: 1px solid #E2C256;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #444;
  cursor: pointer;
}

.day-cell:hover {
  background: #E2C256;
}

.selected-date {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #E2C256;
  color: #3A2C23;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 26px;
}

.red-date {
  background: #ffcccc !important;
  color: #ff0000 !important;
  border-radius: 50% !important;
  border: 1px solid #ff0000 !important;
}

.map-section .container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-bottom: 40px;
}
.map-section .about-text {
  flex: 1;
  min-width: 300px;
}
.map-section .about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 700;
}
.map-section .about-text p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #3A2C23;
  line-height: 1.7;
}
.map-section .about-image {
  flex: 1;
  min-width: 300px;
}
.map-section .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.service-map {
  position: relative;
  width: 100%;
  min-height: 450px;
}

/* CENTER LOGO */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  height: 100px;
  width: 100px;
}

.center-logo img {
  width: 170px;
  border-radius: 18px;
}

/* SVG LINES (DESKTOP) */
.lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin-top: 50px;
}

.lines path {
  fill: none;
  stroke: #E2C256;
  stroke-width: 4;
  stroke-dasharray: 12;
  animation: flow 3s linear reverse infinite;
}

@keyframes flow {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 0;
  }
}
/* SERVICES */
.services {
  position: relative;
}

.service {
  position: absolute;
  background: #FFFFFF;
  border: 2px solid #3A2C23;
  padding: 16px 26px;
  border-radius: 14px;
  font-weight: 500;
  color: #3A2C23;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transition: all 0.3s ease;
}

/* ICON */
.service i {
  color: #E2C256;
  font-size: 18px;
}

/* HOVER GLOW */
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 2px #E2C256, 0 0 25px rgba(255, 122, 24, 0.45);
}

/* POSITIONS */
.service:nth-child(1) {
  left: 0px;
  top: 90px;
}

.service:nth-child(2) {
  left: 0px;
  top: 200px;
}

.service:nth-child(3) {
  left: 0px;
  top: 300px;
}

.service:nth-child(4) {
  right: 0px;
  top: 90px;
}

.service:nth-child(5) {
  right: 0px;
  top: 200px;
}

.service:nth-child(6) {
  right: 0px;
  top: 300px;
}

.whatsapp-float {
  position: fixed;
  bottom: 190px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 1009;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
  .gallery-header h1 {
    font-size: 38px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .testimonial-section h2 {
    font-size: 32px;
  }
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .other-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-banner {
    height: 400px;
  }
  .hero-banner .bride-banner-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    height: 350px;
  }
  .hero-banner .banner-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin-left: 40px;
    padding-right: 40px;
    z-index: 99;
  }
  .hero-banner .banner-content h1 {
    font-size: 2rem;
  }
  .hero-banner .banner-content h2 {
    font-size: 1.2rem;
  }
  .hero-banner .banner-content p {
    font-size: 0.9rem;
  }
  .hero-banner .bride-banner-content {
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin-left: 40px;
    padding-right: 40px;
  }
  .hero-banner .bride-banner-content h1 {
    font-size: 2rem;
  }
  .hero-banner .bride-banner-content h2 {
    font-size: 1.2rem;
  }
  .hero-banner .bride-banner-content p {
    font-size: 0.9rem;
  }
  .service-section h2 {
    text-align: center;
  }
  .service-section .services-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .service-section .service-card h3 {
    font-size: 20px;
  }
  .service-section .service-card p {
    font-size: 14px;
  }
  .service-section .service-card .price {
    font-size: 18px;
  }
  .service-section .second-card {
    margin-top: 5rem;
  }
  .performance-section h2 {
    text-align: center;
  }
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }
  .about-text,
  .about-image {
    width: 100%;
  }
  .portfolio-section .container {
    text-align: center;
  }
  .portfolio-section .container .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-section {
    text-align: center;
  }
  .testimonial-section .container {
    text-align: center;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 25px 20px;
  }
  .testimonial-card::before {
    font-size: 50px;
    top: 15px;
    right: 15px;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .traditions-section h2 {
    font-size: 24px;
  }
  .traditions-section p {
    text-align: left;
  }
  .areas-section {
    padding: 40px 0;
  }
  .areas-section h2 {
    font-size: 24px;
  }
  .areas-list .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .areas-list .areas-grid li {
    padding: 12px 10px;
    font-size: 14px;
  }
  .nearby-areas {
    padding: 20px 10px;
  }
  .nearby-areas h3,
  .nearby-areas .nearby-title {
    font-size: 20px;
  }
  .nearby-areas .nearby-areas-list {
    gap: 10px;
  }
  .nearby-areas .nearby-areas-list li,
  .nearby-areas .area-pill {
    padding: 5px 12px;
    font-size: 14px;
  }
  .also-serve-section h2 {
    font-size: 24px;
  }
  .other-cities-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .city-link {
    padding: 20px 15px;
  }
  .city-name {
    font-size: 18px;
  }
  .hero-banner {
    height: 300px;
  }
  .hero-banner .bride-banner-content h1 {
    font-size: 24px;
  }
  .hero-banner .bride-banner-content p {
    font-size: 16px;
  }
  .service-cities-bar .container {
    flex-direction: column;
    gap: 8px;
  }
  .locations-list ul {
    grid-template-columns: 1fr;
  }
  .portfolio-section .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .enquiry-section .container {
    flex-direction: column;
    text-align: center;
  }
  .enquiry-section .enquiry-form {
    flex: 1;
  }
  .galleryview-section .galleryContainer {
    grid-template-columns: 1fr;
  }
  .gallery-page-section {
    padding: 40px 0;
  }
  .gallery-header h1 {
    font-size: 32px;
  }
  .gallery-subtitle {
    font-size: 14px;
  }
  .gallery-filter-wrapper {
    margin-bottom: 30px;
  }
  .filter-arrow {
    width: 38px;
    height: 38px;
  }
  .gallery-filter-bar {
    max-width: calc(100vw - 120px);
  }
  .filter-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .gallery-grid-item {
    border-radius: 10px;
  }
  .site-header {
    position: relative;
    z-index: 100;
  }
  .site-header .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1C1C1C;
    text-align: left;
    padding: 1rem;
  }
  .site-header .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
  }
  .site-header .nav-menu.active {
    display: block;
  }
  .site-header .hamburger {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .site-header .site-header .hamburger span {
    width: 28px;
    height: 3px;
    background-color: #D4AF37;
    /* gold */
    border-radius: 3px;
    display: block;
    transition: all 0.3s ease;
  }
  .site-header .site-header .hamburger:focus-visible {
    outline: 2px solid #D4AF37;
    outline-offset: 3px;
  }
  .site-header .call-btn {
    display: none;
  }
  .course-section .course-card {
    display: flex;
    flex-direction: column !important;
  }
  .course-section .course-image {
    order: 1;
  }
  .course-section .course-content {
    order: 2;
    padding: 0 !important;
  }
  .course-section .course-buttons {
    justify-content: center;
  }
  .courseview-section .course-details {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
  .courseview-section .course-info {
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .courseview-section .course-info h3 {
    line-height: 1.5;
  }
  .courseview-section .course-info h3 span {
    display: block;
    margin-top: 4px;
  }
  .courseview-section .course-image {
    flex: 1 1 auto;
    justify-content: center;
  }
  .courseview-section .course-image img {
    width: 100%;
    height: auto;
  }
  .course-banner img {
    height: 190px;
  }
  .course-banner h1 {
    font-size: 32px;
  }
  .course-banner .course-banner-content {
    top: 50%;
    text-align: center;
    font-size: 20px;
  }
  .gallery-section .gallery {
    gap: 20px;
  }
  .gallery-section .gallery-item {
    width: 100%;
    max-width: 350px;
  }
  .gallery-section .gallery-item img {
    padding: 15px;
    height: 250px;
  }
  .gallery-section .gallery-item h3 {
    font-size: 24px;
  }
  .contact-section .contact {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .contact-section .contact .contact-card {
    width: 90%;
  }
  .aboutus-section .container {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px 30px;
  }
  .aboutus-section .aboutus-card {
    flex-direction: column;
  }
  .aboutus-section .aboutus-image img {
    height: auto;
    max-height: 350px;
  }
  .aboutus-section .aboutus-content {
    padding: 0;
    text-align: center;
  }
  .aboutus-section .aboutus-content h2 {
    margin-bottom: 20px;
    margin-top: 20px;
    color: #3A2C23;
  }
  .aboutus-section .aboutus-content h3,
  .aboutus-section .aboutus-content p,
  .aboutus-section .aboutus-content h4 {
    text-align: start;
  }
  .aboutus-section .image-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .whychoose-section .container .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .whychoose-section .container .stat-card {
    padding: 1.5rem;
  }
  .whychoose-section h2 {
    font-size: 24px;
  }
  .whychoose-section p {
    font-size: 14px;
  }
  .site-header .nav-menu ul li .submenu {
    position: static;
    border: 1px solid #ddd;
    box-shadow: none;
    margin-top: 0.5rem;
  }
  .site-header .nav-menu ul li .submenu a {
    font-size: 18px;
    font-weight: 700;
  }
  .category {
    flex-direction: column !important;
    text-align: center;
  }
  .category .category-text,
  .category .category-img {
    flex: unset;
    width: 100%;
    padding: 10px;
  }
  .faq-section h2 {
    font-size: 32px;
    text-align: center;
  }
  .faq-item {
    border-radius: 10px;
  }
  .faq-question {
    font-size: 18px;
  }
  .calendar-section h2 {
    font-size: 32px;
    text-align: center;
  }
  .calendar-grid {
    gap: 0;
  }
  .day-cell {
    height: 55px !important;
    /* smaller cells */
    padding: 0 !important;
  }
  .blocked-date span,
  .selected-date {
    width: 38px !important;
    height: 38px !important;
    font-size: 14px !important;
    border-width: 2px !important;
  }
  .service-map {
    display: none;
  }
  .map-section {
    display: none;
  }
  .whatsapp-float {
    bottom: 190px;
    right: 25px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .areas-section {
    padding: 30px 0;
  }
  .areas-section h2 {
    font-size: 20px;
  }
  .areas-list .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .areas-list .areas-grid li {
    padding: 10px 8px;
    font-size: 12px;
    border-radius: 12px;
  }
  .nearby-areas {
    padding: 16px 8px;
  }
  .nearby-areas h3,
  .nearby-areas .nearby-title {
    font-size: 18px;
  }
  .nearby-areas .nearby-areas-list {
    gap: 8px;
  }
  .nearby-areas .nearby-areas-list li,
  .nearby-areas .area-pill {
    padding: 4px 10px;
    font-size: 12px;
  }
  .hero-banner {
    height: 250px;
  }
  .hero-banner .bride-banner-content h1 {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .modal-box {
    max-width: 550px !important;
    /* Increase width */
    padding: 40px !important;
    /* More padding */
    border-radius: 18px !important;
  }
  .modal-box h2 {
    font-size: 28px !important;
  }
  .modal-box input,
  .modal-box button {
    font-size: 18px !important;
    padding: 14px !important;
  }
}
