.elementor-304 .elementor-element.elementor-element-834939d{--display:flex;}.elementor-304 .elementor-element.elementor-element-0165d58{padding:0px 0px 0px 0px;}.elementor-304 .elementor-element.elementor-element-0165d58.elementor-element{--align-self:center;}.elementor-304 .elementor-element.elementor-element-e992cd7{--display:flex;}.elementor-304 .elementor-element.elementor-element-8bae23c{--display:flex;}.elementor-304 .elementor-element.elementor-element-e84d3ac{width:100%;max-width:100%;margin:-21px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;border-style:none;}.elementor-304 .elementor-element.elementor-element-e84d3ac.elementor-element{--align-self:flex-start;}.elementor-304 .elementor-element.elementor-element-7e7b41b{--display:flex;}.elementor-304 .elementor-element.elementor-element-5e54ef3{--display:flex;}.elementor-304 .elementor-element.elementor-element-0053fd8{--display:flex;}.elementor-304 .elementor-element.elementor-element-5cd9057{--display:flex;}.elementor-304 .elementor-element.elementor-element-415cbc3{--display:flex;}.elementor-304 .elementor-element.elementor-element-8b4c8bb{--display:flex;--min-height:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0165d58 *//* ==========================================================================
   Design Tokens & CSS Variables
   ========================================================================== */
:root {
  --color-accent: #B58B8E;      /* Dusty Rose */
  --color-links: #8F6469;       /* Deep Rose */
  --color-heading: #241C19;     /* Deep Espresso */
  --color-body: #4A403B;        /* Warm Charcoal */
  --color-border: #D8C9B9;      /* Soft Taupe */
  --color-surface: #F1E9DF;     /* Warm Sand */
  --color-bg-site: #F6F0E7;     /* Warm Ivory */
  --color-bg-content: #FBF8F3;  /* Soft Ivory */

  --font-body: 'Manrope', sans-serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-accent: 'Cinzel', serif;
  --font-script: 'Great Vibes', cursive;
}

/* ==========================================================================
   Base Reset
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
  background-color: var(--color-bg-site);
}

/* ==========================================================================
   Hero Container Fixes
   ========================================================================== */
.hero-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background image stretching issue fix */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

/* Dynamic Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(24, 18, 15, 0.88) 0%, 
    rgba(24, 18, 15, 0.6) 40%, 
    rgba(24, 18, 15, 0.1) 85%
  );
  z-index: 2;
}

/* ==========================================================================
   Content & Responsive Typography Fixes
   ========================================================================== */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 650px;
  padding-left: 6vw;
  padding-right: 24px;
}

/* Prevent bad line-breaks */
.hero-content .main-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  color: #ffffff;
  /* Fluid font scaling based on screen size */
  font-size: clamp(2.2rem, 4vw, 4rem); 
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-content .tagline {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  line-height: 1.3;
  color: var(--color-border);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.cursive-text {
  font-family: var(--font-script);
  font-size: clamp(3rem, 5vw, 5rem);
  text-transform: lowercase;
  color: var(--color-accent);
  display: inline-block;
  font-weight: 400;
  margin-left: 6px;
  line-height: 0.8;
  vertical-align: baseline;
}

.hero-content .description {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-surface);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}

/* ==========================================================================
   Button & Controls
   ========================================================================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background-color: var(--color-links);
  color: var(--color-bg-content);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--color-accent);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--color-accent);
  color: var(--color-heading);
  transform: translateY(-2px);
}

.button-icon {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Side Scroll Arrow Indicator */
.scroll-indicator {
  position: absolute;
  right: 3vw;
  bottom: 6vh;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-border);
}

.scroll-text {
  writing-mode: vertical-rl;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 3px;
}

.scroll-arrow {
  font-size: 1rem;
}

