@import url('../css2');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

:root {
  --ivory: #FAF8F4;
  --beige: #F1ECE4;
  --gold: #e38c0a;
  --dark: #2B2B2B;
  --soft-border: #E5DED3;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Montserrat, sans-serif;
  background: #FAF8F4;
  color: #2B2B2B;
  overflow-x: hidden
}
a{
  text-decoration: none;
}
a:hover{
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.landing-page {
  background-color: var(--ivory);
  color: var(--dark);
  font-family: Montserrat, sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.landing-page {
  width: 100%;
  overflow-x: hidden
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #2B2B2B;
  letter-spacing: 1px
}

.nav-links {
  display: flex;
  gap: 32px
}

.nav-links a {
  color: #2B2B2B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500
}

.cta-button {
  background: #E9B947;
  color: #1a1208;
  border: none;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  font-family: Montserrat, sans-serif
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}



.primary-cta {
  background-color: #E9B947;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: Montserrat, sans-serif
}

.floating-social {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .mobile-menu-btn {
    display: flex
  }

  .cta-button {
    display: none
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.3
  }
}
/* ===== HEADER ===== */
.header {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: rgb(0 0 0 / 85%);
  padding: 6px 0;
  box-shadow: 0 1px 10px rgba(43, 43, 43, 0.05);
  transition: background-color 0.3s, padding 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background-color: rgb(0 0 0 / 85%);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(43, 43, 43, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background-color: var(--gold);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

.cta-button:hover {
  background-color: #d4a63a;
  transform: translateY(-2px);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color:#ffffff;
  padding: 8px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(250, 248, 244, 0.98);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  cursor: pointer;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 8px;
  z-index: 10001;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
  margin-bottom: 0px;
}
.hero-section:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: #000;
  opacity: .3;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-text{
position: absolute;
bottom: 0;
z-index: 99;
left: 50%;
width: 1000px;
transform: translate(-50%, -50%);
  /* background: #1010107a; */
  padding: 5px 30px;
  border-radius: 5px;
}
.hero-text h3{
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    text-align: center;
    text-transform: uppercase;
}
.hero-text h3 span{
  font-size: 84px;
  line-height: 16px;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(250, 248, 244, 0.2), rgba(250, 248, 244, 0.5), rgba(250, 248, 244, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  margin-top: -10vh;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-cta {
  background-color: var(--gold);
  color: var(--white);
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
}

.primary-cta:hover {
  background-color: #d4a63a;
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.gold-divider {
  width: 80px;
  height: 2px;
  background-color: var(--gold);
  margin: 0 auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 60px;
  opacity: 0.8;
}

/* ===== WEDDING HIGHLIGHTS VIDEO ===== */
.wedding-highlights-section {
  padding: 40px 0 80px;
  background-color: var(--ivory);
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(43, 43, 43, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-thumbnail-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(43, 43, 43, 0.2);
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(233, 185, 71, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  border: none;
  cursor: pointer;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(233, 185, 71, 1);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  color: white;
  margin-left: 4px;
}

.wedding-video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 50px rgba(43, 43, 43, 0.15);
  background-color: #000;
}

/* Video lightbox */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
}

.video-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
}

/* ===== PORTFOLIO / GALLERY ===== */
.portfolio-section {
  padding: 60px 0;
  background-color: var(--white);
}

.gallery-masonry {
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .gallery-masonry {
    column-count: 4;
    column-gap: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery-masonry {
    column-count: 3;
    column-gap: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .gallery-masonry {
    column-count: 2;
    column-gap: 15px;
  }
}

@media (max-width: 767px) {
  .gallery-masonry {
    column-count: 1;
    column-gap: 15px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(43, 43, 43, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: var(--ivory);
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  height: 350px;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(43, 43, 43, 0.18);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 50%, rgba(233, 185, 71, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 30px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(233, 185, 71, 0.8);
  border: none;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  transition: background 0.3s;
}

.gallery-lightbox-nav:hover {
  background: rgba(233, 185, 71, 1);
}

.gallery-lightbox-prev {
  left: 20px;
}

.gallery-lightbox-next {
  right: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, var(--beige), var(--ivory));
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.testimonials-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), #d4a63a, var(--gold));
  margin: 0 auto 50px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(233, 185, 71, 0.3);
}

.testimonials-grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; */
  /* margin-top: 70px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; */
}

.testimonial-card {
  background: var(--ivory);
  border: 1px solid rgba(233, 185, 71, 0.15);
  border-radius: 16px;
  padding: 0;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(43, 43, 43, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  min-height: 140px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(233, 185, 71, 0.2);
  border-color: var(--gold);
}

.testimonial-content {
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(233, 185, 71, 0.2);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.testimonial-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-quote {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

.testimonial-footer {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}

.couple-names {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  letter-spacing: 0.2px;
}

.wedding-location {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.testimonial-cta {
  text-align: center;
  margin-top: 60px;
}

.testimonial-cta-button {
  background: linear-gradient(135deg, var(--gold), #d4a63a);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(233, 185, 71, 0.3);
  transition: 0.3s;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
}

.testimonial-cta-button:hover {
  background: linear-gradient(135deg, #d4a63a, var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 185, 71, 0.4);
}

/* ===== PACKAGES ===== */
.packages-section {
  padding: 60px 0;
  background-color: var(--beige);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.package-card {
  background-color: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: 12px;
  padding: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 30px rgba(43, 43, 43, 0.08);
  position: relative;
}

.package-card.highlighted {
  border: 3px solid var(--gold);
  transform: scale(1.05);
  box-shadow: 0 12px 50px rgba(233, 185, 71, 0.25);
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 60px rgba(43, 43, 43, 0.15);
}

.package-card.highlighted:hover {
  transform: translateY(-8px) scale(1.07);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(233, 185, 71, 0.3);
}

.package-name {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.package-tagline {
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 25px;
  font-weight: 600;
  font-style: italic;
}

.package-events {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--soft-border);
}

.events-title {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.events-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.events-list li {
  background-color: var(--ivory);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  border: 1px solid var(--soft-border);
}

.package-coverage {
  margin-bottom: 25px;
}

.coverage-title {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-features {
  list-style: none;
  margin-bottom: 25px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.package-button {
  width: 100%;
  background-color: var(--gold);
  color: var(--white);
  border-radius: 50px;
  padding: 14px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s;
  margin-top: 10px;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
}

.package-button:hover {
  background-color: #d4a63a;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 100px 0;
  background-color: var(--white);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background-color: var(--ivory);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 15px rgba(43, 43, 43, 0.05);
}

.why-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 25px rgba(43, 43, 43, 0.1);
}

.why-icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 60px 0;
  background-color: var(--ivory);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(43, 43, 43, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-description p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 400;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0;
  background-color: var(--beige);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(43, 43, 43, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 43, 43, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ivory);
  border-radius: 50%;
  color: var(--gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  opacity: 0.8;
}

/* ===== URGENCY SECTION ===== */
.urgency-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  text-align: center;
  background-image: url(../images/bg.jpg);
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.urgency-section:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: #000;
  opacity: .7;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.urgency-section .section-title {
  color: var(--gold);
  margin-bottom: 20px;
}

.urgency-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.urgency-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.urgency-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}

.urgency-feature svg {
  color: var(--gold);
  flex-shrink: 0;
}

.urgency-cta {
  background-color: var(--gold);
  color: var(--white);
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
}

.urgency-cta:hover {
  background-color: #d4a63a;
  transform: translateY(-2px);
}

/* ===== CONTACT / LEAD FORM ===== */
.contact-section {
  padding: 100px 0;
  background-color: var(--beige);
}

.form-trust-line {
  text-align: center;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contact-form {
  max-width: 800px;
  margin: 60px auto 0;
  background-color: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(43, 43, 43, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: Montserrat, sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: var(--ivory);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(233, 185, 71, 0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  background-color: var(--ivory);
  transition: border-color 0.3s, background-color 0.3s;
}

.checkbox-item:hover {
  border-color: var(--gold);
  background-color: var(--white);
}

.checkbox-item.selected {
  border-color: var(--gold);
  background-color: rgba(233, 185, 71, 0.08);
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-item label {
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 15px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  background-color: var(--ivory);
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
}

.radio-item:hover {
  border-color: var(--gold);
  background-color: var(--white);
}

.radio-item.selected {
  border-color: var(--gold);
  background-color: rgba(233, 185, 71, 0.08);
}

.radio-item input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
}

.radio-item label {
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
}

.form-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.submit-button,
.whatsapp-button {
  flex: 1;
  padding: 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
}

.submit-button {
  background-color: var(--gold);
  color: var(--white);
  border: none;
}

.submit-button:hover:not(:disabled) {
  background-color: #d4a63a;
  transform: translateY(-2px);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.whatsapp-button {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--gold);
}

.whatsapp-button:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Success message */
.success-message-wrapper {
  max-width: 800px;
  margin: 60px auto 0;
}

.success-message {
  background-color: var(--white);
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(43, 43, 43, 0.1);
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ivory);
  border-radius: 50%;
  color: var(--gold);
}

.success-icon svg {
  width: 48px;
  height: 48px;
}

.success-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.success-text {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.success-subtext {
  font-size: 16px;
  color: var(--dark);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 35px;
}

.success-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 35px auto;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--ivory);
  padding: 80px 0 30px;
  border-top: 1px solid var(--soft-border);
}

.footer-content {
  /* display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 60px; */
  margin-bottom: 50px;
}

.footer-brand-section {
  max-width: 300px;
}

.footer-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-tagline {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-description {
  font-size: 14px;
  color: var(--dark);
  opacity: 0.8;
  line-height: 1.6;
}

.footer-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.destination {
  margin-top: 10px;
  font-weight: 600;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s, padding-left 0.3s;
}

.social-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--soft-border);
}

.footer-bottom p {
  color: var(--dark);
  font-size: 14px;
  opacity: 0.7;
}

/* ===== FLOATING SOCIAL ICONS ===== */
.floating-social {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.floating-social a:hover {
  transform: scale(1.15);
}

.floating-social .social-instagram {
  background: linear-gradient(45deg, #ef0f62, #c71d1d);
}

.floating-social .social-youtube {
  background: #d11919;
}

.floating-social .social-whatsapp {
  background: #0a9d2a;
}

.floating-social a i {
  color: white;
  font-size: 20px;
}

.floating-social a svg * {
  stroke: white;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Testimonial stars & location */
.testimonial-stars {
  color: #E9B947;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.wedding-location {
  font-size: 12px;
  color: #999;
  font-family: Montserrat, sans-serif;
  margin-top: 3px;
}

.couple-names {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: #2B2B2B;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.form-subheading {
  text-align: center;
  font-size: 14px;
  color: #888;
  font-family: Montserrat, sans-serif;
  margin-top: -8px;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Initials Avatar */
.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E9B947 0%, #c9922a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1208;
  letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(233, 185, 71, 0.35);
}
.trust-bar-section {
  background: #101010;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 24px;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 32px;
  flex: 1 1 160px;
  min-width: 140px;
  justify-content: center;
}

.trust-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #E9B947;
  line-height: 1.1;
  white-space: nowrap;
}

.trust-label {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(233, 185, 71, 0.25);
  flex-shrink: 0;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mySwiper1{
  margin-bottom: 60px;
}
.mySwiper1 .swiper-pagination{
  bottom: -20px;
}

.why-choose {
  padding: 90px 0 60px;
  background: linear-gradient(135deg, #fffaf2, #ffffff);
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.why-content span {
  color: #e7ad2f;
  font-weight: 600;
  letter-spacing: 1px;
}

.why-content h2 {
  font-size: 42px;
  margin: 15px 0;
  font-family: serif;
  color: #111;
}

.why-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
}

.why-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #e7ad2f;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  border-bottom: 4px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  border-bottom-color: #e7ad2f;
}

.why-card i {
  font-size: 34px;
  color: #e7ad2f;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

@media(max-width: 991px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 575px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-content h2 {
    font-size: 32px;
  }
}

.services-new {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f3eb, #fff);
  position: relative;
}

.section-title {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
}

.section-title span {
  color: #e6b23c;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 44px;
  font-family: serif;
  color: #111;
  margin: 12px 0;
}

.section-title p {
  color: #666;
  line-height: 1.7;
}

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

.service-box {
  background: #fff;
  padding: 25px 30px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border: 1px solid rgba(230, 178, 60, 0.25);
}

.service-box::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(230, 178, 60, 0.12);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  transition: 0.4s;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box:hover::before {
  width: 220px;
  height: 220px;
}

.service-no {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 44px;
  font-weight: 700;
  color: rgba(230, 178, 60, 0.18);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #f7f1e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon i {
  font-size: 28px;
  color: #e6b23c;
}

.service-box h3 {
  font-size: 23px;
  font-family: serif;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-box p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}
.mb-none {
  display: block !important;
}

.des-none {
  display: none !important;
}

.breadcrumb-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/bread.jpg") center/cover;
  padding: 90px 0;
  color: #fff;
  text-align: center;
}

.breadcrumb-section h1 {
  font-size: 42px;
  font-weight: 700;
}
.breadcrumb{
  background: none !important;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card i {
  font-size: 38px;
  color: #8b4513;
  margin-bottom: 15px;
}
.map-sec{
  margin-top: 30px;
}
.custom-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-bottom: 20px;
}

.custom-card:hover {
  transform: translateY(-8px);
}

.custom-card img {
  height: 250px;
  object-fit: cover;
}

.card-body {
  text-align: center;
  padding: 25px 10px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.btn-read {
  background: #8b4513;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-read:hover {
  background: #6d340d;
  color: #fff;
}
.service-sec{
  padding: 60px 0;
}
.gallery-item1 img{
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}
@media(max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 575px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 34px;
  }
  .mb-none{
    display: none !important;
  }
  .des-none{
    display: block !important;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .trust-bar-inner {
    gap: 0;
    padding: 0 16px;
  }

  .trust-stat {
    padding: 18px 20px;
    flex: 1 1 130px;
  }

  .trust-number {
    font-size: 18px;
  }

  .trust-label {
    font-size: 10px;
  }

  .trust-divider {
    height: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 0;
  }

  .trust-stat {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(233, 185, 71, 0.12);
    flex: none;
    justify-content: flex-start;
    gap: 10px;
  }

  .trust-stat:nth-child(odd) {
    border-right: 1px solid rgba(233, 185, 71, 0.12);
  }

  .trust-divider {
    display: none;
  }

  .trust-number {
    font-size: 17px;
  }

  .trust-label {
    font-size: 10px;
  }

  .trust-icon {
    font-size: 22px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .hero-title {
    font-size: 44px;
  }
  .about-content {
    gap: 50px;
  }
  .video-wrapper {
    max-width: 100%;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .package-card.highlighted {
    transform: scale(1);
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .header .cta-button {
    display: block;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-section {
    /* min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; */
  }
  /* .hero-text {
    position: absolute;
    bottom: 70%;
    z-index: 99;
    left: 50%;
    width: 370px;
    transform: translate(-50%, -50%);
    background: #1010107a;
    padding: 5px 30px;
    border-radius: 5px;
  } */
  .hero-text h3 {
      color: #fff;
      text-align: center;
      font-size: 30px;
    width: 340px;
  }
    .hero-text h3 span {
      font-size: 50px;
    }
  .hero-image {
    object-position: center center;
  }
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 90%;
    padding: 100px 20px 40px;
    margin-top: 0;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .package-name {
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 21px;
    line-height: 1.45;
  }
  .package-badge {
    top: 15px;
    right: 15px;
    font-size: 9px;
    padding: 5px 10px;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .video-wrapper {
    padding: 0 10px;
  }
  .wedding-video {
    border-radius: 12px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    min-height: auto;
  }
  .testimonial-content {
    padding: 20px;
    gap: 15px;
  }
  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }
  .testimonial-quote {
    font-size: 13px;
    line-height: 1.6;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .radio-grid {
    grid-template-columns: 1fr;
  }
  .form-buttons {
    flex-direction: column;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form {
    padding: 35px 25px;
  }
  .success-message {
    padding: 40px 30px;
  }
  .success-title {
    font-size: 28px;
  }
  .success-text {
    font-size: 16px;
  }
  .section-title {
    font-size: 32px;
  }
  .urgency-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .floating-social {
    right: 12px;
    gap: 10px;
  }
  .floating-social a {
    width: 42px;
    height: 42px;
  }
  .gallery-item{
    height: auto;
  }


/* CLOSE THE 768px MEDIA QUERY */
}

/* ===== MOBILE SMALL ===== */
@media (max-width: 480px) {

  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-form {
    padding: 25px 20px;
  }

}

.whatsapp a{
    position: fixed;
    bottom: 0;
    background: #0c0c0c;
    width: 50%;
    padding: 10px;
    text-align: center;
    color: #fff;
}
.call a {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #0c0c0c;
  width: 50%;
  padding: 10px;
  text-align: center;
  color: #fff;
}
.package-box1 img{
  width: 100%;
}
.package-box1 p{
  margin-top: 10px;
  margin-bottom: 15px;
}
.package-box1{
  text-align: center;
  box-shadow: 0 0 1px 1px #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.package-box{
  text-align: center;
  /* box-shadow: 0 0 1px 1px #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px; */
}
.package-box1 a:hover{
  color: #fff;
}
.package-box1 a{
    background-color: var(--gold);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
}
.form-group {
  margin-bottom: 18px;
}
.form-box button{
  background-color: var(--gold);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #222;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #000;
}

#albumQtyBox {
  display: none;
}
.package-form-section{
  background: #e3e3e3;
  padding: 40px 0;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.check-item {
  position: relative;
}

.check-item input {
  display: none;
}

.check-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.check-item label:hover {
  border-color: #d4af37;
  transform: translateY(-2px);
}

.check-item input:checked+.package-box {
  border-color: #d4af37;
  background: #fff8e1;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.package-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-check {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 14px;
  font-weight: bold;
}

.check-item input:checked+.package-box .custom-check {
  background: #d4af37;
  border-color: #d4af37;
  color: #fff;
}

.package-price {
  color: #d4af37;
  font-weight: 700;
}

@media(max-width:768px) {

  .checkbox-group {
    grid-template-columns: 1fr;
  }
  .hero-text{
      width: auto;
  }

}