/* ==========================================================================
   Helix Ultimate Custom CSS - Pixel Perfect 100% Clone for laviestudios.com
   ========================================================================== */

/* 1. Adobe Typekit Fonts */
@import url("https://use.typekit.net/ldz2snw.css");

/* 2. Global Root Variables */
:root {
  --global-palette1: #c59f5c;
  --global-palette2: #e0bece;
  --global-palette3: #232323;
  --global-palette4: #232323;
  --global-palette5: #808184;
  --global-palette6: #eeeeee;
  --global-palette7: #eeeeee;
  --global-palette8: #F7FAFC;
  --global-palette9: #ffffff;
  --global-palette9rgb: 255, 255, 255;
  
  --global-palette-highlight: var(--global-palette1);
  --global-palette-highlight-alt: var(--global-palette2);
  --global-palette-btn-bg: var(--global-palette2);
  --global-palette-btn-bg-hover: #d2a9bb;
  --global-palette-btn-text: #ffffff;
  
  --global-body-font-family: "museo-sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --global-heading-font-family: "calluna", Georgia, serif;
  --global-primary-nav-font-family: "manifold-cf", -apple-system, sans-serif;
  
  --global-content-width: 1390px;
  --global-content-narrow-width: 842px;
  --global-edge-padding: 1.5rem;
}

/* 3. Base Reset & Global Typography */
body.site {
  font-family: var(--global-body-font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--global-palette5);
  background-color: var(--global-palette9);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--global-heading-font-family);
  font-weight: 300;
  color: var(--global-palette3);
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

h1, .h1 { font-size: clamp(2.2rem, 1.7rem + 1.6vw, 3.2rem); }
h2, .h2 { font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.5rem); }
h3, .h3 { font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem); }
h4, .h4 { font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem); }

a {
  color: var(--global-palette3);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover, a:focus {
  color: var(--global-palette1);
  text-decoration: none;
}

/* 4. Layout Containers */
.container,
#sp-main-body .container {
  max-width: var(--global-content-width);
  padding-left: var(--global-edge-padding);
  padding-right: var(--global-edge-padding);
}

.container-narrow {
  max-width: var(--global-content-narrow-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--global-edge-padding);
  padding-right: var(--global-edge-padding);
}

/* ==========================================================================
   5. CENTERED SPLIT HEADER (100% Exact Match to Reference Screenshot)
   ========================================================================== */
#sp-header.lavie-split-header {
  background-color: #ffffff;
  border-top: 1px solid var(--global-palette1);
  border-bottom: 1px solid var(--global-palette1);
  padding: 18px 0;
  position: relative;
  z-index: 99;
  transition: all 0.3s ease;
}

#sp-header.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.header-logo-center {
  padding: 0 30px;
}

.header-logo-center img,
.header-logo-center .logo img {
  max-height: 56px !important;
  width: auto !important;
  display: inline-block !important;
}

/* Split Navigation Lists */
ul.lavie-nav-list {
  display: flex !important;
  align-items: center !important;
  gap: 36px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

ul.lavie-nav-list li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

ul.lavie-nav-list li a,
ul.lavie-nav-list li span {
  font-family: var(--global-primary-nav-font-family) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  color: var(--global-palette3) !important;
  padding: 6px 0 !important;
  position: relative !important;
  transition: color 0.25s ease !important;
  display: inline-block !important;
}

ul.lavie-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--global-palette1);
  transition: width 0.25s ease;
}

ul.lavie-nav-list li:hover > a,
ul.lavie-nav-list li.active > a {
  color: var(--global-palette1) !important;
}

ul.lavie-nav-list li:hover > a::after,
ul.lavie-nav-list li.active > a::after {
  width: 100%;
}

/* Mobile Toggler */
#offcanvas-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--global-palette3);
}

.burger-icon span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--global-palette3);
  transition: background-color 0.25s ease;
}

#offcanvas-toggler:hover .burger-icon span {
  background-color: var(--global-palette1);
}

/* ==========================================================================
   6. FOOTER STYLING
   ========================================================================== */
#sp-footer, footer.site-footer, #colophon {
  background-color: #ffffff;
  border-top: 1px solid var(--global-palette6);
  padding: 45px 0;
  margin-top: 60px;
  text-align: center;
}

.site-footer p, #colophon p {
  font-family: var(--global-body-font-family);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--global-palette5);
  margin: 0;
}

.site-footer a, #colophon a {
  color: var(--global-palette3);
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-footer a:hover, #colophon a:hover {
  color: var(--global-palette1);
}

/* ==========================================================================
   7. LA VIE SLIDER ADDON STYLING (100% Full Viewport breakout & matching styles)
   ========================================================================== */
.sppb-addon-lavie-slider,
.lavie-slider-wrapper {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: 0 !important;
  background-color: #ffffff;
}

.lavie-swiper-container {
  width: 100% !important;
}

.lavie-swiper-container .swiper-slide {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  opacity: 0.5;
  transform: scale(0.96);
}

.lavie-swiper-container .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.lavie-swiper-container .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* Slim Custom Navigation Arrows on side borders */
.lavie-swiper-prev,
.lavie-swiper-next {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 0px !important;
  transition: all 0.3s ease !important;
}

