@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

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

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

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;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 244, 0.85);
  padding: 20px 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: rgba(250, 248, 244, 0.98);
  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: var(--dark);
  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: var(--dark);
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 100px;
}

.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: 100px 0;
  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: 100px 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;
}

.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: 100px 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: 100px 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: 100px 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;
}

.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: var(--gold);
}

.floating-social .social-youtube {
  background: var(--gold);
}

.floating-social .social-whatsapp {
  background: var(--gold);
}

.floating-social a svg {
  width: 22px;
  height: 22px;
  color: white;
}

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

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 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: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .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;
  }


/* 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;
  }

}