/* ==========================================================================
   Mobile Display Adjustment
   ========================================================================== */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .scroll-indicator {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7a61c94 *//* SECTION CONTAINER */
.destination-section {
  background-color: #0E0C0A !important;
  padding: 80px 0 !important;
  font-family: 'Manrope', sans-serif !important;
  text-align: center !important;
  color: #F8F3ED !important;
  overflow: hidden !important;
  width: 100% !important;
}

/* HEADER */
.destination-header {
  margin-bottom: 45px !important;
  padding: 0 20px !important;
}

.destination-header .sub-heading {
  display: block !important;
  font-family: 'Cinzel', serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 2px !important;
  color: #D3A775 !important;
  font-weight: 500 !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
}

.destination-header .main-heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem) !important;
  color: #FFFFFF !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

/* CAROUSEL WRAPPER */
.destination-carousel-wrapper {
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  padding: 25px 0 35px 0 !important;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent) !important;
}

/* CAROUSEL TRACK - FIXED FOR NO GAP */
.carousel-track {
  display: flex !important;
  gap: 20px !important;
  width: max-content !important;
  will-change: transform !important;
  animation: seamlessScroll 28s linear infinite !important;
}

.destination-carousel-wrapper:hover .carousel-track {
  animation-play-state: paused !important;
}

/* EXACT 50% SHIFT FOR PERFECT LOOP */
@keyframes seamlessScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 10px), 0, 0);
  }
}

/* CARDS */
.destination-card {
  display: block !important;
  text-decoration: none !important;
  position: relative !important;
  width: 200px !important;
  height: 300px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(211, 167, 117, 0.15) !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease !important;
}

.destination-card:hover {
  transform: translateY(-12px) scale(1.03) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(211, 167, 117, 0.2) !important;
  border-color: rgba(211, 167, 117, 0.6) !important;
}

.destination-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.destination-card:hover img {
  transform: scale(1.1) !important;
}

.card-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  padding: 40px 12px 18px 12px !important;
  background: linear-gradient(to top, rgba(14, 12, 10, 0.95) 0%, rgba(14, 12, 10, 0.5) 60%, transparent 100%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-end !important;
  box-sizing: border-box !important;
}

.card-overlay h3 {
  color: #FFFFFF !important;
  font-family: 'Cinzel', serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  margin: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  transition: color 0.3s ease !important;
}

.destination-card:hover .card-overlay h3 {
  color: #D3A775 !important;
}

/* BUTTON */
.btn-container {
  margin-top: 20px !important;
  padding: 0 20px !important;
}

.explore-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background-color: transparent !important;
  color: #D3A775 !important;
  border: 1px solid #D3A775 !important;
  padding: 12px 28px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-family: 'Cinzel', serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 1.5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}

.explore-btn:hover {
  background-color: #D3A775 !important;
  color: #0E0C0A !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(211, 167, 117, 0.2) !important;
}

.explore-btn i {
  font-size: 0.8rem !important;
  transition: transform 0.3s ease !important;
}

.explore-btn:hover i {
  transform: translateX(4px) !important;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .destination-section {
    padding: 50px 0 !important;
  }
  .destination-card {
    width: 160px !important;
    height: 240px !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dbcbac7 *//* ==========================================
   GLOBAL VARIABLES & RESET
   ========================================== */
:root {
  --gold-accent: #d7aa50;
  --gold-light: #e5c173;
  --gold-border: rgba(215, 170, 80, 0.25);
  --dark-bg: #0c0d0f;
  --dark-card: rgba(22, 23, 27, 0.85);
  --light-bg: #fdfaf5;
  --text-dark: #2a2a2a;
  --text-light: #e0e0e0;
  --text-muted: #999999;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
}

/* Common Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-header .sub-heading {
  display: block;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold-accent);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-header .main-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  margin: 0;
}

/* ==========================================
   SECTION 1: WHY CHOOSE US (DARK)
   ========================================== */
.why-choose-section {
  background-color: var(--dark-bg);
  padding: 50px 20px;
  color: var(--text-light);
}

.why-choose-section .main-heading {
  color: #ffffff;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 1350px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 180px;
  background: var(--dark-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-accent);
  box-shadow: 0 8px 25px rgba(215, 170, 80, 0.15);
  background: rgba(30, 31, 36, 0.95);
}

.feature-card .icon-box {
  color: var(--gold-accent);
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
  transform: scale(1.15) rotate(5deg);
}

.feature-card .card-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--gold-light);
  margin: 0 0 2px 0;
  font-weight: 600;
  line-height: 1.2;
}