.lavie-swiper-prev {
  left: 3% !important;
}

.lavie-swiper-next {
  right: 3% !important;
}

.lavie-swiper-prev::after,
.lavie-swiper-next::after {
  font-size: 20px !important;
}

.lavie-swiper-prev:hover,
.lavie-swiper-next:hover {
  background-color: var(--global-palette1) !important;
  color: #ffffff !important;
}

/* Gold V Overlay sitting at the bottom center of the slider */
.lavie-gold-v-overlay {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 99;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lavie-gold-v-overlay svg {
  display: block;
}

/* ==========================================================================
   8. MIAMI WEDDING PHOTOGRAPHERS ADDON STYLING (Split Row Layout)
   ========================================================================== */
.lavie-miami-photographers-section {
  padding: 95px 0;
  background-color: #ffffff;
}

.section-title-primary {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--global-palette3);
  letter-spacing: 0.01em;
}

.section-subtitle-primary {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--global-palette1);
  margin-top: 5px;
}

.section-left-media {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.section-left-media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-left-media:hover img {
  transform: scale(1.03);
}

.section-title-secondary {
  font-family: var(--global-heading-font-family);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--global-palette3);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-body-text p {
  font-family: var(--global-body-font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--global-palette5);
  margin: 0;
}

.btn-lavie-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--global-palette2);
  color: #ffffff !important;
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 13px 36px;
  border: none;
  border-radius: 0px;
  transition: background-color 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-lavie-about:hover {
  background-color: var(--global-palette-btn-bg-hover);
  color: #ffffff !important;
  text-decoration: none;
}

/* ==========================================================================
   9. BLOG CATEGORY STYLING
   ========================================================================== */
.lavie-blog-layout {
  padding: 50px 0 80px;
}

.blog-header .blog-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--global-palette3);
}

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

@media (max-width: 992px) {
  .lavie-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lavie-blog-grid {
    grid-template-columns: 1fr;
  }
}

.lavie-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-media {
  overflow: hidden;
  position: relative;
  background-color: var(--global-palette8);
  aspect-ratio: 4 / 3;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lavie-blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-meta {
  font-family: var(--global-primary-nav-font-family);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--global-palette5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-meta .category-badge {
  color: var(--global-palette1);
}

.blog-card-title {
  font-family: var(--global-heading-font-family);
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 300;
  margin: 0;
}

.blog-card-excerpt {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  line-height: 1.65;
  color: var(--global-palette5);
  flex-grow: 1;
}

.btn-lavie,
.post-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--global-palette-btn-bg);
  color: #ffffff !important;
  font-family: var(--global-primary-nav-font-family);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 28px;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-lavie:hover,
.post-more-link:hover {
  background-color: var(--global-palette-btn-bg-hover);
}

/* ==========================================================================
   10. SINGLE ARTICLE STYLING
   ========================================================================== */
.lavie-single-article-wrapper {
  padding: 60px 0 100px;
}

.article-category-badge a {
  font-family: var(--global-primary-nav-font-family);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--global-palette1);
}

.article-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--global-palette3);
}

.article-body-content {
  font-family: var(--global-body-font-family);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: #333333;
}

.article-body-content h2 {
  font-family: var(--global-heading-font-family);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 300;
  color: var(--global-palette3);
  margin-top: 2.8rem;
  margin-bottom: 1.2rem;
}

.article-body-content blockquote {
  border-left: 3px solid var(--global-palette1);
  padding-left: 24px;
  margin: 2.5rem 0;
  font-family: var(--global-heading-font-family);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--global-palette3);
}

/* ==========================================================================
   11. FEATURED IN ADDON STYLING
   ========================================================================== */
.lavie-featured-in-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.featured-in-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--global-palette2);
  letter-spacing: 0.02em;
}

.featured-in-logo-item img {
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.featured-in-logo-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}


/* ==========================================================================
   12. PORTFOLIO ADDON STYLING
   ========================================================================== */
.lavie-portfolio-section {
  padding: 100px 0;
}

.portfolio-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--global-palette3);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.portfolio-desc p {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--global-palette5);
  margin: 0;
  max-width: 400px;
}

.portfolio-image-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
}

.portfolio-image-wrapper img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.portfolio-image-card:hover img {
  transform: scale(1.03);
}

.portfolio-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--global-palette2);
  color: #ffffff;
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 15px 25px;
  z-index: 2;
}

@media (min-width: 992px) {
  .portfolio-right-card {
    margin-top: 0;
  }
}


/* ==========================================================================
   13. CTA & TESTIMONIALS STYLING
   ========================================================================== */
.lavie-cta-section {
  background-color: #ffffff;
}

.cta-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--global-palette3);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.cta-gold-link {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--global-palette1);
  border-bottom: 1px solid var(--global-palette1);
  padding-bottom: 4px;
  transition: all 0.25s ease;
}

.cta-gold-link:hover {
  color: var(--global-palette3);
  border-bottom-color: var(--global-palette3);
}

.lavie-testimonials-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #f8f7f5;
}

.testimonials-left {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
}

.testimonials-overlay {
  background-color: transparent;
  padding-left: 8%;
}

.testimonials-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 15px;
}

.testimonials-subtitle {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--global-palette1);
}

.testimonials-right {
  padding: 30px;
}

.testimonial-image img {
  display: block;
}

.testimonial-quote {
  font-family: var(--global-heading-font-family);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--global-palette3);
  font-style: italic;
}

.testimonial-text p {
  font-family: var(--global-body-font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--global-palette5);
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-author {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--global-palette3);
}

.lavie-testimonials-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.lavie-testimonials-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--global-palette3);
  opacity: 1;
  width: 6px;
  height: 6px;
  margin: 0 4px;
}

.lavie-testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--global-palette3);
}


/* ==========================================================================
   14. ABOUT GRID STYLING
   ========================================================================== */
.lavie-about-grid-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-grid-col1, .about-grid-col2, .about-grid-col3 {
  padding-right: 20px;
}

.about-grid-primary-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 300;
  color: var(--global-palette3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-grid-secondary-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: 600;
  color: var(--global-palette3);
}

.about-grid-text p, .about-grid-text-html p {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--global-palette5);
  margin-bottom: 20px;
}

.about-grid-text-html strong {
  font-weight: 700;
  color: var(--global-palette3);
}

.btn-lavie-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--global-palette1);
  color: #ffffff !important;
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 42px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important;
  line-height: 1;
}

.btn-lavie-gold:hover {
  background-color: var(--global-palette3);
  color: #ffffff !important;
}


/* ==========================================================================
   15. PLANNING RESOURCES STYLING
   ========================================================================== */
.lavie-planning-resources-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.planning-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--global-palette1);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.planning-desc {
  max-width: 800px;
}

.planning-desc p {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--global-palette5);
}

.planning-article-card {
  margin-bottom: 30px;
}

.planning-article-img-wrapper {
  overflow: hidden;
  margin-bottom: 15px;
}

.planning-article-img-wrapper img {
  transition: transform 0.6s ease;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.planning-article-img-link:hover .planning-article-img-wrapper img {
  transform: scale(1.03);
}

.planning-article-title {
  text-align: left;
  margin-top: 15px;
}

.planning-article-title a {
  font-family: var(--global-primary-nav-font-family) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: var(--global-palette3) !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.planning-article-title a:hover {
  color: var(--global-palette1) !important;
}

.planning-readmore {
  text-align: left;
}

.readmore-link {
  font-family: var(--global-primary-nav-font-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--global-palette1);
  text-decoration: none;
  border-bottom: 1px solid var(--global-palette1);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.readmore-link:hover {
  color: var(--global-palette3);
  border-bottom-color: var(--global-palette3);
}


/* ==========================================================================
   16. TESTIMONIAL BANNER STYLING
   ========================================================================== */
.primeus-testimonial-banner-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  overflow: hidden;
}

.testimonial-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.testimonial-banner-text {
  font-family: var(--global-heading-font-family);
  font-size: 20px !important;
  font-weight: 300;
  line-height: 1.85 !important;
  letter-spacing: 0.08em !important;
  color: #ffffff;
  max-width: 900px;
  text-transform: uppercase;
  text-align: left;
  margin-left: 0;
}

.testimonial-banner-author {
  font-family: var(--global-primary-nav-font-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 30px !important;
  margin-bottom: 0;
  text-align: left;
}

.testimonial-banner-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-banner-pagination {
  position: relative !important;
  text-align: left !important;
  margin-top: 35px !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 10;
}

.primeus-testimonial-banner-wrapper .swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.35 !important;
  width: 6px !important;
  height: 6px !important;
  margin: 0 10px 0 0 !important;
  border-radius: 50% !important;
  transition: opacity 0.3s ease, background 0.3s ease !important;
  display: inline-block;
  cursor: pointer;
}

.primeus-testimonial-banner-wrapper .swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1 !important;
  width: 6px !important;
  height: 6px !important;
}


/* ==========================================================================
   17. FAQ ACCORDION STYLING
   ========================================================================== */
.primeus-faq-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.faq-main-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--global-palette3);
}

.faq-subtitle {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--global-palette5);
  max-width: 550px;
}

.primeus-accordion {
  border-top: 1px solid #e5e5e5;
  margin-top: 30px;
}

.faq-pane {
  border-bottom: 1px solid #e5e5e5;
}

.faq-header {
  background: transparent;
  border: none;
  padding: 24px 0;
  color: var(--global-palette3);
  font-family: var(--global-heading-font-family);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  transition: all 0.3s ease;
  outline: none;
}

.faq-header:focus {
  outline: none;
}

.faq-question-text {
  padding-right: 15px;
}

.faq-icon-indicator {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
  content: '';
  position: absolute;
  background-color: var(--global-palette3);
  transition: transform 0.3s ease;
}

/* Plus icon styling */
.faq-icon-indicator::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}
.faq-icon-indicator::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

/* Active panel (Minus icon) */
.faq-pane.active .faq-icon-indicator::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-pane.active .faq-icon-indicator::before {
  transform: rotate(180deg);
}