.feature-card .card-text p {
  font-size: 11px;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.35;
  font-weight: 300;
}

/* ==========================================
   SECTION 2: OUR PROCESS (LIGHT)
   ========================================== */
.process-section {
  background-color: var(--light-bg);
  padding: 55px 20px;
  color: var(--text-dark);
}

.process-section .main-heading {
  color: var(--text-dark);
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

/* Connecting Line */
.timeline-line {
  position: absolute;
  top: 25px; /* Aligned with circle centers */
  left: 8%;
  right: 8%;
  height: 1px;
  border-top: 1.5px dashed var(--gold-accent);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

/* Step Circle */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7c77f, #b88a38);
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 0 6px var(--light-bg), 0 4px 10px rgba(184, 138, 56, 0.25);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px var(--light-bg), 0 6px 18px rgba(184, 138, 56, 0.45);
}

.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin: 0 0 6px 0;
  font-weight: 600;
}

.process-step p {
  font-size: 12px;
  color: #666666;
  margin: 0;
  line-height: 1.4;
  font-weight: 300;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    border-top: none;
    border-left: 1.5px dashed var(--gold-accent);
  }

  .process-step {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9485a64 */@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Reset and Force Black Background */
html, body {
    background-color: #000000 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 20px 15px !important;
    width: 100%;
    min-height: 100vh;
}

.portfolio-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Horizontally center rakhega */
    text-align: center;
}

/* Subtitle & Title Header */
.section-subtitle {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px; /* Reduced gap */
    color: #ffffff;
}

/* Filter Navigation Buttons */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px; /* Reduced gap */
}

.filter-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e0e0e0;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: 'Cinzel', serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #ffd700;
    color: #ffffff;
    background: rgba(255, 215, 0, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ffd700, #c59b27);
    border-color: #ffd700;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px; /* Reduced gap */
}

.portfolio-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    border-color: #ffd700;
}

.portfolio-card:hover img {
    transform: scale(1.06);
}

.portfolio-card.hide {
    display: none;
}

/* Bottom Action Button */
.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #c59b27);
    color: #000000;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: linear-gradient(135deg, #ffe033, #d4a72c);
    transform: translateY(-2px);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5bce52e */@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600&display=swap');

.testimonials-section {
  width: 100% !important;
  background-color: #F8ECE8 !important; /* Soft warm nude/blush tone */
  padding: 80px 4vw !important;
  box-sizing: border-box !important;
  font-family: 'Manrope', sans-serif !important;
  color: #2D2421 !important;
  overflow: hidden !important;
}

.testimonials-wrapper {
  max-width: 1350px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 50px !important;
}

/* LEFT HEADING BLOCK */
.testimonials-left {
  flex: 0 0 28% !important;
  max-width: 28% !important;
  z-index: 2 !important;
}

.tagline {
  font-size: 0.72rem !important;
  letter-spacing: 2.5px !important;
  color: #A36B5E !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
}

.main-heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  color: #2D2421 !important;
  margin-bottom: 30px !important;
}