.faq-panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-pane.active .faq-panel-content {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-panel-body {
  padding: 0 0 24px 0;
}

.faq-panel-body p {
  font-family: var(--global-body-font-family);
  font-size: 14px;
  line-height: 1.8;
  color: var(--global-palette5);
  margin: 0;
}

.faq-right-image-wrapper {
  overflow: hidden;
}


/* ==========================================================================
   18. WHY WE LOVE STYLING
   ========================================================================== */
.primeus-why-we-love-section {
  padding: 100px 0;
  background-color: #f8f7f5;
}

.why-love-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  color: var(--global-palette1);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.why-love-paragraph {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--global-palette3);
}

.why-love-paragraph.font-weight-bold {
  font-weight: 600;
}

/* ==========================================================================
   19. CONTACT FORM STYLING
   ========================================================================== */
.primeus-contact-form-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.contact-main-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--global-palette3);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.contact-sub-info {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--global-palette3);
}

.form-field-wrapper {
  position: relative;
  border: 1px solid var(--global-palette3);
  padding: 10px 15px;
  margin-bottom: 20px;
  background-color: #ffffff;
}

.form-field-wrapper label {
  display: block;
  font-family: var(--global-primary-nav-font-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--global-palette3);
  margin-bottom: 2px;
  line-height: 1.2;
}

.form-field-wrapper input,
.form-field-wrapper select,
.form-field-wrapper textarea {
  display: block;
  width: 100%;
  border: none !important;
  background: transparent !important;
  padding: 2px 0 6px 0 !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--global-palette3);
  font-family: var(--global-body-font-family);
  font-size: 14px;
}

.form-field-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 12px 10px;
  padding-right: 25px !important;
}

.form-radio-group label.radio-group-title {
  font-family: var(--global-primary-nav-font-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--global-palette3);
}

.form-radio-group .form-check-label {
  font-family: var(--global-body-font-family);
  font-size: 14px;
  color: var(--global-palette3);
}

.form-radio-group .form-check-input {
  border-color: var(--global-palette3);
}

.form-radio-group .form-check-input:checked {
  background-color: var(--global-palette3);
  border-color: var(--global-palette3);
}

.btn-primeus-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--global-palette1);
  color: #ffffff !important;
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 16px 50px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primeus-submit:hover {
  background-color: var(--global-palette3);
}


/* ==========================================================================
   20. RECOMMENDED VENUES STYLING
   ========================================================================== */
.primeus-venues-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.venues-subtitle {
  font-family: var(--global-primary-nav-font-family);
  font-size: 11px;
  font-weight: 700;
  color: var(--global-palette1);
  letter-spacing: 0.18em;
}

.venues-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--global-palette3);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.venues-desc {
  max-width: 800px;
}

.venues-desc p {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--global-palette5);
}

.btn-venues-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--global-palette2);
  color: #ffffff !important;
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 45px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-venues-list:hover {
  background-color: var(--global-palette1);
}

.venue-card-link-wrapper {
  display: block;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
}

.venue-card {
  background-color: var(--global-palette3);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.venue-card-link-wrapper:hover .venue-card {
  transform: translateY(-5px);
}

.venue-card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.venue-card-body {
  background-color: var(--global-palette3);
}

.venue-card-title {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  color: var(--global-palette1);
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.venue-card-text {
  font-family: var(--global-body-font-family);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #ffffff;
}


/* ==========================================================================
   21. FOOTER ADDON STYLING
   ========================================================================== */
.primeus-footer-section {
  padding: 100px 0 0 0;
  background-color: #f8f7f5;
  color: var(--global-palette3);
}

.footer-gold-v {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.footer-socials a {
  color: var(--global-palette3);
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--global-palette1);
}

.footer-menu-title, .footer-info-title {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--global-palette3);
  text-transform: uppercase;
}

.footer-menu-link {
  font-family: var(--global-primary-nav-font-family);
  font-size: 12px;
  font-weight: 700;
  color: var(--global-palette1) !important;
  text-decoration: underline !important;
  letter-spacing: 0.12em;
  line-height: 2.2;
  transition: color 0.3s ease;
}

.footer-menu-link:hover {
  color: var(--global-palette3) !important;
}

.footer-info-text p {
  font-family: var(--global-body-font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--global-palette5);
}

.footer-phone-number a {
  font-family: var(--global-primary-nav-font-family);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--global-palette3) !important;
  text-decoration: none !important;
  letter-spacing: 0.02em;
}

.footer-phone-subtext {
  font-family: var(--global-primary-nav-font-family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--global-palette3);
}

.footer-copyright-bar {
  background-color: var(--global-palette3);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  color: #ffffff;
}

.footer-copyright-bar p {
  font-family: var(--global-primary-nav-font-family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #b0b0b0;
}

.footer-copyright-bar a {
  color: var(--global-palette1);
  text-decoration: none;
}

.footer-copyright-bar a:hover {
  text-decoration: underline;
}


/* ==========================================================================
   19. WEDDING PHOTOGRAPHY PORTFOLIO ADDON
   ========================================================================== */
.primeus-photo-portfolio-section {
  padding: 120px 0;
  background-color: #F2F1EC !important;
}

.photo-portfolio-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.portfolio-slide-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  min-height: 450px;
  background-size: cover;
  background-position: center;
}

.photo-portfolio-pagination {
  position: absolute !important;
  bottom: 25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10;
  text-align: center !important;
}

.photo-portfolio-swiper .swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.5 !important;
  width: 6px !important;
  height: 6px !important;
  margin: 0 5px !important;
  border-radius: 50% !important;
  transition: opacity 0.3s ease, background 0.3s ease !important;
  display: inline-block;
  cursor: pointer;
}

.photo-portfolio-swiper .swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1 !important;
}

.photo-portfolio-content {
  padding-left: 55px;
}

@media (max-width: 991px) {
  .photo-portfolio-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

.portfolio-title {
  font-family: var(--global-heading-font-family);
  font-size: 54px !important;
  font-weight: 300;
  line-height: 1.12 !important;
  letter-spacing: -0.01em !important;
  color: var(--global-palette3);
  text-transform: none !important;
  margin-bottom: 35px !important;
}

.portfolio-subtitle {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.15em !important;
  color: #232323 !important;
  text-transform: uppercase !important;
  margin-top: 40px !important;
  margin-bottom: 18px !important;
}

.portfolio-description {
  font-family: var(--global-body-font-family);
  font-size: 15px !important;
  font-weight: 300;
  line-height: 1.8 !important;
  color: #808184 !important;
  max-width: 520px;
  margin-bottom: 40px !important;
}

.btn-primeus-portfolio {
  font-family: var(--global-primary-nav-font-family);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background-color: var(--global-palette2) !important;
  padding: 15px 35px !important;
  border-radius: 6px !important;
  border: none !important;
  display: inline-block !important;
  text-decoration: none !important;
  box-shadow: 0px 0px 0px -7px rgba(0,0,0,0);
  transition: opacity 0.3s ease !important;
}

.btn-primeus-portfolio:hover {
  opacity: 0.85 !important;
  color: #ffffff !important;
}

/* ==========================================================================
   20. PROCESS & EXPERIENCE ADDON
   ========================================================================== */
.primeus-process-section {
  padding: 120px 0;
  background-color: #ffffff !important;
}

.process-step-item {
  margin-bottom: 50px;
}

.step-number {
  font-family: var(--global-heading-font-family);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--global-palette3);
  margin-bottom: 10px;
}

.step-title {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--global-palette1);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-block;
}

.step-desc {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #808184;
  max-width: 480px;
  margin-bottom: 35px;
}

.step-img-wrap {
  width: 100%;
}

.step-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.process-main-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--global-palette3);
  margin-bottom: 60px !important;
}

.process-testimonial-block {
  padding-left: 20px;
}

.process-quote-svg {
  color: var(--global-palette1);
  width: 34px;
  height: 34px;
}

.process-quote-text {
  font-family: var(--global-heading-font-family);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--global-palette3);
  margin-top: -5px;
}

@media (max-width: 991px) {
  .process-right-col-top {
    margin-top: 40px;
  }
  .process-testimonial-block {
    padding-left: 0;
    margin-top: 20px;
  }
}

/* ==========================================================================
   21. GALLERY ADDON STYLES
   ========================================================================== */
.primeus-gallery-wrapper {
  margin: 80px 0;
  width: 100%;
}

@media (max-width: 991px) {
  .primeus-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 575px) {
  .primeus-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-img-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: #f7f7f7;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-hover-overlay span {
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

.gallery-item:hover .gallery-hover-overlay span {
  transform: translateY(0);
}

/* Lightbox styles */
.primeus-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  user-select: none;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img {
  display: inline-block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 40px;
  right: 50px;
  font-size: 48px;
  line-height: 1;
}

.lightbox-prev {
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 767px) {
  .lightbox-close {
    top: 20px;
    right: 25px;
  }
  .lightbox-prev {
    left: 20px;
  }
  .lightbox-next {
    right: 20px;
  }
}

/* ==========================================================================
   14. SPLIT TESTIMONIAL ADDON STYLING
   ========================================================================== */
.lavie-split-testimonial-container {
  margin: 60px 0;
  width: 100%;
}

.lavie-split-testimonial-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.lavie-split-testimonial-left {
  flex: 0 0 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .lavie-split-testimonial-left {
    flex: 0 0 42%;
    padding: 60px 0 60px 60px; /* Flush right against the image */
  }
}

.lavie-split-testimonial-card {
  background-color: #ffffff;
  padding: 50px 45px;
  width: 100%;
  box-shadow: 0 5px 25px rgba(0,0,0,0.02);
}

.lavie-split-testimonial-text {
  font-family: var(--global-heading-font-family); /* Serif font */
  font-size: 16px;
  line-height: 1.8;
  color: var(--global-palette3); /* Darker text */
  font-weight: 300;
  margin-bottom: 25px;
}

.lavie-split-testimonial-text p {
  margin-bottom: 15px;
}
.lavie-split-testimonial-text p:last-child {
  margin-bottom: 0;
}

.lavie-split-testimonial-author {
  font-family: var(--global-primary-nav-font-family);
  font-size: 14px;
  font-weight: 700;
  color: var(--global-palette3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lavie-split-testimonial-right {
  flex: 0 0 100%;
}

@media (min-width: 992px) {
  .lavie-split-testimonial-right {
    flex: 0 0 58%;
  }
}

.lavie-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lavie-split-video-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  text-decoration: none !important;
}

.lavie-split-video-img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

.lavie-split-video-link:hover .lavie-split-video-img {
  transform: scale(1.03);
}

.lavie-split-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lavie-split-video-link:hover .lavie-split-video-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.lavie-split-video-play-btn {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--global-palette3, #222222);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
}

.lavie-split-video-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  fill: currentColor;
}

.lavie-split-video-link:hover .lavie-split-video-play-btn {
  transform: scale(1.12);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   15. MIAMI WEDDING VIDEOGRAPHERS STYLING
   ========================================================================== */
.lavie-miami-videographers-section {
  padding: 95px 0;
  background-color: var(--global-palette6);
}

.lavie-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.lavie-video-wrapper iframe,
.lavie-video-wrapper object,
.lavie-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lavie-videographers-content {
  text-align: center;
}

.lavie-videographers-content .section-title-primary {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--global-palette3);
  letter-spacing: 0.01em;
}

.lavie-videographers-content .section-subtitle-secondary {
  font-family: var(--global-primary-nav-font-family);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--global-palette3);
  text-transform: uppercase;
}