.read-more-btn {
  display: inline-block !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  color: #A36B5E !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}

.read-more-btn:hover {
  color: #2D2421 !important;
  transform: translateX(4px) !important;
}

/* RIGHT INFINITE CAROUSEL TRACK */
.testimonials-right {
  flex: 1 !important;
  overflow: hidden !important;
  position: relative !important;
  padding: 25px 0 !important; /* Space for pop-up elevation */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important;
}

.carousel-track {
  display: flex !important;
  gap: 24px !important;
  width: max-content !important;
  animation: infiniteScroll 22s linear infinite !important;
}

/* PAUSE SCROLLING ON MOUSE HOVER */
.testimonials-right:hover .carousel-track {
  animation-play-state: paused !important;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

/* CARD LAYOUT & POP-UP ANIMATION */
.review-card {
  background: #FAF5F1 !important;
  border-radius: 16px !important;
  padding: 36px 30px 30px 30px !important;
  width: 310px !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 15px rgba(163, 107, 94, 0.05) !important;
  
  /* Smooth Pop-up Transition */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  cursor: pointer !important;
}

/* MOUSE HOVER POP-UP EFFECT */
.review-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 18px 35px rgba(100, 60, 50, 0.12) !important;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2.8rem !important;
  line-height: 1 !important;
  color: #A36B5E !important;
  margin-bottom: -10px !important;
}

.review-text {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #4A3E3B !important;
  margin-bottom: 28px !important;
  font-weight: 400 !important;
}

/* AUTHOR BLOCK */
.author-block {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.author-img {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.author-info {
  display: flex !important;
  flex-direction: column !important;
}

.author-name {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  color: #2D2421 !important;
  margin: 0 0 2px 0 !important;
  text-transform: uppercase !important;
}

.event-location {
  font-size: 0.75rem !important;
  color: #8C7A75 !important;
  margin: 0 !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .testimonials-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .testimonials-left {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .review-card {
    width: 270px !important;
    padding: 28px 22px 22px 22px !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-47f6125 *//* CTA BANNER SECTION - DARK LUXURY STYLING */
.cta-banner-section {
  position: relative !important;
  width: 100% !important;
  min-height: 420px !important;
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?q=80&w=1600&auto=format&fit=crop') !important; /* Elegant dark floral/event background */
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important; /* Parallax effect */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 80px 20px !important;
  box-sizing: border-box !important;
  font-family: 'Manrope', sans-serif !important;
  text-align: center !important;
  overflow: hidden !important;
}

/* DARK OVERLAY FOR TEXT VISIBILITY */
.cta-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(14, 12, 10, 0.82) !important; /* Deep dark overlay */
  z-index: 1 !important;
}

/* CONTENT CONTAINER */
.cta-container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

/* MAIN HEADLINE */
.cta-heading {
  font-family: 'Cinzel', serif !important;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem) !important;
  font-weight: 500 !important;
  letter-spacing: 3px !important;
  color: #FFFFFF !important;
  margin-bottom: 18px !important;
  text-transform: uppercase !important;
}

/* DESCRIPTION TEXT */
.cta-description {
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem) !important;
  color: #DCD5CE !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  margin-bottom: 40px !important;
}

/* BUTTONS GROUP */
.cta-button-group {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

/* BASE BUTTON STYLING */
.cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  font-family: 'Cinzel', serif !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.8px !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}

/* GOLD SOLID BUTTON */
.btn-gold {
  background-color: #D3A775 !important;
  color: #0E0C0A !important;
  border: 1px solid #D3A775 !important;
  box-shadow: 0 4px 15px rgba(211, 167, 117, 0.25) !important;
}

.btn-gold:hover {
  background-color: #E2B887 !important;
  border-color: #E2B887 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(211, 167, 117, 0.4) !important;
}

/* OUTLINE BUTTONS */
.btn-outline {
  background-color: transparent !important;
  color: #D3A775 !important;
  border: 1px solid rgba(211, 167, 117, 0.6) !important;
}

.btn-outline:hover {
  background-color: rgba(211, 167, 117, 0.1) !important;
  color: #FFFFFF !important;
  border-color: #D3A775 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.btn-outline i {
  font-size: 0.9rem !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .cta-banner-section {
    padding: 60px 20px !important;
    background-attachment: scroll !important; /* Mobile fallback for smooth performance */
  }
  .cta-button-group {
    flex-direction: column !important;
    width: 100% !important;
  }
  .cta-btn {
    width: 100% !important;
    max-width: 320px !important;
  }
}/* End custom CSS */