.lavie-gold-divider {
  width: 50px;
  height: 2px;
  background-color: var(--global-palette1);
  margin: 0 auto;
}

.lavie-videographers-content .section-body-text {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  line-height: 1.8;
  color: var(--global-palette4);
  font-weight: 300;
}

/* ==========================================================================
   16. WEDDING FILM PROCESS STYLING
   ========================================================================== */
.lavie-film-process-section {
  padding: 80px 0;
  background-color: var(--global-palette9);
}

.lavie-process-step {
  display: flex;
  align-items: flex-start;
}

.lavie-step-number-col {
  margin-top: -10px; /* Slight optical adjustment */
}

.lavie-step-number {
  font-family: var(--global-heading-font-family);
  font-size: 60px;
  line-height: 1;
  color: var(--global-palette1);
  font-weight: 300;
  display: block;
}

.lavie-step-content-title {
  font-family: var(--global-heading-font-family);
  font-size: 26px;
  font-weight: 300;
  color: var(--global-palette3);
  margin-bottom: 15px;
}

.lavie-step-content-text {
  font-family: var(--global-body-font-family);
  font-size: 15px;
  line-height: 1.8;
  color: var(--global-palette5);
  font-weight: 300;
}

/* ==========================================================================
   17. CINEMATOGRAPHY COLLECTIONS STYLING
   ========================================================================== */
.lavie-cinematography-collections-section {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
}

.lavie-collections-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.53;
  background-color: var(--global-palette3);
  z-index: 1;
}

.lavie-cinematography-collections-section .container {
  position: relative;
  z-index: 2;
}

.lavie-collections-content-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.lavie-collections-subtitle {
  font-family: var(--global-primary-nav-font-family);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--global-palette9);
  text-transform: uppercase;
  margin-bottom: 25px;
}

.lavie-collections-title {
  font-family: var(--global-body-font-family);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--global-palette9);
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 0;
}

/* ==========================================================================
   18. COLLECTIONS HERO STYLING
   ========================================================================== */
.lavie-collections-hero-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 80px;
}

.lavie-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--global-palette3);
  opacity: 0.10;
  z-index: 1;
}

.lavie-collections-hero-section .container {
  position: relative;
  z-index: 2;
}

.lavie-hero-content-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.lavie-hero-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--global-palette9);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
}

.lavie-hero-subtitle {
  font-family: var(--global-body-font-family);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--global-palette9);
  line-height: 1.6;
  margin-bottom: 35px;
}

.lavie-hero-btn-wrap {
  margin-top: 15px;
}

/* ==========================================================================
   19. LET'S TALK SECTION STYLING
   ========================================================================== */
.lavie-lets-talk-section {
  padding: 120px 0;
  text-align: center;
  background-color: var(--global-palette9);
}

.lavie-lets-talk-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--global-palette3);
  line-height: 1;
  margin-bottom: 25px;
}

.lavie-lets-talk-link {
  font-family: var(--global-primary-nav-font-family);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--global-palette1);
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.lavie-lets-talk-link:hover {
  color: var(--global-palette2);
  text-decoration: underline;
}

/* ==========================================================================
   20. COLLECTION SPLIT SECTION STYLING
   ========================================================================== */
.lavie-collection-split-section {
  width: 100%;
}

.lavie-col-split-img-col {
  min-height: 400px;
}

@media (min-width: 768px) {
  .lavie-col-split-img-col {
    min-height: 60vh; /* Mimics kt-inner-column-height-full and minimum heights on original site */
  }
}

.lavie-col-split-img-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.lavie-col-split-text-col {
  background-color: var(--global-palette9); /* White */
  position: relative;
  padding: 60px 40px;
}

@media (min-width: 992px) {
  .lavie-col-split-text-col {
    padding: 80px 10%;
  }
}

.lavie-col-split-text-wrap {
  width: 100%;
  max-width: 600px;
  position: relative; /* For badge positioning */
}

.lavie-col-split-title {
  font-family: var(--global-heading-font-family); /* Calluna */
  font-size: var(--global-kb-font-size-lg, 2rem);
  font-weight: 300;
  color: var(--global-palette3); /* Dark */
  margin-bottom: var(--global-kb-spacing-sm, 1.5rem);
}

.lavie-col-split-desc {
  font-family: var(--global-body-font-family);
  font-size: 1rem;
  color: var(--global-palette3);
  margin-bottom: 25px;
  line-height: 1.6;
}

.lavie-col-split-btn-wrap {
  margin-top: var(--global-kb-spacing-md, 2rem);
}

.lavie-btn-global {
  display: inline-block;
  background-color: var(--global-palette4); /* Pinkish/Beige global button */
  color: var(--global-palette9); /* White */
  padding: 12px 24px;
  text-transform: uppercase;
  font-family: var(--global-primary-nav-font-family);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lavie-btn-global:hover {
  background-color: var(--global-palette5); /* Darker shade */
  color: var(--global-palette9);
}

.lavie-col-split-badge {
  position: absolute;
  bottom: -40px; /* Overlap the edge slightly or just sit in corner */
  right: -40px;
  width: 150px;
  height: 150px;
  z-index: 10;
  animation: lavie-spin 20s linear infinite;
}

@keyframes lavie-spin {
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .lavie-col-split-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   21. LATEST ARTICLES STYLING
   ========================================================================== */
.lavie-latest-articles-section {
  padding: 80px 0;
  background-color: var(--global-palette9);
}

.lavie-latest-articles-title {
  text-align: center;
  font-family: var(--global-heading-font-family);
  font-size: var(--global-kb-font-size-lg, 2rem);
  font-weight: 300;
  color: var(--global-palette3);
  margin-bottom: 50px;
}

.lavie-latest-article-item {
  margin-bottom: 40px;
}

.lavie-latest-article-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 150%; /* 2:3 aspect ratio */
  background-color: #f5f5f5;
  border-radius: 4px;
}

.lavie-latest-article-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lavie-latest-article-img-wrap:hover img {
  transform: scale(1.05);
}

.lavie-latest-article-content {
  padding-top: 25px;
}

.lavie-latest-article-item-title {
  font-family: var(--global-heading-font-family);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.3;
}

.lavie-latest-article-item-title a {
  color: var(--global-palette3);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lavie-latest-article-item-title a:hover {
  color: var(--global-palette1); /* Gold */
}

.lavie-latest-article-excerpt {
  font-family: var(--global-body-font-family);
  font-size: 1rem;
  color: var(--global-palette3);
  margin-bottom: 20px;
  line-height: 1.6;
}

.lavie-latest-article-readmore {
  display: inline-flex;
  align-items: center;
  font-family: var(--global-primary-nav-font-family);
  font-size: 11px;
  font-weight: 700;
  color: var(--global-palette1);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lavie-latest-article-readmore:hover {
  color: var(--global-palette2);
}

.lavie-readmore-icon svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  fill: currentColor;
}

/* ==========================================================================
   22. CORPORATE HERO SECTION STYLING
   ========================================================================== */
.lavie-corp-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lavie-corp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.lavie-corp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.lavie-corp-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.lavie-corp-hero-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 60px 50px;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-top: 4px solid var(--global-palette1); /* Gold accent top border */
}

@media (max-width: 767px) {
  .lavie-corp-hero-wrap {
    min-height: 60vh;
  }
  .lavie-corp-hero-content {
    padding: 40px 30px;
  }
}

.lavie-corp-hero-subtitle {
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--global-palette1);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.5;
}

.lavie-corp-hero-title {
  font-family: var(--global-heading-font-family);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--global-palette3);
  margin-bottom: 25px;
  line-height: 1.1;
}

.lavie-corp-hero-intro {
  font-family: var(--global-body-font-family);
  font-size: 1.1rem;
  color: var(--global-palette3);
  margin-bottom: 35px;
  line-height: 1.6;
}

.lavie-corp-hero-btn {
  display: inline-block;
  background: var(--global-palette3);
  color: var(--global-palette9);
  padding: 16px 36px;
  font-family: var(--global-primary-nav-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 3px;
}

.lavie-corp-hero-btn:hover {
  background: var(--global-palette1);
  color: var(--global-palette9);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   23. CORPORATE BRANDS SECTION STYLING
   ========================================================================== */
.lavie-corp-brands-wrap {
  padding: 100px 0;
  background-color: #fafafa; /* Very light grey */
}

.lavie-corp-brands-title {
  font-family: var(--global-primary-nav-font-family);
  font-size: 14px;
  font-weight: 700;
  color: var(--global-palette1);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.lavie-corp-brands-intro {
  font-family: var(--global-body-font-family);
  font-size: 1.1rem;
  color: var(--global-palette3);
  margin-bottom: 60px;
  line-height: 1.6;
}

.lavie-corp-brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
}

.lavie-corp-brand-item {
  flex: 0 1 auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  max-width: 150px; /* Keep logos reasonably sized */
}

.lavie-corp-brand-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-5px);
}

.lavie-corp-brand-img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .lavie-corp-brands-grid {
    gap: 50px 80px;
  }
}

/* ==========================================================================
   24. CORPORATE OFFERINGS SECTION STYLING
   ========================================================================== */
.lavie-corp-offerings-wrap {
  padding: 100px 0;
  background-color: var(--global-palette9); /* White */
}

.lavie-corp-offerings-main-title {
  text-align: center;
  font-family: var(--global-heading-font-family);
  font-size: var(--global-kb-font-size-lg, 2rem);
  font-weight: 300;
  color: var(--global-palette3);
  margin-bottom: 70px;
}

.lavie-corp-offering-card {
  background: #ffffff;
  padding: 40px 30px;
  height: 100%;
  border-top: 2px solid #eaeaea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.lavie-corp-offering-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--global-palette1); /* Gold */
  transition: width 0.4s ease;
}

.lavie-corp-offering-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-top-color: transparent;
}

.lavie-corp-offering-card:hover::before {
  width: 100%;
}

.lavie-corp-offering-num {
  font-family: var(--global-primary-nav-font-family);
  font-size: 14px;
  font-weight: 700;
  color: var(--global-palette4); /* Pale accent */
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.lavie-corp-offering-title {
  font-family: var(--global-heading-font-family);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--global-palette3);
  margin-bottom: 20px;
  line-height: 1.3;
}

.lavie-corp-offering-line {
  width: 40px;
  height: 1px;
  background-color: var(--global-palette1);
  margin-bottom: 25px;
  transition: width 0.4s ease;
}

.lavie-corp-offering-card:hover .lavie-corp-offering-line {
  width: 80px;
}

.lavie-corp-offering-desc {
  font-family: var(--global-body-font-family);
  font-size: 1rem;
  color: var(--global-palette3);
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.85;
}

/* ==========================================================================
   25. CORPORATE REASONS SECTION STYLING
   ========================================================================== */
.lavie-corp-reasons-wrap {
  padding: 100px 0;
  background-color: #ffffff;
}

.lavie-corp-reasons-left {
  padding-right: 40px;
}

@media (min-width: 992px) {
  .lavie-corp-reasons-sticky {
    position: sticky;
    top: 150px;
  }
}

.lavie-corp-reasons-maintitle {
  font-family: var(--global-primary-nav-font-family);
  font-size: 14px;
  font-weight: 700;
  color: var(--global-palette1);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.lavie-corp-reasons-maintitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 50px;
  height: 2px;
  background-color: var(--global-palette1);
}

.lavie-corp-reasons-intro {
  font-family: var(--global-heading-font-family);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--global-palette3);
  line-height: 1.4;
  margin-top: 30px;
  margin-bottom: 40px;
}

.lavie-corp-reasons-right {
  margin-top: 40px;
}

@media (min-width: 992px) {
  .lavie-corp-reasons-right {
    margin-top: 0;
  }
}

.lavie-corp-reason-card {
  position: relative;
  padding: 40px;
  margin-bottom: 30px;
  background-color: #fafafa;
  border-radius: 4px;
  height: calc(100% - 30px);
  z-index: 1;
  transition: background-color 0.4s ease;
}

.lavie-corp-reason-card:hover {
  background-color: var(--global-palette3); /* Dark */
}

.lavie-corp-reason-watermark {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--global-heading-font-family);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  z-index: -1;
  transition: color 0.4s ease;
}

.lavie-corp-reason-card:hover .lavie-corp-reason-watermark {
  color: rgba(255, 255, 255, 0.05);
}

.lavie-corp-reason-title {
  font-family: var(--global-heading-font-family);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--global-palette3);
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.lavie-corp-reason-card:hover .lavie-corp-reason-title {
  color: var(--global-palette1); /* Gold */
}

.lavie-corp-reason-desc {
  font-family: var(--global-body-font-family);
  font-size: 1rem;
  color: var(--global-palette3);
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 0;
  transition: color 0.4s ease;
}

.lavie-corp-reason-card:hover .lavie-corp-reason-desc {
  color: #ffffff;
  opacity: 0.9;
}

/* ==========================================================================
   26. FOOTER BUG FIXES (PHONE WRAPPING & SOCIAL HOVER)
   ========================================================================== */
.footer-phone-number, .footer-phone-number a {
  white-space: nowrap !important;
}

.footer-socials .social-link {
  transition: color 0.3s ease;
}

.footer-socials .social-link:hover {
  color: var(--global-palette1) !important;
}

/* ==========================================================================
   27. PROCESS STEPS ADDON HOVER EFFECTS
   ========================================================================== */
.process-step-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05) !important;
  border-color: var(--global-palette1) !important;
}
