/* ==========================================================================
   VBR PHOTOGRAPHY - EXACT PIXEL-PERFECT MIRROR COPY DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.cdnfonts.com/css/brittany-signature');

@font-face {
  font-family: 'Brittany Signature';
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/BrittanySignature/BrittanySignature.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/BrittanySignature/BrittanySignature.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAF6F0;
  --bg-card: #FAF4EE;
  --bg-card-hover: #F6EDE3;
  --bg-dark-footer: #FAF8F5;
  --bg-burgundy: #6D0000;
  --bg-dark-card: #FFFFFF;
  --text-dark: #2B2B2B;
  --text-muted: #666666;
  --text-light: #888888;
  --text-on-dark: #FFFFFF;
  --accent-slate: #6D0000;
  --accent-slate-hover: #4D0000;
  --accent-script: #6D0000;
  --accent-tan: #6D0000;
  --accent-tan-hover: #4D0000;
  --accent-gold: #6D0000;
  --accent-gold-hover: #4D0000;
  --accent-crimson: #6D0000;
  --accent-rose-title: #6D0000;
  --border-color: #EFE6DC;
  --border-dark: #6D0000;
  
  --terracotta: #6D0000;
  --terracotta-hover: #4D0000;
  --terracotta-light: #FDEEEB;
  --terracotta-soft: #FCEDEC;
  --olive-green: #6D0000;
  --olive-green-hover: #4D0000;
  --olive-green-light: #FDEEEB;
  --warm-cream: #FAF6F0;
  --warm-sand: #FAF4EE;
  --espresso-dark: #2B2B2B;

  --font-serif: 'Lora', Georgia, serif;
  --font-lora: 'Lora', Georgia, serif;
  --font-content: 'Lora', Georgia, serif;
  --font-content-size: 20px;
  --font-script: 'Brittany Signature', cursive;
  --font-sans: 'Lora', Georgia, serif;
  
  --container-width: 1360px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base typography with Lora font and clean letter spacing */
body {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
main h1, main h2, main h3, main h4, main h5, main h6,
.unified-section-title, .hero-title, .section-title, .pricing-new-title,
main .unified-section-title, main .section-title {
  font-family: 'Lora', Georgia, serif !important;
  font-weight: 900 !important;
  text-transform: none !important;
  letter-spacing: -0.5px !important;
  color: #6D0000;
  line-height: 1.15 !important;
}

.photography-word-bold,
.section-title-bold {
  font-family: 'Lora', Georgia, serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Enforce Brittany Signature for handwriting/signature text in headings */
.unified-script-text,
.pricing-script-text,
.pricing-italic-green,
.portfolio-title-script,
.script-text-copper,
.script-text-gold,
.script-text,
.google-script-excellent {
  font-family: 'Brittany Signature', 'brittany signature', cursive !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: #6D0000;
}

/* Ensure form controls use Lora but retain normal case and readable weight for inputs */
input, textarea, select, option {
  font-family: 'Lora', Georgia, serif !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* Ensure FontAwesome and Icon fonts are preserved and never overridden by global reset */
.fa, .fas, .far, .fal, .fad, .fab,
.fa-solid, .fa-regular, .fa-light, .fa-thin, .fa-duotone, .fa-brands,
[class^="fa-"], [class*=" fa-"],
i.fa, i.fas, i.far, i.fab, i.fal, i.fad, i.fa-solid, i.fa-regular, i.fa-brands,
.fa::before, .fas::before, .far::before, .fal::before, .fad::before, .fab::before,
.fa-solid::before, .fa-regular::before, .fa-light::before, .fa-thin::before, .fa-duotone::before, .fa-brands::before,
[class^="fa-"]::before, [class*=" fa-"]::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", FontAwesome !important;
}

.fab, .fa-brands, .fab::before, .fa-brands::before {
  font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", FontAwesome !important;
  font-weight: 800 !important;
}

.far, .fa-regular, .far::before, .fa-regular::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome !important;
  font-weight: 800 !important;
}

.fas, .fa-solid, .fas::before, .fa-solid::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome !important;
  font-weight: 900 !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.script-text {
  font-family: var(--font-script);
  color: var(--accent-script);
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 36px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent-slate);
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(148, 167, 179, 0.3);
  z-index: 1;
}

.btn-primary:hover {
  background-color: var(--accent-slate-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(148, 167, 179, 0.45);
}

.btn-tan-pricing {
  background-color: var(--accent-tan) !important;
  color: #200305 !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.5px;
  padding: 16px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(217, 177, 133, 0.3);
}

.btn-tan-pricing:hover {
  background-color: var(--accent-tan-hover) !important;
  transform: translateY(-2px);
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary-link:hover {
  color: var(--accent-script);
}

.play-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding-left: 2px;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.btn-secondary-link:hover .play-icon-circle {
  background-color: var(--text-dark);
  color: #FFFFFF;
  transform: scale(1.1);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header,
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
}

.site-header.scrolled,
#site-header.scrolled {
  padding: 14px 0;
  background: url('../../images/paper_texture_bg.jpg') center center / cover repeat, #FAF4EB !important;
  border-bottom: 1px solid rgba(181, 135, 84, 0.25) !important;
  box-shadow: 0 10px 30px rgba(70, 50, 30, 0.12) !important;
}

/* Colors for transparent state when NOT scrolled (Desktop only) */
@media (min-width: 992px) {
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .logo-title {
    color: #FFFFFF !important;
  }
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .logo-subtext {
    color: rgba(255, 255, 255, 0.75) !important;
  }
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .logo-brand-vbr::before,
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .logo-brand-vbr::after {
    border-color: #FFFFFF !important;
  }
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
  }
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .nav-link:hover,
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .nav-link.active {
    color: #FFFFFF !important;
  }
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .nav-link::after {
    background-color: #FFFFFF !important;
  }
}

/* Colors for transparent state when NOT scrolled (Mobile & Tablet) */
@media (max-width: 991px) {
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .logo-title {
    color: #FFFFFF !important;
  }
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .logo-subtext {
    color: rgba(255, 255, 255, 0.75) !important;
  }
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .logo-brand-vbr::before,
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .logo-brand-vbr::after {
    border-color: #FFFFFF !important;
  }
  .site-header:not(.scrolled):not(:has(.nav-menu.active)) .mobile-toggle span {
    background-color: #FFFFFF !important;
  }
}

/* When mobile menu is active, make header solid and elements dark */
.site-header:has(.nav-menu.active),
.site-header:has(#nav-menu.active) {
  background: url('../../images/paper_texture_bg.jpg') center center / cover repeat, #FAF4EB !important;
  border-bottom: 1px solid rgba(181, 135, 84, 0.25) !important;
  box-shadow: 0 10px 30px rgba(70, 50, 30, 0.12) !important;
}

.site-header:has(.nav-menu.active) .logo-title,
.site-header:has(.nav-menu.active) .logo-subtext {
  color: var(--text-dark) !important;
}
.site-header:has(.nav-menu.active) .logo-brand-vbr::before,
.site-header:has(.nav-menu.active) .logo-brand-vbr::after {
  border-color: var(--text-dark) !important;
}
.site-header:has(.nav-menu.active) .mobile-toggle span {
  background-color: var(--text-dark) !important;
}

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

.logo-brand-vbr {
  position: relative;
  padding: 4px 14px;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo-brand-vbr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid var(--text-dark);
  border-left: 1.5px solid var(--text-dark);
}

.logo-brand-vbr::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-bottom: 1.5px solid var(--text-dark);
  border-right: 1.5px solid var(--text-dark);
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-dark);
}

.logo-subtext {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.nav-link.active {
  color: #6D0000;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6D0000;
  transition: var(--transition);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
}

.mobile-drawer-header,
.mobile-drawer-cta,
.drawer-logo,
.drawer-btn {
  display: none !important;
}

@media (max-width: 991px) {
  .nav-menu.active .mobile-drawer-header {
    display: flex !important;
  }
  .nav-menu.active .mobile-drawer-cta {
    display: block !important;
  }
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-section {
  padding: 20px 0 60px;
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full Width Hero Video Banner */
.hero-video-fullwidth-section {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  max-height: 920px;
  overflow: hidden;
  padding: 0;
}

.hero-video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

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

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 35, 26, 0.88) 0%, rgba(74, 49, 37, 0.7) 50%, rgba(43, 28, 21, 0.85) 100%);
  z-index: 2;
}

.hero-container-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-video-fullwidth-section .hero-title {
  color: #FFFFFF;
}

.hero-video-fullwidth-section .hero-title .script-text {
  color: #6D0000;
}

.hero-video-fullwidth-section .hero-sub-tag {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 3.5px;
}

.hero-video-fullwidth-section .hero-desc {
  color: rgba(255, 255, 255, 0.9);
}

.hero-video-fullwidth-section .line-left,
.hero-video-fullwidth-section .line-right {
  background-color: rgba(255, 255, 255, 0.5);
}

.hero-video-fullwidth-section .diamond-icon {
  color: #6D0000;
}

.hero-video-fullwidth-section .hero-stat-num {
  color: #FFFFFF;
}

.hero-video-fullwidth-section .hero-stat-lbl {
  color: rgba(255, 255, 255, 0.75);
}

.hero-video-fullwidth-section .hero-stat-icon {
  color: #6D0000;
}

.hero-video-fullwidth-section .hero-stats-row {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-video-fullwidth-section .hero-stat-item:not(:last-child)::after {
  background-color: rgba(255, 255, 255, 0.2);
}

.hero-video-fullwidth-section .btn-secondary-link {
  color: #FFFFFF;
}

.hero-video-fullwidth-section .btn-secondary-link:hover {
  color: #6D0000;
}

.hero-video-fullwidth-section .hero-grid {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero-content {
  padding-right: 10px;
  position: relative;
  z-index: 2;
}

.hero-sub-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 2px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title .script-text {
  font-size: 72px;
  color: var(--accent-script);
  margin-left: 8px;
  text-transform: none;
}

.diamond-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.line-left, .line-right {
  width: 40px;
  height: 1px;
  background-color: var(--text-dark);
}

.diamond-icon {
  font-size: 8px;
  color: var(--text-dark);
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 28px;
  background-color: var(--border-color);
  margin-left: 18px;
}

.hero-stat-icon {
  width: 24px;
  height: 24px;
  color: var(--text-dark);
  flex-shrink: 0;
}

.hero-stat-info {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-lbl {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.hero-media-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-couple-photo-box {
  width: 90%;
  height: 100%;
  overflow: hidden;
  border-radius: 180px 180px 0 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.hero-couple-photo-box img,
.hero-couple-photo-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-card-bride {
  position: absolute;
  left: -20px;
  top: 140px;
  width: 260px;
  height: 330px;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  z-index: 3;
  transition: var(--transition);
}

.hero-card-bride img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero-quote-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 270px;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
  z-index: 4;
  transition: var(--transition);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent-script);
  line-height: 1;
  margin-bottom: 4px;
}

.quote-text-script {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.quote-author-name {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.quote-nav-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.mini-arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  transition: var(--transition);
}

/* ==========================================================================
   ABOUT STORY SECTION
   ========================================================================== */
.about-section {
  padding: 100px 0 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-title .script-text {
  font-size: 52px;
  margin: 0 4px;
}

.about-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 440px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.about-img-item {
  height: 340px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}

.about-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */
/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */
.services-mirror-section {
  padding: 100px 0 110px;
  background: #FAF6F0;
  color: #2B2B2B;
  position: relative;
  overflow: hidden;
}

.services-mirror-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.services-mirror-header .section-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #6D0000;
  margin-bottom: 12px;
}

.services-mirror-header h2 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2B2B2B;
  line-height: 1.15;
}

.services-mirror-header h2 .script-text {
  font-family: var(--font-script);
  font-size: 58px;
  color: #6D0000;
  text-transform: none;
  font-weight: 400;
  margin: 0 4px;
}

.services-mirror-header p {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.8;
  color: #666666;
  margin-top: 14px;
  font-weight: 400;
}

.services-mirror-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-mirror-card {
  background-color: #FAF4EE;
  color: #2B2B2B;
  border: 1px solid #EFE6DC;
  border-radius: 14px;
  padding: 44px 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  margin-top: 28px;
}

.service-mirror-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(224, 93, 82, 0.12);
  border-color: #6D0000;
}

.service-floating-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #6D0000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(224, 93, 82, 0.35);
  transition: transform 0.4s ease;
}

.service-mirror-card:hover .service-floating-icon {
  transform: translateX(-50%) scale(1.1);
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2B2B2B;
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 24px;
}

.service-card-btn {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6D0000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.service-mirror-card:hover .service-card-btn {
  color: #4D0000;
  transform: translateX(3px);
}

/* ==========================================================================
   VBR PHOTOGRAPHY - EXACT MIRROR COPY OUR CURATED WORK SECTION
   ========================================================================== */
.portfolio-mirror-section {
  padding: 90px 0 100px;
  background: url('../../images/paper_texture_bg.jpg') center center / cover repeat, #FAF6F0;
  background-image: url('../../images/paper_texture_bg.jpg'), url('../images/paper_texture_bg.jpg');
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  position: relative;
}

.portfolio-mirror-header {
  text-align: center;
  margin-bottom: 32px;
}

.portfolio-subtag-gold {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #6D0000;
  margin-bottom: 8px;
}

.portfolio-mirror-header h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2B2B2B;
}

.portfolio-mirror-header h2 span.gold-text {
  color: #6D0000;
}

/* CENTERED PILL TABS */
.portfolio-pill-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tab-pill-btn {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4A4A4A;
  background: #FFFFFF;
  border: 1px solid #EFE6DC;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-pill-btn.active {
  background-color: #6D0000;
  color: #FFFFFF !important;
  border-color: #6D0000;
  box-shadow: 0 4px 14px rgba(224, 93, 82, 0.35);
}

.tab-pill-btn:hover:not(.active) {
  color: #6D0000;
}

/* SLIDER WRAPPER WITH LEFT/RIGHT ARROWS */
.portfolio-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #6D0000;
  background: #FFFFFF;
  color: #6D0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 5;
}

.slider-nav-btn:hover {
  background-color: #6D0000;
  color: #FFFFFF;
}

/* 5 CARDS SINGLE ROW GRID */
.portfolio-mirror-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  width: 100%;
}

.portfolio-card-item {
  position: relative;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.portfolio-card-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.portfolio-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card-item:hover img {
  transform: scale(1.08);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 18px;
  text-align: center;
  color: #FFFFFF;
}

.portfolio-card-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.portfolio-card-category {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6D0000;
}

.play-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #2B2B2B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding-left: 3px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.portfolio-card-item:hover .play-center-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: #6D0000;
  color: #FFFFFF;
}

/* PAGINATION DOTS BELOW CAROUSEL */
.portfolio-dots-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.dot-item {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #D4C1AE;
  transition: var(--transition);
}

.dot-item.active {
  background-color: #6D0000;
  width: 10px;
  height: 10px;
}

/* ==========================================================================
   PRICING & PACKAGES SECTION
   ========================================================================== */
.pricing-section {
  padding: 100px 0;
  background-color: #FAF6F0;
  color: #2B2B2B;
}

.pricing-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}

.pricing-header-center h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-top: 8px;
}

.pricing-header-center p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 60px;
}

.pricing-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.plan-script-title {
  font-family: var(--font-script);
  font-size: 42px;
  color: var(--accent-rose-title);
  line-height: 1.1;
  margin-bottom: 14px;
}

.plan-image-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.7;
  color: #200305;
  margin-bottom: 28px;
}

.plan-bullets-center {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #200305;
  text-transform: uppercase;
}

.bullet-option {
  color: #5E3B40;
  font-size: 10.5px;
  margin-top: 4px;
}

.travel-note {
  font-size: 10px;
  font-style: italic;
  color: #5E3B40;
  text-transform: none;
  margin-top: 10px;
}

.contact-pricing-info {
  margin-top: 20px;
  margin-bottom: 16px;
}

.contact-pricing-info h5 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: #200305;
}

.contact-pricing-info a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--accent-script);
  font-weight: 500;
}

.custom-quote-banner {
  background-color: var(--bg-secondary);
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.custom-quote-info h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.custom-quote-info p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.custom-quote-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   FEATURED FILMS SECTION
   ========================================================================== */
.films-section {
  padding: 90px 0;
}

.films-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.films-title-group h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
}

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

.film-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.film-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #FFFFFF;
}

.film-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 16px;
  padding-left: 3px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.film-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.film-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-slate);
  margin-top: 2px;
}

/* ==========================================================================
   VIDEO & LIGHTBOX MODAL POPUPS
   ========================================================================== */
.video-modal-backdrop,
.lightbox-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(54, 35, 26, 0.95);
  backdrop-filter: blur(12px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal-backdrop.active,
.lightbox-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  background-color: #200305;
  border: 1px solid rgba(232, 168, 92, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.video-close-btn,
.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 56, 41, 0.85);
  color: #FFFFFF;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.video-player-frame {
  width: 100%;
  height: 500px;
  background: #200305;
}

.lightbox-content-body img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}

/* ==========================================================================
   REVIEWS & FOOTER
   ========================================================================== */
/* ==========================================================================
   REDESIGNED LUXURY REVIEWS & FOOTER SECTION (PIXEL-PERFECT MIRROR COPY)
   ========================================================================== */

/* REVIEWS SECTION CONTAINER */
.reviews-section {
  padding: 90px 0 60px;
  background-color: #E6D5C3;
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* LEFT COLUMN: QUOTE & PAGINATION */
.testimonial-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quote-mark-icon {
  width: 44px;
  height: 36px;
  margin-bottom: 20px;
}

.quote-mark-icon svg {
  width: 100%;
  height: 100%;
}

.quote-text-vbr {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.65;
  color: #200305;
  font-weight: 400;
  margin-bottom: 24px;
}

.quote-author-vbr {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #B58754;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* PAGINATION CONTROLS: <  •  ○  ○  > */
.reviews-pagination-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.arrow-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D4C1AE;
  background: transparent;
  color: #B58754;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.arrow-circle-btn:hover {
  border-color: #B58754;
  background-color: #B58754;
  color: #FFFFFF;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #B58754;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.review-dots .dot.active {
  background-color: #B58754;
}

/* MIDDLE COLUMN: POLAROID PHOTOS & FLOATING TOOLTIP BADGE */
.polaroid-photos-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.polaroid-wrapper {
  position: relative;
  width: 320px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.polaroid-card {
  position: absolute;
  background: #FFFFFF;
  padding: 10px 10px 32px 10px;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(60, 40, 20, 0.12);
  border: 1px solid #DFCDBC;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.polaroid-card img {
  width: 150px;
  height: 175px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.polaroid-left {
  left: 10px;
  top: 10px;
  transform: rotate(-8deg);
  z-index: 1;
}

.polaroid-right {
  right: 10px;
  top: 0px;
  transform: rotate(6deg);
  z-index: 2;
}

.polaroid-wrapper:hover .polaroid-left {
  transform: rotate(-12deg) scale(1.03);
}

.polaroid-wrapper:hover .polaroid-right {
  transform: rotate(10deg) scale(1.03);
}

/* FLOATING TOOLTIP BADGE */
.polaroid-badge-tooltip {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: #FFFFFF;
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #DFCDBC;
  text-align: center;
  min-width: 170px;
  transition: var(--transition);
}

.badge-names {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #200305;
  margin-bottom: 3px;
}

.badge-stars {
  color: #F5A623;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.badge-review-text {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #5E3B40;
}

/* RIGHT COLUMN: GOOGLE REVIEW CARD */
.google-badge-box {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 12px 35px rgba(60, 40, 20, 0.06);
  border: 1px solid #DFCDBC;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.google-badge-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.google-icon-svg {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.google-badge-score-wrap {
  text-align: left;
}

.google-score-num {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  color: #B58754;
  margin-bottom: 4px;
}

.google-stars {
  color: #F5A623;
  font-size: 15px;
  letter-spacing: 2.5px;
  margin-bottom: 4px;
}

.google-review-count {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #5E3B40;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #B58754;
  color: #B58754;
  background: transparent;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  width: 100%;
}

.btn-google-reviews:hover {
  background-color: #B58754;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 157, 113, 0.25);
}

/* SECTION DIVIDER WITH LOTUS MOTIF */
.section-divider-lotus-wrap {
  background-color: #E6D5C3;
  padding: 15px 0 25px;
}

.lotus-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.lotus-divider-line .line {
  flex: 1;
  height: 1px;
  background-color: #D4C1AE;
}

.lotus-center-icon {
  width: 54px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER SECTION - LUXURY LIGHT THEME */
.luxury-footer-light {
  background-color: #E6D5C3;
  color: #200305;
  padding: 60px 0 35px;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E6D5C3;
}

/* Background Watermark Leaf/Floral Art on Left and Right */
.footer-bg-watermark {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 250px;
  pointer-events: none;
  opacity: 0.12;
  background-repeat: no-repeat;
  background-size: contain;
}

.watermark-left {
  left: 0;
  background-position: left center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400'%3E%3Cpath d='M10 200 Q 50 150 100 180 T 180 200 Q 140 250 100 220 T 10 200' stroke='%23C59D71' stroke-width='1.5' fill='none'/%3E%3Cpath d='M30 120 C 60 80 120 100 140 140' stroke='%23C59D71' stroke-width='1' fill='none'/%3E%3Cpath d='M40 280 C 70 320 130 300 150 260' stroke='%23C59D71' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

.watermark-right {
  right: 0;
  background-position: right center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400'%3E%3Cpath d='M190 200 Q 150 150 100 180 T 20 200 Q 60 250 100 220 T 190 200' stroke='%23C59D71' stroke-width='1.5' fill='none'/%3E%3Cpath d='M170 120 C 140 80 80 100 60 140' stroke='%23C59D71' stroke-width='1' fill='none'/%3E%3Cpath d='M160 280 C 130 320 70 300 50 260' stroke='%23C59D71' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

.footer-grid-light {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.05fr 1.15fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-col-light {
  padding-right: 24px;
}

.footer-col-light:not(:last-child) {
  border-right: 1px solid #D4C1AE;
}

/* BRAND COLUMN */
.footer-logo-brand {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-brand .logo-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #B58754;
  line-height: 1;
}

.footer-logo-brand .logo-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 5px;
  color: #200305;
  margin-top: 4px;
}

.brand-lotus-ornament {
  margin: 14px 0 16px;
}

.footer-brand-text {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.65;
  color: #5E3B40;
  margin-bottom: 24px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-circle-light {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #B58754;
  color: #B58754;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-circle-light:hover {
  background-color: #B58754;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(197, 157, 113, 0.3);
}

/* COLUMN HEADERS WITH CIRCULAR ICON BADGE */
.col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #B58754;
  background: transparent;
  color: #B58754;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.col-header h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #200305;
  text-transform: uppercase;
  margin: 0;
}

.col-header-underline {
  width: 70px;
  height: 1.5px;
  background-color: #B58754;
  margin-bottom: 22px;
  margin-left: 52px;
}

/* COLUMN 2: NAVIGATION LIST */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #D4C1AE;
}

.footer-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 16px;
  color: #200305;
  transition: var(--transition);
}

.footer-nav-list li a .chevron-l,
.footer-nav-list li a .chevron-r {
  color: #B58754;
  font-size: 15px;
  font-weight: bold;
}

.footer-nav-list li a:hover {
  color: #B58754;
  padding-left: 4px;
}

/* COLUMN 3: SERVICES LIST */
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #D4C1AE;
}

.footer-services-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: #200305;
  transition: var(--transition);
}

.footer-services-list li a .item-icon {
  color: #B58754;
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.footer-services-list li a:hover {
  color: #B58754;
  transform: translateX(4px);
}

/* COLUMN 4: CONTACT LIST */
.footer-contact-list-light {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: #200305;
  padding-bottom: 12px;
  border-bottom: 1px dotted #D4C1AE;
}

.contact-item .item-icon {
  color: #B58754;
  font-size: 15px;
  margin-top: 3px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item a {
  color: inherit;
  transition: var(--transition);
}

.contact-item a:hover {
  color: #B58754;
}

/* BOTTOM BAR */
.footer-bottom-bar-light {
  border-top: 1px solid #D4C1AE;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 14px;
  color: #6E665E;
}

.bottom-left-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #59524A;
}

.bottom-left-tag .heart-icon {
  color: #B58754;
  font-size: 13px;
}

.bottom-center-copy {
  font-family: var(--font-serif);
  color: #6E665E;
}

.bottom-right-signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bottom-right-signature .sig-script {
  font-family: var(--font-script);
  font-size: 28px;
  color: #B58754;
  line-height: 0.9;
}

.bottom-right-signature .sig-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 3px;
  color: #200305;
  text-transform: uppercase;
}

/* GSAP & SCROLL INTERSECTION REVEALS */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-fade { opacity: 0; transition: opacity 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }

.reveal-up.visible,
.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-mirror-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .portfolio-mirror-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-media-wrapper {
    height: 480px;
    justify-content: center;
  }

  .hero-couple-photo-box {
    width: 95%;
  }

  .hero-card-bride {
    left: 10px;
    top: 60px;
    width: 220px;
    height: 280px;
  }

  .hero-quote-card {
    left: 30px;
    bottom: 10px;
    width: 240px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .custom-quote-banner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #E6D5C3;
    flex-direction: column;
    padding: 24px;
  }

  .nav-links.active { display: flex; }
  .mobile-toggle { display: block; }

  .hero-title { font-size: 38px; }
  .hero-title .script-text { font-size: 46px; }

  .hero-stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-media-wrapper {
    height: 440px;
  }

  .hero-card-bride {
    width: 170px;
    height: 220px;
    left: 0;
    top: 40px;
  }

  .hero-quote-card {
    width: 220px;
    padding: 16px;
    left: 10px;
    bottom: 10px;
  }

  .services-mirror-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 36px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   POLAROID EDITORIAL STACK ANIMATION (MY WORKS / PORTFOLIO & SERVICES)
   ========================================================================== */
.portfolio-editorial-showcase,
.services-editorial-showcase {
  margin: 40px 0 60px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #EBE4DB;
  padding: 60px 20px 50px;
}

.editorial-canvas-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.editorial-location-arc {
  font-family: var(--font-sans, 'Lora', Georgia, serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8C7B6B;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.editorial-couple-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 900;
  color: #200305;
  line-height: 1;
  margin: 0 0 20px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
  letter-spacing: -1px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.polaroid-stack-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 30px auto 25px;
  z-index: 3;
  cursor: pointer;
  perspective: 1000px;
}

.polaroid-card-item-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  background-color: #FFFFFF;
  padding: 12px 12px 28px;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  transform-origin: center center;
  backface-visibility: hidden;
}

.polaroid-card-item-stack .polaroid-photo-frame {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #F0EAE1;
  border-radius: 2px;
}

.polaroid-card-item-stack .polaroid-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.polaroid-card-item-stack.stack-left {
  transform: translate(-68%, -52%) rotate(-8deg);
  z-index: 1;
}

.polaroid-card-item-stack.stack-center {
  transform: translate(-50%, -48%) rotate(2deg);
  z-index: 3;
}

.polaroid-card-item-stack.stack-right {
  transform: translate(-32%, -54%) rotate(7deg);
  z-index: 2;
}

.polaroid-stack-wrapper:hover .polaroid-card-item-stack.stack-left {
  transform: translate(-98%, -56%) rotate(-15deg) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.polaroid-stack-wrapper:hover .polaroid-card-item-stack.stack-center {
  transform: translate(-50%, -64%) rotate(0deg) scale(1.07);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  z-index: 4;
}

.polaroid-stack-wrapper:hover .polaroid-card-item-stack.stack-right {
  transform: translate(-2%, -56%) rotate(14deg) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.editorial-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 5;
  margin-top: 10px;
}

.editorial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(74, 49, 37, 0.25);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  color: #200305;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.editorial-nav-btn:hover {
  background: #B58754;
  color: #FFFFFF;
  border-color: #B58754;
  transform: scale(1.08);
}

.btn-see-gallery-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 49, 37, 0.2);
  backdrop-filter: blur(10px);
  color: #200305;
  font-family: var(--font-sans, 'Lora', Georgia, serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(54, 35, 26, 0.1);
}

.btn-see-gallery-pill:hover {
  background-color: #B58754;
  color: #FFFFFF;
  border-color: #B58754;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 56, 41, 0.35);
}

.editorial-dots-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 5;
}

.editorial-dot-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(74, 49, 37, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.editorial-dot-item.active {
  width: 24px;
  border-radius: 10px;
  background-color: #B58754;
}

/* ==========================================================================
   REDESIGN MATCHING REFERENCE MOCKUP (RETAINING HERO BANNER)
   ========================================================================== */

/* Typography & General Accents */
.section-tag-gold {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #6D0000;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.script-text-gold {
  font-family: var(--font-script);
  color: #6D0000;
  font-size: 1.2em;
  display: inline-block;
  vertical-align: middle;
}

.section-title-serif {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: #2B2B2B;
  line-height: 1.2;
}

.section-subtitle-p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #666666;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 45px;
}

/* Buttons */
.btn-tan-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #6D0000;
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 93, 82, 0.25);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-tan-gold-pill:hover {
  background-color: #4D0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 93, 82, 0.4);
}

.btn-outline-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: #2B2B2B !important;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid #EFE6DC;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-gold-pill .pill-arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #FAF4EE;
  border: 1px solid #EFE6DC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #6D0000;
  transition: all 0.3s ease;
}

.btn-outline-gold-pill:hover {
  border-color: #6D0000;
  color: #6D0000 !important;
  transform: translateY(-2px);
}

.btn-outline-gold-pill:hover .pill-arrow-circle {
  background-color: #6D0000;
  color: #FFFFFF;
  border-color: #6D0000;
}

.btn-play-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2B2B2B;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-play-inline .play-circle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #F5C2BC;
  background-color: #FCEDEC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #6D0000;
  padding-left: 2px;
  transition: all 0.3s ease;
}

.btn-play-inline:hover .play-circle-icon {
  background-color: #6D0000;
  color: #FFFFFF;
  border-color: #6D0000;
  transform: scale(1.1);
}

/* ==========================================================================
   OUR STORY SECTION - EXACT MIRROR COPY DESIGN
   ========================================================================== */
.our-story-mirror-section,
.about-section {
  position: relative;
  padding: 100px 0 110px;
  background-color: #FAF4EB;
  background-image: url('../../images/story_paper_bg.jpg'), url('../images/story_paper_bg.jpg'), url('/images/story_paper_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

/* Floral Overlay Background Elements */
.story-floral-top-left {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 320px;
  pointer-events: none;
  z-index: 1;
}

.story-floral-top-right {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 340px;
  pointer-events: none;
  z-index: 1;
}

.story-floral-bottom-right {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 320px;
  pointer-events: none;
  z-index: 1;
}

/* Grid Layout: 3 Columns */
.our-story-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.65fr;
  gap: 36px;
  align-items: center;
}

/* Left Column Styling */
.story-left-col {
  position: relative;
  padding: 30px 20px;
}

.story-torn-paper-card-bg {
  position: absolute;
  top: -10px;
  left: -25px;
  right: -15px;
  bottom: -10px;
  background: #FFFDF9;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(160, 130, 110, 0.12);
  z-index: 0;
  /* Authentic Torn / Deckle Paper Edge Effect */
  clip-path: polygon(
    0% 2%, 8% 0%, 18% 3%, 30% 1%, 42% 3%, 55% 0%, 68% 2%, 80% 0%, 92% 3%, 100% 1%,
    99% 15%, 100% 30%, 98% 45%, 100% 60%, 98% 75%, 100% 90%, 99% 100%,
    88% 98%, 76% 100%, 64% 97%, 50% 99%, 36% 97%, 22% 100%, 10% 98%, 0% 100%,
    1% 85%, 0% 70%, 2% 55%, 0% 40%, 1% 25%, 0% 10%
  );
}

.story-left-content-inner {
  position: relative;
  z-index: 1;
}

/* Tagline */
.story-tagline-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.story-tag-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: #000000;
  text-transform: uppercase;
}

.story-tag-divider {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-tag-line {
  width: 32px;
  height: 1px;
  background: #6D0000;
}

.story-tag-star {
  font-size: 10px;
  color: #6D0000;
}

/* Titles */
.story-main-title {
  margin-bottom: 22px;
  line-height: 1.15;
}

.title-serif-dark {
  display: block;
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  color: #6D0000;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.title-script-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.script-text-copper {
  font-family: var(--font-script);
  font-size: 72px;
  color: #6D0000;
  line-height: 1;
}

.title-heart-icon {
  display: inline-flex;
  align-items: center;
  transform: translateY(-8px);
}

.title-heart-icon svg path {
  stroke: #6D0000;
}

.script-brushstroke {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 90%;
  height: 12px;
  background: linear-gradient(90deg, rgba(109, 0, 0, 0.25) 0%, rgba(109, 0, 0, 0.1) 80%, transparent 100%);
  border-radius: 10px;
  z-index: -1;
  filter: blur(2px);
}

/* Paragraph */
.story-paragraph {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.85;
  color: #111111;
  font-weight: 400;
  margin-bottom: 34px;
  max-width: 480px;
}

.story-paragraph em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: #6D0000;
  font-weight: 600;
}

/* Buttons Flex */
.story-buttons-flex {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Button 1: Burgundy Pill Badge */
.btn-burgundy-gold-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #6D0000;
  color: #FFFFFF !important;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid #6D0000;
  box-shadow: 0 4px 20px rgba(109, 0, 0, 0.35);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-burgundy-gold-pill:hover {
  transform: translateY(-3px);
  background: #4D0000;
  box-shadow: 0 8px 28px rgba(109, 0, 0, 0.5);
  border-color: #4D0000;
  color: #FFFFFF !important;
}

.btn-heart-symbol {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1;
}

.btn-arrow-circle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #FFFFFF;
  transition: transform 0.3s ease;
}

.btn-burgundy-gold-pill:hover .btn-arrow-circle-icon {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.4);
}

/* Button 2: Play Intro Button */
.btn-play-intro-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6D0000;
  border: 1px solid #6D0000;
  box-shadow: 0 4px 14px rgba(109, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #FFFFFF;
  padding-left: 3px;
  transition: all 0.3s ease;
}

.btn-play-intro-wrap:hover .play-btn-circle {
  background: #4D0000;
  color: #FFFFFF;
  border-color: #4D0000;
  transform: scale(1.1);
}

.play-btn-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  padding-bottom: 4px;
}

.play-btn-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6D0000;
  transition: width 0.3s ease;
}

.btn-play-intro-wrap:hover .play-btn-text::after {
  background: #4D0000;
}

/* Bottom Swirl Line */
.story-gold-swirl-accent {
  margin-top: 15px;
  opacity: 0.9;
}

.story-gold-swirl-accent svg path {
  stroke: #6D0000;
}

/* CENTER COLUMN - Arch & Rings Photos */
.story-center-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.arch-and-rings-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 520px;
}

/* Main Arch Photo Box */
.main-arch-photo-box {
  position: relative;
  width: 82%;
  height: 440px;
  border-radius: 200px 200px 0 0;
  padding: 8px;
  background: #FFFDF9;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

.arch-gold-frame-border {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #6D0000;
  border-radius: 210px 210px 0 0;
  pointer-events: none;
}

.arch-gold-frame-border::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid rgba(109, 0, 0, 0.4);
  border-radius: 205px 205px 0 0;
}

.arch-top-starburst {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #6D0000;
  background: #FAF4EB;
  padding: 0 4px;
}

.arch-img-inner {
  width: 100%;
  height: 100%;
  border-radius: 192px 192px 0 0;
  overflow: hidden;
}

.arch-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Secondary Overlapping Torn Paper Rings Photo */
.overlapping-torn-paper-box {
  position: absolute;
  right: -10px;
  bottom: 10px;
  width: 270px;
  height: 220px;
  z-index: 3;
  transform: rotate(-5deg);
  transition: transform 0.4s ease;
}

.overlapping-torn-paper-box:hover {
  transform: rotate(-2deg) scale(1.03);
}

.torn-paper-border-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  /* Deckle Torn Paper Mask Edge */
  clip-path: polygon(
    2% 0%, 18% 3%, 35% 0%, 52% 2%, 70% 0%, 86% 3%, 100% 0%,
    98% 18%, 100% 35%, 97% 52%, 100% 70%, 98% 88%, 100% 100%,
    84% 97%, 68% 100%, 50% 97%, 32% 100%, 15% 97%, 0% 100%,
    3% 82%, 0% 65%, 2% 48%, 0% 30%, 3% 15%
  );
}

.torn-paper-border-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* RIGHT COLUMN - 10+ Years Experience Card */
.story-right-col {
  display: flex;
  justify-content: flex-end;
}

.experience-card-container {
  position: relative;
  width: 240px;
  background: #FAF7F2;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  border: 1.5px solid #6D0000;
  text-align: center;
}

.experience-card-container::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(109, 0, 0, 0.3);
  border-radius: 15px;
  pointer-events: none;
}

/* Corner Flourishes */
.card-corner-flourish {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1.5px solid #6D0000;
  pointer-events: none;
}

.card-corner-flourish.top-left {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.card-corner-flourish.top-right {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.card-corner-flourish.bottom-left {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.card-corner-flourish.bottom-right {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.experience-card-inner {
  position: relative;
  z-index: 1;
}

.card-top-ornament {
  margin-bottom: 10px;
}

.card-top-ornament svg,
.card-bottom-ornament svg {
  stroke: #6D0000;
}

.card-top-ornament svg circle,
.card-top-ornament svg path[fill],
.card-bottom-ornament svg circle,
.card-bottom-ornament svg path[fill] {
  fill: #6D0000;
}

.exp-big-number {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: #6D0000;
  line-height: 0.95;
  letter-spacing: -1px;
}

.exp-stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #000000;
  text-transform: uppercase;
  margin: 14px 0 16px 0;
  line-height: 1.35;
}

.exp-heart-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.exp-div-line {
  width: 35px;
  height: 1px;
  background: #6D0000;
}

.exp-div-heart {
  font-size: 14px;
  color: #6D0000;
}

.exp-stat-subtext {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13.5px;
  color: #444444;
  line-height: 1.45;
  margin-bottom: 16px;
}

.card-bottom-ornament {
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .our-story-main-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-right-col {
    grid-column: span 2;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 868px) {
  .our-story-main-grid {
    grid-template-columns: 1fr;
  }
  .story-right-col {
    grid-column: span 1;
  }
  .title-serif-dark {
    font-size: 38px;
  }
  .script-text-copper {
    font-size: 54px;
  }
  .arch-and-rings-wrapper {
    height: 440px;
  }
  .main-arch-photo-box {
    height: 360px;
  }
  .overlapping-torn-paper-box {
    width: 220px;
    height: 180px;
  }
}


/* ==========================================================================
   SERVICES SECTION ("WHAT WE DO")
   ========================================================================== */
.services-section {
  position: relative;
  background-color: #FAF6F0; /* Soft warm ivory / vanilla cream background */
  background: #FAF6F0;
  padding: 95px 0 85px 0;
  overflow: hidden;
}

/* Luxury Corner Background Botanical Accents */
.botanical-accent {
  position: absolute;
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

.botanical-accent.corner-top-left {
  top: -20px;
  left: -20px;
}

.botanical-accent.corner-top-right {
  top: -20px;
  right: -20px;
}

.botanical-accent.corner-bottom-left {
  bottom: -20px;
  left: -20px;
}

.botanical-accent.corner-bottom-right {
  bottom: -20px;
  right: -20px;
}

/* Header Styling */
.services-section-header {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  z-index: 2;
}

.services-tag-gold {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: #6D0000;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-tag-gold .diamond-sparkle {
  font-size: 9px;
  color: #6D0000;
}

.services-title-serif {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: #2B2B2B;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.services-diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.services-diamond-divider .divider-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6D0000, transparent);
}

.services-diamond-divider .divider-diamond {
  font-size: 8px;
  color: #6D0000;
}

.services-subtitle {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.services-main-layout {
  display: block;
  position: relative;
  z-index: 2;
}

/* Services Cards Grid Wrapper */
.services-cards-grid-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* Rows Layout */
.services-row-top, .services-row-bottom {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.services-row-top {
  grid-template-columns: repeat(3, 1fr);
}

.services-row-bottom {
  grid-template-columns: repeat(3, 1fr);
}

/* Base Service Card Item */
.service-card-item {
  background: #FAF4EE;
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid #EFE6DC;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.service-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(224, 93, 82, 0.12);
  border-color: #6D0000;
}

/* Card Header (Icon + Number Watermark) */
.service-card-top-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FCEDEC;
  border: 1px solid #F5C2BC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6D0000;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(224, 93, 82, 0.08);
}

.service-number-watermark {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 600;
  color: #E8A08D;
  line-height: 1;
}

/* Card Typography */
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: #2B2B2B;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-card-desc {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CARD 02: FEATURED SERVICE (Wide Layout with Couple Photo) */
.card-02-featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  padding: 0;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #EFE6DC;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.featured-service-content {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge-tag {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6D0000;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.featured-title {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.featured-desc {
  font-size: 0.88rem;
  line-height: 1.6;
}

.featured-service-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 0 20px 20px 0;
}

.featured-service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-02-featured:hover .featured-service-img-wrap img {
  transform: scale(1.05);
}

/* Camera Viewfinder Overlay on Featured Center Service Card */
.camera-viewfinder-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.25);
}

.camera-viewfinder-overlay .rec-badge {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.camera-viewfinder-overlay .rec-dot {
  width: 7px;
  height: 7px;
  background-color: #6D0000;
  border-radius: 50%;
  display: inline-block;
  animation: pulseRec 1.5s infinite ease-in-out;
}

@keyframes pulseRec {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.focus-bracket {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: all 0.4s ease;
}

.focus-bracket.top-left {
  top: 14px;
  left: 14px;
  border-right: none;
  border-bottom: none;
}

.focus-bracket.top-right {
  top: 14px;
  right: 14px;
  border-left: none;
  border-bottom: none;
}

.focus-bracket.bottom-left {
  bottom: 14px;
  left: 14px;
  border-right: none;
  border-top: none;
}

.focus-bracket.bottom-right {
  bottom: 14px;
  right: 14px;
  border-left: none;
  border-top: none;
}

.card-02-featured:hover .focus-bracket {
  border-color: #6D0000;
}

/* CARD 03 RELATIVE & FLOATING TESTIMONIAL BUBBLE */
.card-03-relative {
  position: relative;
  overflow: visible;
}

.floating-testimonial-bubble {
  position: absolute;
  bottom: -18px;
  right: -14px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #EFE6DC;
  z-index: 5;
  transition: transform 0.35s ease;
}

.floating-testimonial-bubble:hover {
  transform: translateY(-4px);
}

.quote-gold-mark {
  position: absolute;
  top: -8px;
  right: 12px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #6D0000;
  line-height: 1;
}

.bubble-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid #6D0000;
}

.bubble-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bubble-quote {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #555555;
  line-height: 1.4;
  font-style: italic;
  margin: 0;
}

.bubble-author {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: #6D0000;
  margin-top: 3px;
}

/* CARDS 04, 05, 06: SPLIT LAYOUT WITH ARCHED IMAGE CUTOUTS */
.card-split-arch {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #EFE6DC;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.card-split-text-side {
  flex: none;
  padding: 28px 26px 16px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-split-img-side {
  flex: none;
  width: 100%;
  height: 170px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px 0 16px;
}

.arch-img-frame {
  width: 100%;
  height: 100%;
  border-radius: 120px 120px 0 0;
  overflow: hidden;
}

.arch-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-split-arch:hover .arch-img-frame img {
  transform: scale(1.06);
}

/* BOTTOM CENTER CTA BUTTON */
.services-bottom-cta {
  text-align: center;
  margin-top: 45px;
  position: relative;
  z-index: 2;
}

/* BOTTOM CENTER CTA BUTTON */
.services-bottom-cta {
  text-align: center;
  margin-top: 45px;
  position: relative;
  z-index: 2;
}

.btn-services-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  border-radius: 50px;
  background: #FFFFFF;
  border: 1.5px solid #6D0000;
  color: #6D0000;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(224, 93, 82, 0.08);
  transition: all 0.35s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-services-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
}

.btn-services-pill:hover::before {
  left: 100%;
}

.btn-services-pill:hover {
  background: #6D0000;
  color: #FFFFFF;
  border-color: #6D0000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 93, 82, 0.3);
}

.pill-arrow-circle {
  transition: transform 0.3s ease;
  font-size: 1.05rem;
}

.btn-services-pill:hover .pill-arrow-circle {
  transform: translateX(5px);
}

/* ==========================================================================
   SERVICES SECTION ENHANCED ANIMATIONS & INTERACTIVE STYLES
   ========================================================================== */

/* Botanical Corner Leaf Sway Keyframes */
@keyframes botanicalSwayTL {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-6px, 8px) rotate(-3deg); }
}
@keyframes botanicalSwayTR {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(6px, 8px) rotate(3deg); }
}
@keyframes botanicalSwayBL {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-6px, -8px) rotate(3deg); }
}
@keyframes botanicalSwayBR {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(6px, -8px) rotate(-3deg); }
}

.services-section .botanical-accent.corner-top-left {
  animation: botanicalSwayTL 7s ease-in-out infinite;
}
.services-section .botanical-accent.corner-top-right {
  animation: botanicalSwayTR 8s ease-in-out infinite;
}
.services-section .botanical-accent.corner-bottom-left {
  animation: botanicalSwayBL 7.5s ease-in-out infinite;
}
.services-section .botanical-accent.corner-bottom-right {
  animation: botanicalSwayBR 8.5s ease-in-out infinite;
}

/* Floating Testimonial Bubble Floating Keyframes */
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(1.2deg); }
}

.floating-testimonial-bubble {
  animation: bubbleFloat 4.5s ease-in-out infinite;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.floating-testimonial-bubble:hover {
  transform: translateY(-9px) scale(1.03) !important;
  box-shadow: 0 20px 45px rgba(224, 93, 82, 0.2);
}

/* Featured Badge Tag Glow Pulse */
@keyframes badgeGlowPulse {
  0%, 100% { box-shadow: 0 0 0px rgba(224, 93, 82, 0); }
  50% { box-shadow: 0 0 12px rgba(224, 93, 82, 0.35); }
}

.featured-badge-tag {
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  animation: badgeGlowPulse 3s ease-in-out infinite;
}

/* Card Hover Elevation, Glow Border & Icon Animation */
.service-card-item {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.45s ease,
              background-color 0.45s ease;
  will-change: transform, box-shadow;
}

.service-card-item:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 22px 50px rgba(224, 93, 82, 0.18), 0 8px 20px rgba(0, 0, 0, 0.04);
  border-color: #6D0000;
}

/* Icon Circle Scale, Rotation & Glow Fill */
.service-icon-circle {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              background-color 0.4s ease, 
              color 0.4s ease, 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
}

.service-card-item:hover .service-icon-circle {
  transform: scale(1.15) rotate(8deg);
  background-color: #6D0000;
  color: #FFFFFF;
  border-color: #6D0000;
  box-shadow: 0 8px 22px rgba(224, 93, 82, 0.4);
}

.service-icon-circle svg path {
  transition: stroke 0.4s ease;
}

.service-card-item:hover .service-icon-circle svg path {
  stroke: #FFFFFF;
}

/* Watermark Number Glow & Movement */
.service-number-watermark {
  transition: transform 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.service-card-item:hover .service-number-watermark {
  transform: translateY(-4px) scale(1.08);
  color: #6D0000;
  opacity: 0.9;
}

/* Card 02 Featured Image & Layout Transitions */
.card-02-featured {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.45s ease;
}

.card-02-featured:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 25px 55px rgba(224, 93, 82, 0.2);
  border-color: #6D0000;
}

.card-02-featured:hover .featured-service-img-wrap img {
  transform: scale(1.08) rotate(-0.5deg);
  filter: brightness(1.05);
}

/* Arch Frame Image Hover Zoom */
.arch-img-frame img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.card-split-arch:hover .arch-img-frame img {
  transform: scale(1.09) translateY(-3px);
  filter: brightness(1.03);
}

/* Heart Icon Ornament Pulsing */
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.25); }
  28% { transform: scale(1); }
  42% { transform: scale(1.25); }
  70% { transform: scale(1); }
}

.unified-heart-ornament .heart-icon {
  display: inline-block;
  animation: heartBeat 3s ease-in-out infinite;
}

/*

/* ==========================================================================
   BULLETPROOF FULL-WIDTH HORIZONTAL MARQUEE SHOWCASE
   ========================================================================== */
.portfolio-section {
  position: relative;
  padding: 90px 0 80px;
  background-color: #200305;
  color: #E6D5C3;
  overflow: hidden;
  width: 100%;
}

.portfolio-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.portfolio-bg-glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(181, 135, 84, 0.12);
  top: 10%;
  left: -100px;
}

.portfolio-bg-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(181, 135, 84, 0.1);
  bottom: 10%;
  right: -100px;
}

.portfolio-filter-pills {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin: 32px 0 45px !important;
  position: relative;
  z-index: 5;
}

.filter-pill-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DFCDBC;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(223, 205, 188, 0.2);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
  background: #B58754 !important;
  color: #FFFFFF !important;
  border-color: #B58754 !important;
  box-shadow: 0 6px 20px rgba(181, 135, 84, 0.35);
  transform: translateY(-2px);
}

/* MARQUEE WRAPPERS */
.portfolio-marquee-container {
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 3;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  margin-bottom: 20px;
}

.portfolio-marquee-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  white-space: nowrap !important;
}

.portfolio-marquee-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 20px !important;
  width: max-content !important;
  min-width: max-content !important;
  will-change: transform;
}

.track-left {
  animation: marqueeLeft 40s linear infinite !important;
}

.track-right {
  animation: marqueeRight 40s linear infinite !important;
}

.portfolio-marquee-row:hover .portfolio-marquee-track {
  animation-play-state: paused !important;
}

@keyframes marqueeLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeRight {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* INDIVIDUAL MARQUEE CARDS */
.portfolio-marquee-card {
  display: block !important;
  width: 280px !important;
  height: 380px !important;
  min-width: 280px !important;
  max-width: 280px !important;
  flex: 0 0 280px !important;
  flex-shrink: 0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  position: relative !important;
  cursor: pointer !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.portfolio-marquee-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6) !important;
}

.portfolio-marquee-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s ease !important;
}

.portfolio-marquee-card:hover img {
  transform: scale(1.08) !important;
}

.portfolio-marquee-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(16, 2, 3, 0.92) 0%, rgba(16, 2, 3, 0.3) 50%, transparent 80%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 20px 18px !important;
  transition: opacity 0.35s ease !important;
  z-index: 2 !important;
}

.marquee-card-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #B58754;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.marquee-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .portfolio-marquee-card {
    width: 220px !important;
    height: 300px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    flex: 0 0 220px !important;
  }
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
  background-color: #E6D5C3;
  color: #200305;
}

.reviews-3col-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.reviews-left-col {
  padding-right: 15px;
}

.quote-symbol {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: #B58754;
  line-height: 0.8;
  margin-top: 16px;
}

.testimonial-quote-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: #200305;
  margin: 12px 0 20px;
}

.testimonial-author-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #B58754;
}

.testimonial-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DFCDBC;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  width: 24px;
  border-radius: 10px;
  background: #B58754;
}

.nav-circle-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #B58754;
  background: transparent;
  color: #B58754;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

.nav-circle-arrow:hover {
  background: #B58754;
  color: #FFFFFF;
}

.reviews-center-col {
  display: flex;
  justify-content: center;
}

.video-thumbs-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.video-thumb-card {
  width: 100px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease;
}

.video-thumb-card:hover {
  transform: translateY(-5px);
}

.video-thumb-card.featured-play {
  width: 120px;
  height: 190px;
  border: 2px solid #B58754;
}

.video-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #200305;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.reviews-right-col {
  display: flex;
  justify-content: flex-end;
}

.google-rating-card-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #DFCDBC;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.google-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.google-label-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}

.rating-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.score-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #200305;
  line-height: 1;
}

.five-gold-stars {
  color: #F4B400;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-count-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #7A5359;
  margin-bottom: 24px;
}

.google-btn {
  border-color: #200305;
  color: #200305;
  padding: 10px 20px;
  font-size: 10px;
}

.google-btn:hover {
  background: #200305;
  color: #FFFFFF;
}

/* ==========================================================================
   REDESIGNED LUXURY FOOTER SECTION
   ========================================================================== */
.site-footer-mirror {
  background-color: #1C0305;
  color: #E6D5C3;
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 2px solid #722F37;
}

.footer-corner-floral-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.25;
}

.footer-corner-floral-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.25;
}

.footer-mirror-5col-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-col-brand-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.camera-badge-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #B58754;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B58754;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.logo-text-vbr-serif {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: #E6D5C3;
  line-height: 1;
}

.logo-subtext-tracked {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 5px;
  color: #B58754;
  margin: 4px 0 14px;
}

.logo-ornament-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, #B58754, transparent);
  position: relative;
  margin-bottom: 16px;
}

.dot-center {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B58754;
}

.brand-bio-text {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.7;
  color: #A38488;
  margin-bottom: 18px;
}

.brand-leaf-motif-row {
  margin-bottom: 18px;
}

.brand-social-white-circles {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-social-white-circles a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(227, 202, 175, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E6D5C3;
  font-size: 13px;
  transition: all 0.35s ease;
}

.brand-social-white-circles a:hover {
  background: #B58754;
  color: #FFFFFF;
  border-color: #B58754;
  transform: translateY(-3px);
}

.footer-col-header-group {
  margin-bottom: 20px;
}

.footer-col-title-serif {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #E6D5C3;
  text-transform: uppercase;
}

.footer-title-ornament {
  width: 40px;
  height: 1px;
  background: #B58754;
  margin-top: 6px;
}

.footer-nav-chevron-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-chevron-list a {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: #A38488;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.chevron-gt {
  color: #B58754;
  font-weight: bold;
}

.footer-nav-chevron-list a:hover {
  color: #B58754;
  transform: translateX(4px);
}

.contact-items-circle-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-circle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: #A38488;
}

.contact-circle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(181, 135, 84, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B58754;
  font-size: 12px;
  flex-shrink: 0;
}

.footer-5-insta-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.footer-5-insta-thumbs img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-monogram-wreath-wrap {
  margin-top: 16px;
}

.wreath-monogram-circle-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.monogram-dotted-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px stroke #B58754;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  color: #B58754;
}

.footer-bottom-floating-bar {
  background: #130103;
  border: 1px solid rgba(227, 202, 175, 0.12);
  border-radius: 16px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  flex-wrap: nowrap;
}

.logo-brand-vbr {
  position: relative;
  padding: 4px 14px;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-actions {
  flex-shrink: 0;
}

.award-card-pill, .made-with-love-card-pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.award-badge-icon, .heart-circle-bg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(181, 135, 84, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B58754;
  font-size: 14px;
}

.award-text-group, .made-text-group {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 1px;
  color: #D4C1AE;
  line-height: 1.3;
}

.footer-center-copyright-box {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  color: #8C6A6E;
}

.copyright-heart-ornament {
  margin-top: 2px;
  color: #B58754;
}

/* Helper fixes */
.stat-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.open-video-btn {
  cursor: pointer;
}

/* Additional Responsive Media Queries */
@media (max-width: 1200px) {
  .footer-mirror-5col-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .pricing-cards-grid {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-card-box.featured-signature {
    transform: none;
  }
  .reviews-3col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reviews-right-col {
    justify-content: center;
  }
  .footer-mirror-5col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom-floating-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-mirror-5col-grid {
    grid-template-columns: 1fr;
  }
  .custom-package-bar {
    flex-direction: column;
    text-align: center;
  }
  .portfolio-marquee-card {
    width: 260px;
    height: 350px;
  }
  .section-title-serif {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   EXTRA UI & ANIMATION HELPERS FOR HOME PAGE
   ========================================================================== */
.portfolio-anim-header {
  opacity: 1;
  transform: none;
}

.sparkle-star {
  color: #B58754;
  display: inline-block;
  margin: 0 4px;
  animation: pulseSparkle 2s ease-in-out infinite alternate;
}

@keyframes pulseSparkle {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 1; }
}

.story-gold-shimmer {
  position: relative;
  overflow: hidden;
}

.story-gold-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(181, 135, 84, 0.25), transparent);
  animation: shimmerMove 3s infinite;
}

@keyframes shimmerMove {
  100% { left: 150%; }
}

.portfolio-anim-pills {
  position: relative;
  z-index: 5;
}

.portfolio-anim-cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.story-btn-glow {
  box-shadow: 0 0 25px rgba(181, 135, 84, 0.4);
  transition: all 0.35s ease;
}

.story-btn-glow:hover {
  box-shadow: 0 0 35px rgba(181, 135, 84, 0.7);
  transform: translateY(-3px);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.lightbox-trigger {
  cursor: pointer;
}

.card-01 {
  grid-column: span 1;
}

.google-g-svg {
  flex-shrink: 0;
}

.diamond-center {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #B58754;
  transform: rotate(45deg);
}

.custom-btn {
  flex-shrink: 0;
}

.bubble-text-content {
  display: flex;
  flex-direction: column;
}

.footer-col-nav,
.footer-col-services,
.footer-col-info,
.footer-col-contact {
  display: flex;
  flex-direction: column;
}

.heart-accent,
.heart-icon-sm {
  color: #E55252;
  display: inline-block;
}

.marquee-row-1, .marquee-row-2 {
  width: 100%;
}

/* ==========================================================================
   NEW FLEXIBLE PRICING SECTION
   ========================================================================== */
.pricing-section {
  position: relative;
  padding: 100px 0 120px;
  background: url('../../images/pricing_bg.jpg') center center / cover repeat, #FAF4EB !important;
  color: #6D0000;
  overflow: hidden;
}

.pricing-section .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Grid */
.pricing-new-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 28px;
  flex-wrap: wrap;
}

.pricing-new-header-left {
  flex: 1 1 500px;
}

/* ==========================================================================
   PRICING SECTION - MIRROR REPLICA OF REFERENCE MOCKUP
   ========================================================================== */
.pricing-section,
#pricing {
  position: relative !important;
  background-color: #FBF7F4 !important;
  background-image: none !important;
  padding: 30px 0 40px 0 !important;
  color: #4A0D15 !important;
}

/* Header Container Row */
.pricing-new-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  margin-bottom: 50px !important;
}

.pricing-new-header-left {
  flex: 1 1 550px !important;
  max-width: 620px !important;
}

/* Flexible Pricing Tag Pill */
.pricing-tag-pill {
  display: inline-block !important;
  padding: 6px 18px !important;
  background-color: #F0E4D8 !important;
  border-radius: 50px !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: #4A0D15 !important;
  margin-bottom: 16px !important;
}

/* Header Title */
.pricing-title-main {
  margin: 0 0 18px 0 !important;
  line-height: 1.1 !important;
}

.pricing-title-main .title-bold-row {
  display: block !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #4A0D15 !important;
  letter-spacing: -0.5px !important;
}

.pricing-title-main .title-underline-bar {
  display: block !important;
  width: 44px !important;
  height: 3px !important;
  background-color: #4A0D15 !important;
  margin: 10px 0 12px 0 !important;
}

.pricing-title-main .title-script-row {
  display: block !important;
  font-family: var(--font-script, 'Alex Brush', cursive) !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  color: #4A0D15 !important;
  line-height: 1.05 !important;
  text-transform: none !important;
}

.pricing-new-desc {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  color: #555555 !important;
  margin: 0 !important;
  font-weight: 400 !important;
  max-width: 540px !important;
}

/* Right Header Graphic (Camera Circle & Slate) */
.pricing-header-graphic-wrap {
  position: relative !important;
  width: 300px !important;
  height: 260px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.graphic-sparkle {
  position: absolute !important;
  color: #E2BDB5 !important;
  font-size: 18px !important;
  z-index: 2 !important;
}
.graphic-sparkle.sparkle-1 { top: 10px; left: 20px; }
.graphic-sparkle.sparkle-2 { bottom: 30px; right: 10px; }

.crossed-ribbon {
  position: absolute !important;
  height: 1px !important;
  width: 280px !important;
  background: rgba(74, 13, 21, 0.12) !important;
  pointer-events: none !important;
}
.crossed-ribbon.ribbon-line-1 { transform: rotate(-35deg); }
.crossed-ribbon.ribbon-line-2 { transform: rotate(35deg); }

.camera-circle-frame {
  width: 230px !important;
  height: 230px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(74, 13, 21, 0.12) !important;
  border: 4px solid #FFFFFF !important;
  position: relative !important;
  z-index: 1 !important;
}

.camera-circle-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.floating-slate-badge {
  position: absolute !important;
  top: 50px !important;
  left: 10px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #4A0D15 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 20px rgba(74, 13, 21, 0.3) !important;
  z-index: 3 !important;
}

/* Split Layout Grid */
.pricing-split-layout {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

/* LEFT CARD: Interactive Selector */
.pricing-interactive-card {
  background: #FFFFFF !important;
  border: 1px solid #F0E6DD !important;
  border-radius: 24px !important;
  padding: 40px 36px !important;
  box-shadow: 0 15px 45px rgba(74, 13, 21, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Tracker */
.pricing-steps-tracker {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 28px !important;
  width: 100% !important;
}

.pricing-step {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.pricing-step .step-num {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 1.5px solid #D4C5B9 !important;
  color: #4A0D15 !important;
  background: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-sans, sans-serif) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.pricing-step.active .step-num {
  border-color: #4A0D15 !important;
  color: #FFFFFF !important;
  background: #4A0D15 !important;
}

.pricing-step .step-label {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 9.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: #777777 !important;
}

.pricing-step.active .step-label {
  color: #4A0D15 !important;
}

.pricing-steps-tracker .step-line {
  flex-grow: 1 !important;
  height: 1.5px !important;
  background: #EAE0D5 !important;
  margin: 0 10px !important;
}

/* Header inside card */
.pricing-step-header {
  margin-bottom: 24px !important;
}

.step-question-title {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #4A0D15 !important;
  margin: 0 0 4px 0 !important;
}

.step-question-sub {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 13.5px !important;
  color: #777777 !important;
  margin: 0 !important;
}

/* 6 Choices Grid (3 Cols x 2 Rows) */
.services-choices-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 32px !important;
}

.service-choice-item {
  position: relative !important;
  background: #FAF8F5 !important;
  border: 1.5px solid #ECE3D9 !important;
  border-radius: 16px !important;
  padding: 24px 14px 20px 14px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.service-choice-item .choice-radio {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  border: 1.5px solid #C4B5A8 !important;
  background: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.service-choice-item .choice-radio .radio-dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.service-choice-item.active .choice-radio {
  border-color: #4A0D15 !important;
}

.service-choice-item.active .choice-radio .radio-dot {
  background: #4A0D15 !important;
}

.choice-icon-badge {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: #F4E8E5 !important;
  color: #4A0D15 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  margin-bottom: 14px !important;
  transition: all 0.3s ease !important;
}

.choice-title {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #333333 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.service-choice-item:hover {
  border-color: #4A0D15 !important;
  background: #FFF9F8 !important;
}

.service-choice-item.active {
  border-color: #4A0D15 !important;
  background: #FFF9F8 !important;
  box-shadow: 0 6px 20px rgba(74, 13, 21, 0.08) !important;
}

.service-choice-item.active .choice-title {
  color: #4A0D15 !important;
}

/* Bottom CTA Row (Left Card) */
.pricing-left-cta-row {
  text-align: center !important;
  margin-top: 10px !important;
}

.btn-pricing-next-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  background: #4A0D15 !important;
  color: #FFFFFF !important;
  padding: 14px 34px !important;
  border-radius: 50px !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(74, 13, 21, 0.25) !important;
  transition: all 0.3s ease !important;
}

.btn-pricing-next-pill:hover {
  background: #2D080D !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(74, 13, 21, 0.35) !important;
  color: #FFFFFF !important;
}

/* RIGHT CARD: Visual Showcase */
.pricing-promo-card {
  position: relative !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  min-height: 560px !important;
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  border: 1px solid #ECE0D5 !important;
  box-shadow: 0 15px 45px rgba(74, 13, 21, 0.05) !important;
}

.promo-bg-image-layer {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  z-index: 1 !important;
}

.promo-bg-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(0, 0, 0, 0.35) 100%) !important;
  z-index: 2 !important;
}

.promo-rocket-badge {
  position: relative !important;
  z-index: 3 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: #4A0D15 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  box-shadow: 0 8px 24px rgba(74, 13, 21, 0.3) !important;
  margin-bottom: 24px !important;
}

.promo-headline-wrap {
  position: relative !important;
  z-index: 3 !important;
  margin-bottom: 30px !important;
}

.promo-main-headline {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 38px !important;
  font-weight: 800 !important;
  color: #4A0D15 !important;
  line-height: 1.15 !important;
  margin: 0 0 4px 0 !important;
}

.promo-script-sub {
  font-family: var(--font-script, 'Alex Brush', cursive) !important;
  font-size: 46px !important;
  font-weight: 400 !important;
  color: #4A0D15 !important;
  display: block !important;
  line-height: 1.1 !important;
  text-transform: none !important;
}

.promo-headline-underline {
  width: 44px !important;
  height: 2.5px !important;
  background: #4A0D15 !important;
  margin-top: 14px !important;
}

.promo-goal-statement-box {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  margin-bottom: 24px !important;
}

.goal-star-badge {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  background: #4A0D15 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
}

.goal-text {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #222222 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Glassmorphism Bottom Bar */
.promo-glass-features-bar {
  position: relative !important;
  z-index: 3 !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  padding: 16px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

.glass-feature-pillar {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.pillar-icon-badge {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #F4E8E5 !important;
  color: #4A0D15 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
}

.pillar-text {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #4A0D15 !important;
  line-height: 1.25 !important;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
  .pricing-split-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .pricing-new-header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .services-choices-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .promo-glass-features-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .services-choices-grid {
    grid-template-columns: 1fr !important;
  }
}
  .pricing-steps-tracker .step-line {
    margin: 0 10px;
  }
}

/* ==========================================================================
   EXACT ALTERNATING MAROON & WHITE TEXTURE BACKGROUND DESIGN SYSTEM
   ========================================================================== */


/* --------------------------------------------------------------------------
   2. SERVICES SECTION (#services): WHITE TEXTURE
   -------------------------------------------------------------------------- */
#services,
.services-mirror-section,
.services-section {
  background: url('../../images/white_bg.jpg') center center / cover repeat, #FFFFFF !important;
  color: #2B2B2B !important;
  position: relative;
}

#services h1, #services h2, #services h3, #services h4,
.services-mirror-section h1, .services-mirror-section h2, .services-mirror-section h3, .services-mirror-section h4,
.services-section h1, .services-section h2, .services-section h3, .services-section h4 {
  color: #1C0305 !important;
}

#services p, #services span:not(.service-tag-crimson), #services li,
.services-mirror-section p, .services-section p {
  color: #4A4A4A !important;
}

#services .service-tag-crimson,
.services-mirror-section .service-subtag-gold {
  color: #8B0000 !important;
}

#services .service-mirror-card,
.services-section .service-card {
  background: #FFFFFF !important;
  border: 1px solid #EFE6DC !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

/* --------------------------------------------------------------------------
   3. PORTFOLIO SECTION (#portfolio): PAPER TEXTURE (#6D0000 ACCENT & CARDS)
   -------------------------------------------------------------------------- */
#portfolio,
.portfolio-mirror-section,
.portfolio-section,
.new-portfolio-section {
  background: url('../../images/paper_texture_bg.jpg') center center / cover repeat, #FAF4EB !important;
  color: #6D0000 !important;
  position: relative;
}

#portfolio h1, #portfolio h2, #portfolio h3, #portfolio h4, #portfolio h5, #portfolio h6,
.portfolio-mirror-section h1, .portfolio-mirror-section h2, .portfolio-mirror-section h3, .portfolio-mirror-section h4,
.portfolio-section h1, .portfolio-section h2, .portfolio-section h3, .portfolio-section h4,
.portfolio-section .section-title-serif,
.portfolio-title-main {
  color: #6D0000 !important;
}

#portfolio h2 span.gold-text,
.portfolio-mirror-section h2 span.gold-text,
.portfolio-section h2 span.gold-text,
.portfolio-section .script-text-gold,
.portfolio-section .unified-script-text {
  color: #6D0000 !important;
}

#portfolio .portfolio-subtag-gold,
.portfolio-mirror-section .portfolio-subtag-gold,
.portfolio-section .section-tag,
.portfolio-section .section-tag-gold,
.portfolio-section .tag-text,
.portfolio-tag-flourish .tag-text {
  color: #6D0000 !important;
  opacity: 1 !important;
}

#portfolio p, #portfolio li, #portfolio label, #portfolio em, #portfolio strong,
.portfolio-mirror-section p, .portfolio-section p {
  color: #6D0000 !important;
}

#portfolio .tab-pill-btn,
.portfolio-mirror-section .tab-pill-btn,
.portfolio-section .filter-pill-btn,
.portfolio-tab-pill-btn {
  background: #FFFFFF !important;
  color: #6D0000 !important;
  border: 1.5px solid #D9C8B4 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

#portfolio .tab-pill-btn.active,
.portfolio-mirror-section .tab-pill-btn.active,
.portfolio-section .filter-pill-btn.active,
.portfolio-section .filter-pill-btn:hover,
.portfolio-tab-pill-btn.active,
.portfolio-tab-pill-btn:hover {
  background: #6D0000 !important;
  color: #FFFFFF !important;
  border-color: #6D0000 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 20px rgba(109, 0, 0, 0.3) !important;
}

/* Portfolio Cards Text #6D0000 & Glass Contrast Box */
.portfolio-card-item-title,
.portfolio-slider-item-card h3,
.portfolio-marquee-card .marquee-card-title,
.marquee-card-title {
  color: #6D0000 !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  margin-top: 2px !important;
  text-shadow: none !important;
}

.portfolio-card-item-location,
.portfolio-slider-item-card span,
.portfolio-marquee-card .marquee-card-tag,
.marquee-card-tag {
  color: #6D0000 !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
}

.portfolio-card-details-box {
  background: rgba(255, 253, 248, 0.92) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(217, 195, 170, 0.7) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  position: absolute !important;
  bottom: 14px !important;
  left: 14px !important;
  right: 14px !important;
  z-index: 5 !important;
}

.portfolio-card-dark-gradient {
  background: linear-gradient(to top, rgba(250, 244, 235, 0.85) 0%, rgba(250, 244, 235, 0.2) 60%, transparent 100%) !important;
}

/* --------------------------------------------------------------------------
   4. PRICING SECTION (#pricing): CLEAN WARM BG
   -------------------------------------------------------------------------- */
#pricing,
.pricing-section {
  background-color: #FBF7F4 !important;
  background-image: none !important;
  color: #4A0D15 !important;
}

/* --------------------------------------------------------------------------
   5. REVIEWS SECTION / OUR HAPPY CLIENTS MIRROR SECTION
   -------------------------------------------------------------------------- */
#reviews,
.reviews-section,
.happy-clients-mirror-section {
  background: url('../../images/maroon_bg.jpg') center center / cover repeat, #4A0E17 !important;
  color: #FFFFFF !important;
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force 100% visibility on all child containers */
.happy-clients-mirror-section .happy-clients-header-center,
.happy-clients-mirror-section .happy-left-block,
.happy-clients-mirror-section .happy-right-block,
.happy-clients-mirror-section .reveal-up,
.happy-clients-mirror-section .reveal-left,
.happy-clients-mirror-section .reveal-right,
.happy-clients-mirror-section .reveal-fade {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Background Watermark Floral SVG Elements */
.happy-bg-floral {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}
.happy-bg-floral.floral-top-left {
  top: 0;
  left: 0;
  width: 280px;
}
.happy-bg-floral.floral-top-right {
  top: 0;
  right: 0;
  width: 320px;
}
.happy-bg-floral.floral-bottom-right {
  bottom: 0;
  right: 0;
  width: 250px;
}

/* Header Center */
.happy-clients-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 3;
}
.happy-clients-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  font-weight: 700;
  color: #C59B63 !important;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.happy-clients-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #F7EBE8 !important;
  margin-bottom: 0.5rem;
}
.happy-clients-script-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #F2D7D0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.happy-clients-script-title .script-heart-symbol {
  color: #C59B63 !important;
  font-style: normal;
}

/* Main Grid Layout */
.happy-clients-main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Left Block */
.happy-left-block {
  position: relative;
}
.cards-gold-swirls-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 105%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* 3 Tilted Photo Cards Row */
.happy-cards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}
.happy-card-item {
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}
.happy-card-item.card-tilted-left {
  width: 180px;
  height: 240px;
  transform: rotate(-6deg) translateY(10px);
}
.happy-card-item.card-tilted-left:hover {
  transform: rotate(0deg) translateY(-5px) scale(1.05);
  z-index: 4;
}
.happy-card-item.card-center-hero {
  width: 220px;
  height: 290px;
  transform: rotate(0deg) translateY(-8px);
  z-index: 3;
  cursor: pointer;
}
.happy-card-item.card-center-hero:hover {
  transform: rotate(0deg) translateY(-15px) scale(1.05);
}
.happy-card-item.card-tilted-right {
  width: 180px;
  height: 240px;
  transform: rotate(6deg) translateY(10px);
}
.happy-card-item.card-tilted-right:hover {
  transform: rotate(0deg) translateY(-5px) scale(1.05);
  z-index: 4;
}

.card-inner-frame {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(197, 155, 99, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: #1a1a1a;
}
.card-inner-frame.gold-border-frame {
  border: 3px solid #C59B63;
  box-shadow: 0 20px 45px rgba(197, 155, 99, 0.35);
}
.card-inner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.happy-card-item:hover .card-inner-frame img {
  transform: scale(1.08);
}

.card-heart-badge {
  position: absolute;
  bottom: -10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6D0000, #C59B63);
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.hero-play-button-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(197, 155, 99, 0.95);
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 25px rgba(197, 155, 99, 0.8);
  transition: all 0.3s ease;
}
.card-center-hero:hover .hero-play-button-circle {
  transform: translate(-50%, -50%) scale(1.15);
  background: #C59B63;
  box-shadow: 0 0 35px rgba(197, 155, 99, 1);
}

/* Quote Block */
.happy-quote-block {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
.quote-text-serif {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  color: #FAF5F0 !important;
  margin-bottom: 0.75rem;
}
.quote-mark {
  color: #C59B63 !important;
  font-style: normal;
  font-size: 1.6rem;
}
.quote-heart-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.q-flourish-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, #C59B63, transparent);
}
.q-flourish-heart {
  color: #C59B63 !important;
  font-size: 1.1rem;
}

/* 3 Stat Counters Bar */
.happy-stats-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(30, 5, 10, 0.55);
  border: 1px solid rgba(197, 155, 99, 0.4);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.stat-col-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197, 155, 99, 0.5);
  background: #FCEDEC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-text-wrap {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3A1422 !important;
  line-height: 1.2;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #554843 !important;
}

/* Right Block: Google Rating Card */
.happy-right-block {
  position: relative;
}
.google-rating-mirror-card {
  background: #FFFFFF !important;
  border-radius: 24px;
  padding: 2.75rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(197, 155, 99, 0.4);
  text-align: center;
  color: #1a1a1a !important;
}
.google-rating-mirror-card * {
  color: inherit;
}
.card-watermark-floral {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.card-watermark-floral.top-right-watermark {
  top: 0;
  right: 0;
  width: 160px;
}
.card-watermark-floral.bottom-left-watermark {
  bottom: 0;
  left: 0;
  width: 140px;
}
.google-card-inner {
  position: relative;
  z-index: 2;
}
.google-logo-circle-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #FFFFFF;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.google-rating-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: #4285F4 !important;
  text-transform: uppercase;
}
.google-label-underline {
  width: 44px;
  height: 2px;
  background: #C59B63;
  margin: 0.6rem auto 1.4rem;
  border-radius: 2px;
}
.google-score-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}
.big-score-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #111111 !important;
  line-height: 1;
}
.five-stars-gold {
  color: #FBBC05 !important;
  font-size: 1.4rem;
  letter-spacing: 3px;
}
.google-script-excellent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: #C59B63 !important;
  margin-bottom: 1rem;
}
.google-reviews-count-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #5f6368 !important;
  margin-bottom: 1.4rem;
}
.count-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.count-badge-text {
  color: #5f6368 !important;
}
.google-card-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 1.4rem 0;
}
.google-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.9rem 1.85rem;
  background: linear-gradient(135deg, #111111 0%, #2b2b2b 100%);
  color: #FFFFFF !important;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.google-pill-button:hover {
  background: linear-gradient(135deg, #C59B63 0%, #a67d46 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 155, 99, 0.35);
  color: #FFFFFF !important;
}
.pill-btn-text {
  color: #FFFFFF !important;
}
.pill-gold-circle-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #C59B63;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.google-pill-button:hover .pill-gold-circle-arrow {
  background: #FFFFFF;
  color: #C59B63 !important;
  transform: translateX(3px);
}
.google-card-bottom-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1.4rem;
}
.card-f-line {
  width: 35px;
  height: 1px;
  background: #C59B63;
  opacity: 0.4;
}
.card-f-heart {
  color: #C59B63 !important;
  font-size: 0.9rem;
}

/* Responsive Breakpoints for Happy Clients Section */
@media (max-width: 992px) {
  .happy-clients-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .happy-right-block {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .happy-clients-main-title {
    font-size: 2.25rem;
  }
  .happy-cards-row {
    gap: 0.75rem;
  }
  .happy-card-item.card-tilted-left,
  .happy-card-item.card-tilted-right {
    width: 140px;
    height: 190px;
  }
  .happy-card-item.card-center-hero {
    width: 170px;
    height: 230px;
  }
  .happy-stats-three-col {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .happy-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .happy-card-item.card-tilted-left,
  .happy-card-item.card-tilted-right,
  .happy-card-item.card-center-hero {
    transform: none !important;
    width: 100%;
    max-width: 280px;
    height: 230px;
  }
}

/* --------------------------------------------------------------------------
   6. FOOTER / CONTACT SECTION: WHITE TEXTURE
   -------------------------------------------------------------------------- */
.site-footer-mirror,
footer {
  background: url('../../images/white_bg.jpg') center center / cover repeat, #FFFFFF !important;
  color: #2B2B2B !important;
  position: relative;
}

.site-footer-mirror h1, .site-footer-mirror h2, .site-footer-mirror h3, .site-footer-mirror h4, .site-footer-mirror .footer-col-title {
  color: #1C0305 !important;
}

.site-footer-mirror p, .site-footer-mirror a, .site-footer-mirror span, .site-footer-mirror li {
  color: #333333 !important;
}

.site-footer-mirror a:hover {
  color: #8B0000 !important;
}

.site-footer-mirror .camera-badge-circle {
  border-color: #8B0000 !important;
  color: #8B0000 !important;
}

.site-footer-mirror .footer-copyright-row {
  border-top: 1px solid #EAE0D5 !important;
  color: #666666 !important;
}

/* ==========================================================================
   UNIFIED SECTION HEADERS & FONT STYLE SYSTEM (PURE WHITE CONTENT)
   ========================================================================== */
.unified-section-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
  color: #FFFFFF !important;
}

.unified-section-header.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.unified-section-header.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.unified-tag-flourish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.unified-tag-flourish .tag-text {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 4.5px !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  opacity: 1 !important;
}

.unified-tag-flourish .flourish-line {
  width: 55px;
  height: 1px;
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  opacity: 0.9 !important;
}

.unified-section-title {
  font-family: 'Epilogue', -apple-system, sans-serif !important;
  font-size: 44px !important;
  font-weight: 500 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  line-height: 1.15 !important;
  margin-top: 8px !important;
  margin-bottom: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px 18px !important;
}

.unified-script-text {
  font-family: var(--font-script, 'Alex Brush', cursive) !important;
  font-size: 44px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: none !important;
  color: #FFFFFF !important;
  letter-spacing: 1px !important;
  line-height: 1.15 !important;
  display: inline-block !important;
  margin-left: 6px;
  opacity: 1 !important;
}

.unified-section-subtitle {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 15.5px !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  color: #FFFFFF !important;
  opacity: 1 !important;
  margin: 12px auto 16px !important;
  max-width: 680px;
}

.unified-heart-ornament {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
  color: #FFFFFF !important;
}

.unified-heart-ornament .heart-line {
  width: 48px;
  height: 1px;
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  opacity: 0.9 !important;
}

.unified-heart-ornament .heart-icon {
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF !important;
  opacity: 1 !important;
}

#services .unified-section-header,
#services .unified-section-header *,
#services .unified-tag-flourish .tag-text,
#services .unified-tag-flourish .flourish-line,
#services .unified-section-title,
#services .unified-script-text,
#services .unified-section-subtitle,
#services .unified-heart-ornament .heart-line,
#services .unified-heart-ornament .heart-icon,
#portfolio .unified-section-header,
#portfolio .unified-section-header *,
#portfolio .unified-tag-flourish .tag-text,
#portfolio .unified-tag-flourish .flourish-line,
#portfolio .unified-section-title,
#portfolio .unified-script-text,
#portfolio .unified-section-subtitle,
#portfolio .unified-heart-ornament .heart-line,
#portfolio .unified-heart-ornament .heart-icon {
  color: #FFFFFF !important;
}

#services .unified-tag-flourish .flourish-line,
#services .unified-heart-ornament .heart-line,
#portfolio .unified-tag-flourish .flourish-line,
#portfolio .unified-heart-ornament .heart-line {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  opacity: 0.9 !important;
}

/* ==========================================================================
   FORCE ALL GOLDEN ACCENTS, BORDERS, BUTTONS & CONTENT TO WHITE IN CARD-DARK
   ========================================================================== */
.card-dark,
.pricing-card-item.card-dark,
#pricing .card-dark,
.pricing-section .card-dark {
  background: #6D0000 !important;
  border: 1.5px solid #FFFFFF !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.2) !important;
}

.card-dark:hover {
  border-color: #FFFFFF !important;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.5), 0 0 45px rgba(255, 255, 255, 0.35) !important;
}

/* Card inner text elements */
.card-dark .plan-card-title,
.card-dark .starting-label,
.card-dark .plan-price-val,
.card-dark .feature-label,
.card-dark li,
.card-dark p,
.card-dark h3 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

/* 1. Arch Dome Badge & Borders */
.card-dark .card-dome-badge,
.card-dark .card-dome-badge.dark-badge {
  background: #6D0000 !important;
  border: 1.5px solid #FFFFFF !important;
  border-bottom: none !important;
}

.card-dark .card-dome-badge::before {
  box-shadow: 4px 4px 0 4px #6D0000 !important;
}

.card-dark .card-dome-badge::after {
  box-shadow: -4px 4px 0 4px #6D0000 !important;
}

.card-dark .badge-icon-circle,
.card-dark .badge-icon-circle.dark-circle {
  background: #6D0000 !important;
  border: 1.5px solid #FFFFFF !important;
}

/* 2. SVGs (Filigree, Diamond Emblem, Feature Icons) */
.card-dark svg path,
.card-dark svg line,
.card-dark svg polyline,
.card-dark svg polygon,
.card-dark svg rect,
.card-dark .arch-filigree-svg path,
.card-dark .badge-icon-circle svg path,
.card-dark .feature-icon-badge svg path {
  stroke: #FFFFFF !important;
}

.card-dark svg circle,
.card-dark .arch-filigree-svg circle {
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* 3. Lines, Underlines & Dividers */
.card-dark .starting-tag-row .tag-line,
.card-dark .starting-tag-row .gold-line,
.card-dark .price-underline-accent,
.card-dark .gold-underline {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  opacity: 0.8 !important;
}

.card-dark .plan-features-list li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35) !important;
}

.card-dark .feature-icon-badge,
.card-dark .dark-icon-badge {
  border: 1.5px solid #FFFFFF !important;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #FFFFFF !important;
}

.card-dark .feature-icon-badge svg,
.card-dark .dark-icon-badge svg {
  stroke: #FFFFFF !important;
  color: #FFFFFF !important;
}

/* 4. "MOST POPULAR" Top Right Ribbon */
.card-dark .ribbon-most-popular,
.card-dark .ribbon-most-popular * {
  background: #FFFFFF !important;
  color: #6D0000 !important;
  -webkit-text-fill-color: #6D0000 !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

/* 5. "VIEW DETAILS" Action Button with #6D0000 Text & Arrow */
.card-dark .btn-card-gold-fill,
.card-dark .btn-card-gold-fill *,
.card-dark .btn-card-gold-fill span,
.card-dark .btn-card-gold-fill i,
.card-dark .card-action-bottom a,
.card-dark .card-action-bottom a * {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  color: #6D0000 !important;
  -webkit-text-fill-color: #6D0000 !important;
  border-color: #FFFFFF !important;
  font-weight: 700 !important;
}

.card-dark .btn-card-gold-fill:hover,
.card-dark .btn-card-gold-fill:hover *,
.card-dark .card-action-bottom a:hover,
.card-dark .card-action-bottom a:hover * {
  background: #FAF6F0 !important;
  background-color: #FAF6F0 !important;
  color: #4D0000 !important;
  -webkit-text-fill-color: #4D0000 !important;
}

/* FORCE TITLE CASE SCRIPT TEXT OVERRIDE */
.unified-script-text,
.pricing-script-text,
.script-text,
.script-text-gold,
.unified-section-title .unified-script-text,
.pricing-title-main .pricing-script-text {
  text-transform: none !important;
}

/* ==========================================================================
   CONTACT US SECTION STYLES (#contact): MAROON TEXTURE BG & WHITE CONTENT COLOR
   ========================================================================== */
.contact-us-section,
#contact.contact-us-section,
#contact {
  position: relative !important;
  background-color: #FAF6F0 !important;
  background-image: url('../../images/paper_texture_bg.jpg'), url('../images/paper_texture_bg.jpg'), url('/images/paper_texture_bg.jpg'), url('images/paper_texture_bg.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: repeat !important;
  color: #6D0000 !important;
  padding: 100px 0 !important;
  overflow: hidden !important;
}

/* Force pure content color #6D0000 on section header elements */
.contact-us-section .unified-section-header,
.contact-us-section .unified-section-header *,
.contact-us-section .unified-section-title,
.contact-us-section .unified-section-title *,
.contact-us-section .unified-script-text,
.contact-us-section .unified-section-subtitle,
.contact-us-section .tag-text,
.contact-us-section .heart-icon,
#contact .unified-section-header,
#contact .unified-section-header *,
#contact .unified-section-title,
#contact .unified-section-title *,
#contact .unified-script-text,
#contact .unified-section-subtitle,
#contact .tag-text,
#contact .heart-icon {
  color: #6D0000 !important;
  -webkit-text-fill-color: #6D0000 !important;
}

.contact-us-section .flourish-line,
.contact-us-section .heart-line,
#contact .flourish-line,
#contact .heart-line {
  background: #6D0000 !important;
  background-color: #6D0000 !important;
  opacity: 0.4 !important;
}

.contact-bg-floral {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.contact-bg-floral.floral-top-left {
  top: -20px;
  left: -30px;
  width: 320px;
  height: 320px;
}

.contact-bg-floral.floral-bottom-right {
  bottom: -20px;
  right: -30px;
  width: 320px;
  height: 320px;
}

.contact-bg-floral svg path,
.contact-bg-floral svg circle {
  stroke: #6D0000 !important;
  fill: #6D0000 !important;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  margin-top: 50px;
  align-items: start;
}

/* Left Contact Info Card */
.contact-info-card {
  background: #FFFDF9 !important;
  border: 1.5px solid rgba(109, 0, 0, 0.25) !important;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 16px 40px rgba(109, 0, 0, 0.08) !important;
  position: relative;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: #6D0000 !important;
  box-shadow: 0 20px 48px rgba(109, 0, 0, 0.15) !important;
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #6D0000 !important;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.contact-card-sub {
  font-size: 14px;
  color: #6D0000 !important;
  opacity: 0.85 !important;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-icon-badge {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: rgba(109, 0, 0, 0.08) !important;
  border: 1.5px solid #6D0000 !important;
  color: #6D0000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.contact-info-item:hover .info-icon-badge {
  background: #6D0000 !important;
  color: #FFFFFF !important;
  border-color: #6D0000 !important;
  transform: translateY(-2px);
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #6D0000 !important;
  opacity: 0.85 !important;
  text-transform: uppercase;
}

.info-value {
  font-size: 15px;
  color: #6D0000 !important;
  font-weight: 600;
  line-height: 1.5;
}

a.info-link {
  color: #6D0000 !important;
  text-decoration: none;
  transition: var(--transition);
}

a.info-link:hover {
  color: #4D0000 !important;
  text-decoration: underline !important;
}

/* Social Connect */
.contact-social-connect {
  border-top: 1px solid rgba(109, 0, 0, 0.2) !important;
  border-bottom: 1px solid rgba(109, 0, 0, 0.2) !important;
  padding: 24px 0;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.social-connect-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #6D0000 !important;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.contact-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FAF6F0 !important;
  border: 1px solid rgba(109, 0, 0, 0.3) !important;
  color: #6D0000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}

.contact-social-icons a:hover {
  background: #6D0000 !important;
  color: #FFFFFF !important;
  border-color: #6D0000 !important;
  transform: translateY(-3px);
}

/* Quote Box */
.contact-quote-box {
  background: rgba(109, 0, 0, 0.06) !important;
  border-left: 3px solid #6D0000 !important;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
}

.contact-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: #6D0000 !important;
  line-height: 1.6;
}

.contact-quote-text .q-mark {
  color: #6D0000 !important;
  font-size: 20px;
}

.contact-quote-author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #6D0000 !important;
  margin-top: 8px;
  text-align: right;
  letter-spacing: 1px;
}

/* Right Form Card */
.contact-form-card {
  background: #FFFDF9 !important;
  border: 1.5px solid rgba(109, 0, 0, 0.25) !important;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 16px 40px rgba(109, 0, 0, 0.08) !important;
}

.contact-form-card:hover {
  border-color: #6D0000 !important;
  box-shadow: 0 20px 48px rgba(109, 0, 0, 0.15) !important;
}

.form-header-title {
  margin-bottom: 28px;
}

.form-header-title h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #6D0000 !important;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.form-header-title p {
  font-size: 14px;
  color: #6D0000 !important;
  opacity: 0.85 !important;
}

.contact-form-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #6D0000 !important;
  text-transform: uppercase;
}

.form-group label .req {
  color: #6D0000 !important;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: #6D0000 !important;
  font-size: 15px;
  pointer-events: none;
  transition: var(--transition);
}

.input-with-icon.textarea-icon i {
  top: 16px;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: #FAF6F0 !important;
  border: 1px solid rgba(109, 0, 0, 0.3) !important;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #6D0000 !important;
  outline: none;
  transition: var(--transition);
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
  color: rgba(109, 0, 0, 0.6) !important;
}

.input-with-icon select {
  appearance: none;
  cursor: pointer;
  color: #6D0000 !important;
}

.input-with-icon select option {
  background: #FFFDF9 !important;
  color: #6D0000 !important;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  border-color: #6D0000 !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 3px rgba(109, 0, 0, 0.12) !important;
}

.input-with-icon input:focus + i,
.input-with-icon select:focus + i,
.input-with-icon textarea:focus + i {
  color: #6D0000 !important;
}

.btn-contact-submit {
  width: 100%;
  padding: 16px 28px;
  background: #6D0000 !important;
  color: #FFFFFF !important;
  border: 1.5px solid #6D0000 !important;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(109, 0, 0, 0.25) !important;
}

.btn-contact-submit:hover {
  background: #4D0000 !important;
  border-color: #4D0000 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(109, 0, 0, 0.35) !important;
}

.btn-contact-submit i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
  transform: translateX(4px) translateY(-2px);
}

/* Success Message Toast */
.contact-success-msg {
  background: #F0FFF4;
  border: 1.5px solid #38A169;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  animation: fadeIn 0.4s ease forwards;
}

.contact-success-msg .msg-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-success-msg i {
  color: #38A169;
  font-size: 22px;
  margin-top: 2px;
}

.contact-success-msg strong {
  color: #276749;
  font-size: 15px;
  display: block;
}

.contact-success-msg p {
  color: #2F855A;
  font-size: 13px;
  margin-top: 2px;
}

/* Responsive Media Queries for Contact Us */
@media (max-width: 991px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .contact-us-section {
    padding: 60px 0;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
  }

  .contact-social-connect {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Remove petals / floral background overlays from OUR EXCLUSIVE section only */
.pricing-section .pricing-floral-bg {
  display: none !important;
}

/* ==========================================================================
   NEW PROCESS SECTION - MIRROR COPY DESIGN
   ========================================================================== */
.process-mirror-section {
  background-color: #FAF4EE;
  background-image: radial-gradient(#E8DACB 0.85px, transparent 0.85px);
  background-size: 18px 18px;
  padding: 85px 0 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #EFE6DC;
  border-bottom: 1px solid #EFE6DC;
}

.process-bg-corner-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
}

.process-bg-corner-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: auto;
  opacity: 0.35;
  transform: scaleX(-1);
  pointer-events: none;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-tag {
  font-size: 13px;
  font-weight: 700;
  color: #4A0E17;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.process-title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
  color: #2B2B2B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 4px;
}

.process-subtitle {
  font-family: var(--font-script);
  font-size: 42px;
  font-weight: 400;
  color: #4A0E17;
  margin-bottom: 16px;
  line-height: 1.15;
}

.process-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  max-width: 160px;
}

.process-flourish-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #C89B3C);
}
.process-flourish-line.right {
  background: linear-gradient(to left, transparent, #C89B3C);
}

.process-timeline-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

/* ==========================================================================
   NEW PROCESS SECTION (#process) AUTOMATIC & ATTRACTIVE ANIMATION SYSTEM
   ========================================================================== */

/* Leaf Corner Floating Animations */
@keyframes processLeafFloatLeft {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-12px) rotate(2deg) scale(1.03); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

@keyframes processLeafFloatRight {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-14px) rotate(-3deg) scale(1.04); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

.process-bg-corner-left {
  animation: processLeafFloatLeft 7s ease-in-out infinite !important;
  transform-origin: top left;
}

.process-bg-corner-right {
  animation: processLeafFloatRight 8s ease-in-out infinite !important;
  transform-origin: top right;
}

.process-timeline-container {
  position: relative;
  padding: 10px 0 20px 0;
}

.process-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.process-step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 16px 12px;
  z-index: 2;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-step-item:hover {
  transform: translateY(-6px);
}

.process-step-item.active {
  transform: translateY(-12px) scale(1.03);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(94, 13, 22, 0.1), 0 4px 12px rgba(200, 155, 60, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.35);
}

.process-num {
  font-size: 20px;
  font-weight: 700;
  color: #8C6F56;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  transition: all 0.4s ease;
}

.process-step-item.active .process-num {
  color: #C89B3C;
  font-size: 23px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(200, 155, 60, 0.4);
  animation: processNumPulse 2s infinite ease-in-out;
}

@keyframes processNumPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); color: #5E0D16; }
}

.process-circle-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
}

/* Pulsing aura rings behind active circle */
.process-step-item.active .process-circle-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(200, 155, 60, 0.65);
  animation: activeRingPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.process-step-item.active .process-circle-wrap::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(94, 13, 22, 0.25);
  animation: activeRingPulse 2s 0.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes activeRingPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

.process-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5E0D16 0%, #35050A 100%);
  box-shadow: 0 8px 24px rgba(53, 5, 10, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1.5px solid rgba(200, 155, 60, 0.4);
}

.process-circle svg {
  transition: all 0.4s ease;
}

.process-step-item.active .process-circle {
  background: radial-gradient(circle at 35% 30%, #7A121E 0%, #45070D 100%);
  border-color: #E0BA68;
  box-shadow: 0 0 28px rgba(224, 186, 104, 0.55), 0 14px 30px rgba(53, 5, 10, 0.45);
  transform: scale(1.08);
}

.process-step-item.active .process-circle svg {
  color: #E0BA68;
  transform: scale(1.15);
  filter: drop-shadow(0 2px 6px rgba(200, 155, 60, 0.6));
}

/* Connecting Line between badges & Dynamic Beam */
.process-line-connector {
  position: absolute;
  top: 76px;
  left: calc(10% + 44px);
  right: calc(10% + 44px);
  height: 3px;
  background: rgba(211, 195, 179, 0.35);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-line-progress-beam {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #5E0D16 0%, #C89B3C 50%, #E0BA68 100%);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(200, 155, 60, 0.75), 0 0 4px rgba(94, 13, 22, 0.5);
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-line-progress-beam::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #E0BA68;
  border-radius: 50%;
  box-shadow: 0 0 14px #E0BA68, 0 0 24px rgba(200, 155, 60, 0.9);
  animation: beamHeadGlow 1.5s infinite alternate;
}

@keyframes beamHeadGlow {
  0% { transform: translateY(-50%) scale(0.9); box-shadow: 0 0 8px #E0BA68; }
  100% { transform: translateY(-50%) scale(1.3); box-shadow: 0 0 20px #E0BA68, 0 0 30px #C89B3C; }
}

.process-line-segment {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.process-line-segment:nth-child(2) { left: 0%; }
.process-line-segment:nth-child(3) { left: 25%; }
.process-line-segment:nth-child(4) { left: 50%; }
.process-line-segment:nth-child(5) { left: 75%; }
.process-line-segment:nth-child(6) { left: 100%; }

.process-line-dot {
  width: 10px;
  height: 10px;
  background-color: #D3C3B3;
  border: 2px solid #FAF4EB;
  border-radius: 50%;
  display: block;
  transition: all 0.4s ease;
}

.process-line-segment.active .process-line-dot {
  background-color: #C89B3C;
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(200, 155, 60, 0.9);
}

.process-step-title {
  font-size: 14px;
  font-weight: 800;
  color: #2B2B2B;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
}

.process-step-item.active .process-step-title {
  color: #5E0D16;
  letter-spacing: 1.2px;
}

.process-step-desc {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 200px;
  font-family: var(--font-sans);
  transition: all 0.4s ease;
}

.process-step-item.active .process-step-desc {
  color: #111111;
  font-weight: 500;
}

/* Autoplay Indicator Bar */
.process-autoplay-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.process-autoplay-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(140, 111, 86, 0.25);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-autoplay-dot.active {
  width: 32px;
  border-radius: 12px;
  background: linear-gradient(90deg, #5E0D16, #C89B3C);
  box-shadow: 0 0 10px rgba(200, 155, 60, 0.6);
}

.process-cta-wrap {
  text-align: center;
  margin-top: 52px;
}

.btn-process-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #590C13 0%, #35050A 100%);
  color: #FFFFFF !important;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(53, 5, 10, 0.35);
  border: 1px solid rgba(224, 186, 104, 0.35);
  transition: var(--transition);
}

.btn-process-pill:hover {
  background: linear-gradient(135deg, #6e1018 0%, #45070d 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(53, 5, 10, 0.45);
  color: #FFFFFF !important;
}

.process-btn-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #E0BA68;
  transition: var(--transition);
}

.btn-process-pill:hover .process-btn-arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .process-steps-row {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  .process-line-connector {
    display: none;
  }
  .process-step-item {
    width: 100%;
    max-width: 320px;
  }
  .process-title {
    font-size: 34px;
  }
  .process-subtitle {
    font-size: 34px;
  }
}

/* ==========================================================================
   ALTERNATING SECTION COLOR SYSTEM (WHITE & BURGUNDY)
   ========================================================================== */

/* 2. ABOUT SECTION (#about) -> WHITE */
.our-story-mirror-section {
  background: url('../../images/paper_texture_bg.jpg') center center / cover repeat, #FAF4EB !important;
  color: #2B2B2B !important;
}

/* 3. SERVICES SECTION (#services) -> BURGUNDY */
.services-section {
  background: url('../../images/maroon_bg.jpg') center center / cover repeat, #4A0E17 !important;
  color: #FFFFFF !important;
}

/* 4. PORTFOLIO SECTION (#portfolio) -> BURGUNDY */
.portfolio-section {
  background: url('../../images/maroon_bg.jpg') center center / cover repeat, #4A0E17 !important;
  color: #FFFFFF !important;
}
.portfolio-section .filter-pill-btn {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
}
.portfolio-section .filter-pill-btn.active,
.portfolio-section .filter-pill-btn:hover {
  background: #C59B63 !important;
  color: #2D080D !important;
  border-color: #C59B63 !important;
}

/* 5. HIGHLIGHT FILM SECTION (#films) -> MAROON TEXTURED BACKGROUND */
/*==============================
Instagram Reels Section
===============================*/

.instagram-reels-section{
    background: url('/images/maroon_bg.jpg') center center / cover repeat !important;
    padding:100px 0;
    overflow:hidden;
}

.section-heading .sub-title{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#ffffff;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-heading .sub-title span{
    width:45px;
    height:2px;
    background:#ffffff;
}

.section-heading h2{
    color:#ffffff;
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.section-heading h2 span{
    color:#ffffff;
}

.section-heading p{
    color:#ffffff;
    max-width:600px;
    margin:auto;
    font-size:17px;
}

/*==============================
Slider
===============================*/

.reels-wrapper{
    display:flex;
    align-items:center;
    gap:20px;
}

.reels-slider{
    display:flex;
    gap:20px;
    align-items:flex-end;
}

.reel-card{
    width:220px;
    height:420px;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    transition:.45s;
    cursor:pointer;
    background:#222;
}

.reel-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.reel-card:hover img{
    transform:scale(1.08);
}

.reel-card.small{
    height:360px;
}

.reel-card.active{
    width:260px;
    height:500px;
    transform:translateY(-15px);
}

.reel-card:hover{
    transform:translateY(-12px);
}

/*==============================
Overlay
===============================*/

.reel-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:20px;
    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.1));
}

.top-bar{
    display:flex;
    justify-content:space-between;
    color:#fff;
    font-size:22px;
}

.bottom-content{
    color:#fff;
}

.bottom-content h6{
    margin:0;
    font-size:16px;
    font-weight:600;
}

.bottom-content small{
    color:#ddd;
}

.bottom-content p{
    margin-top:12px;
    font-size:14px;
    line-height:1.6;
}

/*==============================
Profile
===============================*/

.profile{
    display:flex;
    align-items:center;
    gap:10px;
}

.profile img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,.4);
}

/*==============================
Icons
===============================*/

.side-icons{
    position:absolute;
    right:18px;
    bottom:90px;
    display:flex;
    flex-direction:column;
    gap:22px;
    color:#fff;
    text-align:center;
}

.side-icons i{
    font-size:24px;
}

.side-icons span{
    display:block;
    font-size:12px;
    margin-top:3px;
}

.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:75px;
    height:75px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:36px;
    z-index:10;
}

/*==============================
Buttons
===============================*/

.slider-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    color:#fff;
    transition:.35s;
}

.slider-btn:hover{
    background:#fff;
    color:#ffffff;
}

/*==============================
Dots
===============================*/

.slider-dots{
    display:flex;
    justify-content:center;
    gap:10px;
}

.slider-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#92727a;
}

.slider-dots span.active{
    width:40px;
    border-radius:20px;
    background:#fff;
}

/*==============================
Right Content
===============================*/

.content-box{
    padding-left:45px;
}

.content-box h3{
    color:#fff;
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
}

.content-box h3 span{
    display:block;
    color:#fff;
}

.content-box p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:35px;
}

/*==============================
Features
===============================*/

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.feature{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    transition:.35s;
}

.feature:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.15);
}

.feature i{
    font-size:28px;
    color:#fff;
}

.feature span{
    color:#fff;
    font-weight:600;
}

/*==============================
Button
===============================*/

.watch-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#fff;
    color:#4b1f27;
    padding:18px 35px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.watch-btn:hover{
    transform:translateY(-4px);
    color:#4b1f27;
    box-shadow:0 15px 35px rgba(0,0,0,.3);
}

/*==============================
Responsive
===============================*/

@media(max-width:991px){

.content-box{
    padding-left:0;
    margin-top:60px;
}

.reels-slider{
    overflow-x:auto;
    padding-bottom:20px;
}

.reels-slider::-webkit-scrollbar{
    display:none;
}

.reel-card,
.reel-card.active{
    flex:0 0 auto;
}

.section-heading h2{
    font-size:38px;
}

.content-box h3{
    font-size:32px;
}

}

@media(max-width:576px){

.reel-card{
    width:180px;
    height:340px;
}

.reel-card.active{
    width:200px;
    height:390px;
}

.section-heading h2{
    font-size:30px;
}

.features{
    grid-template-columns:1fr;
}

.watch-btn{
    width:100%;
    justify-content:center;
}

.slider-btn{
    display:none;
}

}
/* 6. PRICING SECTION (#pricing) -> WHITE */
.pricing-section {
  background: url('../../images/pricing_bg.jpg') center center / cover repeat, #FAF6F0 !important;
  color: #2B2B2B !important;
}

/* 7. REVIEWS SECTION (#reviews) -> MAROON TEXTURED BACKGROUND */
.reviews-section,
.happy-clients-mirror-section {
  background: url('../../images/maroon_bg.jpg') center center / cover repeat, #4A0E17 !important;
  color: #FFFFFF !important;
}
.happy-clients-mirror-section .happy-clients-main-title,
.happy-clients-mirror-section .unified-section-title,
.happy-clients-mirror-section .section-title-bold {
  color: #ffffff !important;
}
.happy-clients-mirror-section .happy-clients-script-title,
.happy-clients-mirror-section .unified-script-text {
  color: #ffffff !important;
}
.happy-clients-mirror-section .quote-text-serif {
  color: #FAF5F0 !important;
}
.happy-clients-mirror-section .quote-mark {
  color: #C59B63 !important;
}
.happy-clients-mirror-section .happy-stats-three-col {
  background: rgba(30, 5, 10, 0.45) !important;
  border: 1px solid rgba(197, 155, 99, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
.happy-clients-mirror-section .stat-number {
  color: #F7EBE8 !important;
}
.happy-clients-mirror-section .stat-label {
  color: #F2D7D0 !important;
}
.happy-clients-mirror-section .stat-icon-circle {
  background: rgba(30, 5, 10, 0.6) !important;
  border: 1px solid rgba(197, 155, 99, 0.5) !important;
  color: #C59B63 !important;
}

/* 8. CONTACT SECTION (#contact) -> BURGUNDY TEXTURED PAPER */
.contact-us-section {
  background: url('../../images/maroon_bg.jpg') center center / cover repeat, #4A0E17 !important;
  color: #FFFFFF !important;
}

/* Left Info Block: Clean Pure White Card with #6D0000 Content */
.contact-us-section .contact-info-card {
  background: #FFFFFF !important;
  border: 1.5px solid rgba(109, 0, 0, 0.15) !important;
  box-shadow: 0 25px 60px rgba(109, 0, 0, 0.08), 0 0 30px rgba(109, 0, 0, 0.04) !important;
  color: #6D0000 !important;
  border-radius: 20px !important;
}
.contact-us-section .contact-card-title {
  color: #6D0000 !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  letter-spacing: 3px !important;
}
.contact-us-section .contact-card-sub {
  color: #6D0000 !important;
  opacity: 0.85 !important;
}
.contact-us-section .info-label {
  color: #6D0000 !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
}
.contact-us-section .info-value,
.contact-us-section .info-value.info-link {
  color: #6D0000 !important;
}
.contact-us-section .info-icon-badge {
  background: #6D0000 !important;
  border: 1px solid #6D0000 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 16px rgba(109, 0, 0, 0.25) !important;
}
.contact-us-section .social-connect-label {
  color: #6D0000 !important;
}
.contact-us-section .contact-social-icons a {
  background: #FAF6F0 !important;
  border: 1px solid rgba(109, 0, 0, 0.25) !important;
  color: #6D0000 !important;
  transition: all 0.4s ease !important;
}
.contact-us-section .contact-social-icons a:hover {
  background: #6D0000 !important;
  border-color: #6D0000 !important;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.1) !important;
}
.contact-us-section .contact-quote-box {
  background: rgba(109, 0, 0, 0.05) !important;
  border-left: 3px solid #6D0000 !important;
  color: #6D0000 !important;
}
.contact-us-section .contact-quote-text {
  color: #6D0000 !important;
}
.contact-us-section .contact-quote-author {
  color: #6D0000 !important;
}

/* Right Form Card: High-Contrast Pure White Card */
.contact-us-section .contact-form-card {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 155, 99, 0.2) !important;
  color: #2B2B2B !important;
  border-radius: 20px !important;
}
.contact-us-section .form-header-title h3 {
  color: #722F37 !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 30px !important;
  letter-spacing: 3px !important;
}
.contact-us-section .form-header-title p {
  color: #555555 !important;
}
.contact-us-section .form-group label {
  color: #722F37 !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
}
.contact-us-section input,
.contact-us-section select,
.contact-us-section textarea {
  background: #FAF6F0 !important;
  border: 1.2px solid #E2D7C8 !important;
  color: #2B2B2B !important;
  border-radius: 10px !important;
  transition: all 0.35s ease !important;
}
.contact-us-section input:focus,
.contact-us-section select:focus,
.contact-us-section textarea:focus {
  border-color: #722F37 !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 14px rgba(114, 47, 55, 0.18) !important;
}
.contact-us-section input::placeholder,
.contact-us-section textarea::placeholder {
  color: #888888 !important;
}
.contact-us-section .input-with-icon i {
  color: #722F37 !important;
}
.contact-us-section .btn-contact-submit {
  background: linear-gradient(135deg, #722F37 0%, #4A0E17 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 16px 40px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  box-shadow: 0 10px 30px rgba(74, 14, 23, 0.4) !important;
  transition: all 0.4s ease !important;
}
.contact-us-section .btn-contact-submit:hover {
  background: linear-gradient(135deg, #5A2028 0%, #35080E 100%) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 16px 45px rgba(74, 14, 23, 0.6) !important;
}

/* NEW PROCESS SECTION (#process) -> WHITE PAPER TEXTURE */
.process-mirror-section {
  background: url('../../images/paper_texture_bg.jpg') center center / cover repeat, #FAF4EB !important;
  color: #2B2B2B !important;
}

/* 9. FOOTER SECTION (#footer) -> MAROON TEXTURED BACKGROUND */
.site-footer-mirror {
  background: url('../../images/maroon_bg.jpg') center center / cover repeat, #4A0E17 !important;
  color: #FFFFFF !important;
  border-top: 1px solid rgba(197, 155, 99, 0.3) !important;
}
.site-footer-mirror .logo-text-vbr-serif,
.site-footer-mirror .logo-subtext-tracked,
.site-footer-mirror .footer-col-title-serif {
  color: #C59B63 !important;
}
.site-footer-mirror .brand-bio-text,
.site-footer-mirror .footer-nav-chevron-list li a,
.site-footer-mirror .contact-circle-item,
.site-footer-mirror .contact-circle-item a,
.site-footer-mirror .contact-circle-item span,
.site-footer-mirror .footer-center-copyright-box p {
  color: #FAF5F0 !important;
}
.site-footer-mirror .camera-badge-circle,
.site-footer-mirror .brand-social-white-circles a,
.site-footer-mirror .contact-circle-icon,
.site-footer-mirror .monogram-dotted-circle,
.site-footer-mirror .award-badge-icon {
  background: rgba(30, 5, 10, 0.6) !important;
  border-color: rgba(197, 155, 99, 0.4) !important;
  color: #C59B63 !important;
}
.site-footer-mirror .chevron-gt,
.site-footer-mirror .heart-icon-sm {
  color: #C59B63 !important;
}
.site-footer-mirror .footer-bottom-floating-bar {
  background: rgba(30, 5, 10, 0.8) !important;
  border-color: rgba(197, 155, 99, 0.35) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}
.site-footer-mirror .award-text-group {
  color: #FAF5F0 !important;
}
.site-footer-mirror .brand-leaf-motif-row path {
  stroke: #C59B63 !important;
}
.site-footer-mirror .wreath-monogram-circle-inner svg {
  stroke: #C59B63 !important;
}
.site-footer-mirror .footer-corner-floral-left path,
.site-footer-mirror .footer-corner-floral-right path {
  stroke: #C59B63 !important;
  opacity: 0.35 !important;
}
.site-footer-mirror .footer-corner-floral-left circle,
.site-footer-mirror .footer-corner-floral-right circle {
  fill: #C59B63 !important;
  opacity: 0.35 !important;
}

/* ==========================================================================
   OMNICOM 3D WEBGL PORTFOLIO SECTION (.wp-block-omnicom-picture-full)
   ========================================================================== */
.portfolio-section.wp-block-omnicom-picture-full {
  position: relative !important;
  z-index: 2 !important;
  height: auto !important;
  min-height: auto !important;
  background: #0a0405 !important;
  color: #ffffff !important;
  padding: 70px 0 60px 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.portfolio-section.wp-block-omnicom-picture-full.mode-3d {
  height: 180vh !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  z-index: 2 !important;
}

.portfolio-section.mode-3d .portfolio-intro-overlay {
  padding-top: 25px !important;
  margin-bottom: 0 !important;
}

.portfolio-section.mode-3d .unified-section-header {
  margin-bottom: 12px !important;
}

.portfolio-section.mode-3d .unified-section-subtitle,
.portfolio-section.mode-3d .unified-heart-ornament {
  margin-bottom: 10px !important;
}

.portfolio-section.mode-3d .portfolio-controls-bar {
  margin-top: 10px !important;
  gap: 14px !important;
}

.portfolio-section.wp-block-omnicom-picture-full .scene {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  overflow: hidden !important;
  z-index: 2 !important;
}

.portfolio-section.wp-block-omnicom-picture-full .scene canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  z-index: 1 !important;
  pointer-events: auto !important;
}

/* FLOATING OVERLAY TITLE TEXTS */
.portfolio-section.wp-block-omnicom-picture-full .scene .texts {
  position: absolute !important;
  bottom: 35px !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
  text-align: center !important;
  pointer-events: none !important;
  width: 90% !important;
  max-width: 900px !important;
}

.portfolio-section.wp-block-omnicom-picture-full .scene .texts .text-holder {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 80px !important;
}

.portfolio-section.wp-block-omnicom-picture-full .scene .case-study-item {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  opacity: 0;
  visibility: hidden;
  width: 100% !important;
  pointer-events: none !important;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-section.wp-block-omnicom-picture-full .scene .case-study-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

.portfolio-section.wp-block-omnicom-picture-full .scene .case-study-image-hidden {
  display: none !important;
}

/* OMNICOM CALL TO ACTION BUTTON STYLES */
.portfolio-section.wp-block-omnicom-picture-full .wp-block-omnicom-call-to-action {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  background: rgba(114, 47, 55, 0.4) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 16px 36px !important;
  border-radius: 60px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.portfolio-section.wp-block-omnicom-picture-full .wp-block-omnicom-call-to-action:hover {
  background: rgba(114, 47, 55, 0.85) !important;
  border-color: rgba(255, 215, 0, 0.7) !important;
  transform: scale(1.05) translateY(-3px) !important;
  box-shadow: 0 25px 60px rgba(114, 47, 55, 0.6) !important;
}

.portfolio-section.wp-block-omnicom-picture-full .wp-block-omnicom-call-to-action .label {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 38px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
  transition: color 0.3s ease !important;
}

.portfolio-section.wp-block-omnicom-picture-full .wp-block-omnicom-call-to-action:hover .label {
  color: #FFD700 !important;
}

/* PORTFOLIO INTRO HEADER OVERLAY & CONTROL BAR */
.portfolio-intro-overlay {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 15 !important;
  pointer-events: auto !important;
}

.portfolio-intro-overlay .unified-section-header {
  pointer-events: auto !important;
  margin-bottom: 25px !important;
}

/* Portfolio Controls Bar & Category Filter Tabs */
.portfolio-controls-bar {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 24px !important;
  width: 100% !important;
  margin-top: 20px !important;
}

.portfolio-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
  z-index: 10 !important;
}

.portfolio-tab-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  color: #FFFFFF !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  padding: 11px 26px !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-transform: uppercase !important;
  outline: none !important;
  backdrop-filter: blur(8px) !important;
  position: relative !important;
  overflow: hidden !important;
}

.portfolio-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.portfolio-tab-btn:hover::before {
  left: 100%;
}

.portfolio-tab-btn:hover,
.portfolio-tab-btn.active {
  background: linear-gradient(135deg, #C59B63 0%, #A67B44 100%) !important;
  border-color: #C59B63 !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(197, 155, 99, 0.5) !important;
  transform: translateY(-3px) !important;
}

/* View Mode Switcher Button */
.view-mode-toggle {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1.5px solid rgba(197, 155, 99, 0.35) !important;
  border-radius: 50px !important;
  padding: 5px !important;
  gap: 6px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

.view-mode-btn {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 9px 20px !important;
  border-radius: 25px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.35s ease !important;
  outline: none !important;
}

.view-mode-btn.active,
.view-mode-btn:hover {
  background: #FFFFFF !important;
  color: #722F37 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

/* Portfolio Grid Container with Ambient Backglow */
#portfolio-grid-wrapper {
  position: relative;
}

#portfolio-grid-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(197, 155, 99, 0.12) 0%, rgba(114, 47, 55, 0.15) 50%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* Dynamic Asymmetric Grid Layout */
.vbr-portfolio-grid-layout {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  width: 100% !important;
  margin-top: 35px !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Special Asymmetric Featured Wide Cards */
.vbr-portfolio-card.card-featured-wide {
  grid-column: span 2 !important;
}

@media (max-width: 1024px) {
  .vbr-portfolio-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px !important;
  }
  .vbr-portfolio-card.card-featured-wide {
    grid-column: span 1 !important;
  }
}

@media (max-width: 640px) {
  .vbr-portfolio-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Luxury Portfolio Card Design */
.vbr-portfolio-card {
  position: relative !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
  cursor: pointer !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease !important;
  display: flex !important;
  flex-direction: column !important;
  will-change: transform, box-shadow;
}

/* Metallic Corner Filigrees (✦) */
.vbr-portfolio-card::before {
  content: '✦';
  position: absolute;
  top: 10px;
  right: 12px;
  color: #C59B63;
  font-size: 11px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
  z-index: 6;
  pointer-events: none;
}

.vbr-portfolio-card:hover::before {
  opacity: 0.9;
  transform: scale(1);
}

.vbr-portfolio-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: #C59B63 !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(197, 155, 99, 0.4) !important;
}

/* Card Image Wrapper */
.vbr-card-img-wrapper {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
}

.vbr-portfolio-card.card-featured-wide .vbr-card-img-wrapper {
  aspect-ratio: 16 / 9 !important;
}

.vbr-card-img-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease !important;
  filter: brightness(0.96) contrast(1.04);
}

.vbr-portfolio-card:hover .vbr-card-img-wrapper img {
  transform: scale(1.09) !important;
  filter: brightness(1.05) contrast(1.08);
}

/* Shimmer Diagonal Light Sweep */
.vbr-card-img-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    rgba(197, 155, 99, 0.3),
    transparent
  );
  transform: rotate(25deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 4;
}

.vbr-portfolio-card:hover .vbr-card-img-wrapper::after {
  left: 130%;
}

/* Overlay Vignette Gradient */
.vbr-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(15, 3, 5, 0.4) 40%,
    rgba(15, 3, 5, 0.92) 100%
  ) !important;
  opacity: 0.75 !important;
  transition: opacity 0.4s ease !important;
}

.vbr-portfolio-card:hover .vbr-card-overlay {
  opacity: 0.92 !important;
}

/* Category Badge (Top-Left) */
.vbr-card-badge {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  background: rgba(15, 3, 5, 0.75) !important;
  border: 1px solid rgba(197, 155, 99, 0.5) !important;
  color: #C59B63 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 9.5px !important;
  font-weight: 700 !important;
  letter-spacing: 2.2px !important;
  text-transform: uppercase !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(10px) !important;
  z-index: 5 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Heart Like Button (Top-Right) */
.vbr-card-like-btn {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(15, 3, 5, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(10px) !important;
  z-index: 5 !important;
  transition: all 0.3s ease !important;
}

.vbr-card-like-btn:hover,
.vbr-card-like-btn.liked {
  border-color: #6D0000 !important;
  color: #6D0000 !important;
  background: rgba(224, 93, 82, 0.15) !important;
  transform: scale(1.08) !important;
}

/* Floating Center Search/Expand Icon */
.vbr-card-expand-icon {
  position: absolute !important;
  top: 45% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0.6) !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(114, 47, 55, 0.9) !important;
  border: 2px solid #C59B63 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 155, 99, 0.5) !important;
  opacity: 0 !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  z-index: 5 !important;
}

.vbr-portfolio-card:hover .vbr-card-expand-icon {
  transform: translate(-50%, -50%) scale(1) !important;
  opacity: 1 !important;
}

/* Card Info Panel (Bottom) */
.vbr-card-info {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 22px 24px !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  transform: translateY(6px) !important;
  transition: transform 0.4s ease !important;
}

.vbr-portfolio-card:hover .vbr-card-info {
  transform: translateY(0) !important;
}

.vbr-card-category {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: #C59B63 !important;
}

.vbr-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 23px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  color: #FFFFFF !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.vbr-portfolio-card:hover .vbr-card-expand-icon {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.vbr-card-info {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 20px 22px !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  transform: translateY(4px) !important;
  transition: transform 0.4s ease !important;
}

.vbr-portfolio-card:hover .vbr-card-info {
  transform: translateY(0) !important;
}

.vbr-card-category {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 2.2px !important;
  text-transform: uppercase !important;
  color: #C59B63 !important;
}

.vbr-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  color: #FFFFFF !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

/* Lightbox Overlay */
.portfolio-lightbox-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(12, 3, 5, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.4s ease !important;
}

.portfolio-lightbox-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.lightbox-content-box {
  position: relative !important;
  max-width: 90vw !important;
  max-height: 88vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.lightbox-media-wrap {
  position: relative !important;
  max-width: 1000px !important;
  max-height: 72vh !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 2px solid #C59B63 !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(197, 155, 99, 0.35) !important;
}

.lightbox-media-wrap img {
  max-width: 100% !important;
  max-height: 72vh !important;
  object-fit: contain !important;
  display: block !important;
}

.lightbox-close-btn {
  position: absolute !important;
  top: -45px !important;
  right: 0 !important;
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  font-size: 36px !important;
  cursor: pointer !important;
  line-height: 1 !important;
  transition: color 0.3s ease !important;
}

.lightbox-close-btn:hover {
  color: #C59B63 !important;
}

.lightbox-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(114, 47, 55, 0.85) !important;
  border: 1.5px solid #C59B63 !important;
  color: #FFFFFF !important;
  font-size: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
}

.lightbox-nav-btn.prev-btn {
  left: -70px !important;
}

.lightbox-nav-btn.next-btn {
  right: -70px !important;
}

@media (max-width: 768px) {
  .lightbox-nav-btn.prev-btn { left: 10px !important; }
  .lightbox-nav-btn.next-btn { right: 10px !important; }
  .portfolio-section.wp-block-omnicom-picture-full .wp-block-omnicom-call-to-action .label {
    font-size: 26px !important;
  }
  .portfolio-section.wp-block-omnicom-picture-full .wp-block-omnicom-call-to-action {
    padding: 12px 24px !important;
  }
}

.lightbox-nav-btn:hover {
  background: #C59B63 !important;
  color: #FFFFFF !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.lightbox-info-bar {
  margin-top: 18px !important;
  text-align: center !important;
  color: #FFFFFF !important;
}

.lightbox-cat-tag {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  color: #C59B63 !important;
  text-transform: uppercase !important;
  display: block !important;
}

.lightbox-item-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  margin: 4px 0 !important;
}

.lightbox-counter-badge {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  letter-spacing: 1px !important;
}

/* ==========================================================================
   FORCE PURE WHITE CONTRAST FOR LOAD MORE BUTTON & ALL BURGUNDY GOLD PILLS
   ========================================================================== */
#vbr-load-more-btn,
.portfolio-load-more-wrap button,
.btn-burgundy-gold-pill {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

#vbr-load-more-btn *,
.portfolio-load-more-wrap button *,
.btn-burgundy-gold-pill *,
#vbr-load-more-btn span,
.btn-burgundy-gold-pill span {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  opacity: 1 !important;
}

#vbr-load-more-btn .btn-arrow-circle-icon,
.btn-burgundy-gold-pill .btn-arrow-circle-icon {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

#vbr-load-more-btn:hover .btn-arrow-circle-icon,
.btn-burgundy-gold-pill:hover .btn-arrow-circle-icon {
  background: rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   AUTOMATIC MOVEABLE ANIMATED GRID GALLERY SYSTEM
   ========================================================================== */
.vbr-portfolio-grid-layout {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  width: 100% !important;
  position: relative !important;
  z-index: 2 !important;
  transition: transform 0.6s ease !important;
}

/* Continuous Floating & Auto-Move Rhythmic Animations */
@keyframes autoMoveCardFloat {
  0% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-10px) scale(1.015);
  }
  50% {
    transform: translateY(4px) scale(0.995);
  }
  75% {
    transform: translateY(-6px) scale(1.01);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

@keyframes autoMovePulseGlow {
  0%, 100% {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 0px rgba(197, 155, 99, 0);
  }
  50% {
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 0 0 25px rgba(197, 155, 99, 0.35);
  }
}

.vbr-portfolio-grid-layout.auto-animated .vbr-portfolio-card {
  animation: autoMoveCardFloat 6.5s ease-in-out infinite, autoMovePulseGlow 5.5s ease-in-out infinite;
  will-change: transform, box-shadow;
}

/* Stagger animation timing across grid cards for organic movement */
.vbr-portfolio-grid-layout.auto-animated .vbr-portfolio-card:nth-child(4n+1) {
  animation-delay: 0s, 0s !important;
}
.vbr-portfolio-grid-layout.auto-animated .vbr-portfolio-card:nth-child(4n+2) {
  animation-delay: 1.4s, 0.9s !important;
}
.vbr-portfolio-grid-layout.auto-animated .vbr-portfolio-card:nth-child(4n+3) {
  animation-delay: 2.8s, 1.8s !important;
}
.vbr-portfolio-grid-layout.auto-animated .vbr-portfolio-card:nth-child(4n+4) {
  animation-delay: 4.2s, 2.7s !important;
}

/* Pause automatic movement when user hovers to interact */
.vbr-portfolio-grid-layout.auto-animated:hover .vbr-portfolio-card {
  animation-play-state: paused !important;
}

/* Category Filter Tabs Active & Hover Aesthetics */
.portfolio-tabs {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-bottom: 35px !important;
}

.portfolio-tab-btn {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.portfolio-tab-btn.active,
.portfolio-tab-btn:hover {
  background: linear-gradient(135deg, #C59B63 0%, #A47B45 100%) !important;
  color: #2D080D !important;
  border-color: #C59B63 !important;
  box-shadow: 0 6px 20px rgba(197, 155, 99, 0.4) !important;
  transform: translateY(-2px) scale(1.04) !important;
}

/* Luxury Golden Shuffle Button */
.portfolio-tab-btn.shuffle-btn {
  background: linear-gradient(135deg, #722F37 0%, #4A0E17 100%) !important;
  border: 1.5px solid #C59B63 !important;
  color: #FFD700 !important;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.4) !important;
  margin-left: 6px !important;
}

.portfolio-tab-btn.shuffle-btn i {
  color: #FFD700 !important;
  margin-right: 4px !important;
  transition: transform 0.6s ease;
}

.portfolio-tab-btn.shuffle-btn:hover {
  background: linear-gradient(135deg, #C59B63 0%, #A47B45 100%) !important;
  color: #2D080D !important;
  border-color: #FFD700 !important;
  box-shadow: 0 8px 25px rgba(197, 155, 99, 0.5) !important;
  transform: translateY(-3px) scale(1.06) !important;
}

.portfolio-tab-btn.shuffle-btn:hover i {
  color: #2D080D !important;
  transform: rotate(180deg);
}

/* CSS Fallback 3D Shuffle Keyframe Animations */
.vbr-portfolio-grid-layout.shuffling-out .vbr-portfolio-card {
  opacity: 0 !important;
  transform: scale(0.65) rotate(22deg) translateY(45px) !important;
  transition: all 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) !important;
}

.vbr-portfolio-grid-layout.shuffling-in .vbr-portfolio-card {
  animation: cardShuffleEntrance 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

@keyframes cardShuffleEntrance {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-20deg) translateY(-35px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateY(0px);
  }
}

/* ==========================================================================
   ADVANCED 3D SPATIAL DEPTH & HOLOGRAM ANIMATION SYSTEM
   ========================================================================== */
#portfolio-grid-wrapper {
  perspective: 1200px !important;
  transform-style: preserve-3d !important;
}

.vbr-portfolio-card {
  perspective: 1000px !important;
  transform-style: preserve-3d !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.4s ease !important;
}

.vbr-portfolio-card * {
  transform-style: preserve-3d !important;
}

.vbr-card-img-wrapper {
  transform: translateZ(10px) !important;
  transition: transform 0.5s ease !important;
}

.vbr-card-badge {
  transform: translateZ(35px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
  transition: transform 0.4s ease !important;
}

.vbr-card-like-btn {
  transform: translateZ(45px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
  transition: transform 0.4s ease, background 0.3s ease !important;
}

.vbr-card-expand-icon {
  transform: translateZ(45px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
  transition: transform 0.4s ease !important;
}

.vbr-card-info {
  transform: translateZ(30px) !important;
  transition: transform 0.4s ease !important;
}

.vbr-portfolio-card:hover .vbr-card-badge {
  transform: translateZ(50px) scale(1.06) !important;
}

.vbr-portfolio-card:hover .vbr-card-like-btn {
  transform: translateZ(60px) scale(1.1) !important;
}

.vbr-portfolio-card:hover .vbr-card-expand-icon {
  transform: translateZ(60px) scale(1.15) !important;
}

.vbr-portfolio-card:hover .vbr-card-info {
  transform: translateZ(40px) translateY(-4px) !important;
}

/* 3D Dynamic Glare Overlay */
.card-glare-overlay {
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  z-index: 10 !important;
  opacity: 0;
  transition: opacity 0.35s ease !important;
}

/* 3D Perspective Flip on Category Tabs & View Switcher */
.portfolio-tab-btn,
.view-mode-btn {
  perspective: 600px !important;
  transform-style: preserve-3d !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.portfolio-tab-btn:hover,
.view-mode-btn:hover {
  transform: perspective(600px) rotateX(10deg) translateZ(12px) scale(1.05) !important;
}

/* PORTFOLIO SECTION MAROON PAPER TEXTURE BACKGROUND */
#portfolio,
.portfolio-section,
.portfolio-section.wp-block-omnicom-picture-full,
.vbr-portfolio-section,
.portfolio-marquee-section {
  background-image: url('../../images/maroon_bg.jpg'), url('../images/maroon_bg.jpg'), url('/images/maroon_bg.jpg'), url('images/maroon_bg.jpg') !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: repeat !important;
  background-color: #4A0E17 !important;
}

/* ==========================================================================
   HIGHLIGHT FILM SECTION (#films) - USER DARK MAROON TEXTURED BACKGROUND
   ========================================================================== */
/*=========================================
INSTAGRAM REELS SECTION
=========================================*/

.instagram-reels-section{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:transparent;
}

.instagram-reels-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('../images/noise.png');
    opacity:.05;
    pointer-events:none;
}

.instagram-reels-section .container{
    position:relative;
    z-index:2;
}

/*==============================
Heading
==============================*/

.section-heading{
    text-align:center;
    margin-bottom:80px;
}

.section-heading .sub-title{

    display:inline-flex;
    align-items:center;
    gap:18px;

    color:#fff;
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;

}

.section-heading .sub-title span{

    width:70px;
    height:1px;
    background:rgba(255,255,255,.4);

}

.section-heading h2{

    font-size:72px;
    color:#fff;
    font-weight:800;
    line-height:1.1;
    margin-bottom:18px;

}

.section-heading h2 span{

    font-family:cursive;
    font-weight:400;

}

.section-heading p{

    color:rgba(255,255,255,.7);
    font-size:18px;

}

/*==============================
Desktop Layout
==============================*/

.instagram-reels-section .row{

    align-items:center;

}

@media(min-width:992px){

.instagram-reels-section .col-lg-8{

    flex:0 0 70%;
    max-width:70%;

}

.instagram-reels-section .col-lg-4{

    flex:0 0 30%;
    max-width:30%;

}

}

/*==============================
Slider
==============================*/

.reels-wrapper{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.reels-slider{

    display:flex;

    align-items:flex-end;

    justify-content:center;

    gap:25px;

    width:100%;

}

/*==============================
Cards
==============================*/

.reel-card{

    position:relative;

    width:210px;

    height:410px;

    border-radius:30px;

    overflow:hidden;

    cursor:pointer;

    flex-shrink:0;

    background:#111;

    transition:.45s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.reel-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.reel-card:hover img{

    transform:scale(1.08);

}

.reel-card:hover{

    transform:translateY(-15px);

}

/*==============================
Active Card
==============================*/

.reel-card.active{

    width:250px;

    height:500px;

    transform:translateY(-35px);

    z-index:5;

}

.reel-card.active:hover{

    transform:translateY(-45px);

}

.reel-card.small{

    height:360px;

}

/*==============================
Border Glow
==============================*/

.reel-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.12);

    pointer-events:none;

}

/*==============================
Play Button
==============================*/

.play-button{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:78px;

    height:78px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    z-index:10;

    transition:.35s;

}

.reel-card:hover .play-button{

    transform:translate(-50%,-50%) scale(1.1);

}




/*=========================================
OVERLAY
=========================================*/

.reel-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:20px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.55) 35%,
        rgba(0,0,0,.08) 65%,
        transparent 100%
    );
    z-index:2;
}

/*=========================================
TOP BAR
=========================================*/

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

.top-bar i{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.35s;
}

.top-bar i:hover{
    background:#fff;
    color:#4b1f27;
}

/*=========================================
PROFILE
=========================================*/

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

.profile img{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,.45);
}

.profile h6{
    color:#fff;
    margin:0;
    font-size:15px;
    font-weight:600;
}

.profile small{
    color:#ddd;
    font-size:12px;
}

/*=========================================
BOTTOM CONTENT
=========================================*/

.bottom-content{
    color:#fff;
}

.bottom-content p{
    margin-top:15px;
    margin-bottom:18px;
    color:#f4f4f4;
    line-height:1.7;
    font-size:14px;
}

/*=========================================
LIKE / COMMENT / SHARE
=========================================*/

.side-icons{
    position:absolute;
    right:18px;
    bottom:90px;
    display:flex;
    flex-direction:column;
    gap:22px;
    z-index:3;
}

.side-icons div{
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#fff;
}

.side-icons i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:.35s;
}

.side-icons div:hover i{
    background:#fff;
    color:#4b1f27;
    transform:scale(1.1);
}

.side-icons span{
    font-size:11px;
    margin-top:6px;
    color:#fff;
}

/*=========================================
BOTTOM GRADIENT
=========================================*/

.reel-card::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:160px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.95)
    );
    z-index:1;
}

/*=========================================
SLIDER BUTTONS
=========================================*/

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border-radius:50%;
    border:none;
    outline:none;
    cursor:pointer;
    background:rgba(255,255,255,.14);
    backdrop-filter:blur(14px);
    color:#fff;
    font-size:22px;
    transition:.35s;
    z-index:20;
}

.slider-btn:hover{
    background:#fff;
    color:#4b1f27;
}

.slider-btn.prev{
    left:-75px;
}

.slider-btn.next{
    right:-75px;
}

/*=========================================
PAGINATION
=========================================*/

.slider-dots{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.slider-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    transition:.35s;
}

.slider-dots span.active{
    width:45px;
    border-radius:30px;
    background:#fff;
}

/*=========================================
HOVER EFFECT
=========================================*/

.reel-card:hover .top-bar i{
    transform:translateY(-3px);
}

.reel-card:hover .profile img{
    transform:scale(1.08);
}

.reel-card:hover .bottom-content{
    transform:translateY(-5px);
    transition:.35s;
}

/*=========================================
SHADOW
=========================================*/

.reel-card{
    box-shadow:
    0 25px 60px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.reel-card.active{
    box-shadow:
    0 40px 90px rgba(0,0,0,.5),
    0 0 40px rgba(255,255,255,.08);
}
/* ==========================================================================
   COMPLETE MASTER RESPONSIVE MEDIA QUERIES & MOBILE DESIGN SYSTEM
   ========================================================================== */

/* Global Responsive Base Reset */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body.nav-open {
  overflow: hidden !important;
}

img, video, iframe, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* --- 1. LARGE TABLETS & SMALL DESKTOPS (<= 1200px) --- */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .nav-links {
    gap: 20px !important;
  }

  .nav-link {
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
  }

  .our-story-main-grid {
    gap: 32px !important;
  }

  .highlight-film-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }

  .pricing-cards-grid {
    gap: 24px !important;
  }
}

/* --- 2. TABLETS & SMALL LAPTOPS (<= 991px) --- */
@media (max-width: 991px) {
  /* Container Padding */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Header & Mobile Toggle */
  .site-header, #site-header {
    padding: 14px 0 !important;
  }

  .header-actions {
    gap: 12px !important;
  }

  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: rgba(114, 47, 55, 0.08) !important;
    border: 1px solid rgba(114, 47, 55, 0.2) !important;
    border-radius: 8px;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1010 !important;
    pointer-events: auto !important;
    transition: all 0.3s ease;
  }

  .mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #722F37 !important;
    margin: 3px 0;
    pointer-events: none !important;
    transition: all 0.35s ease-in-out;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Navigation Full-Screen Overlay Drawer */
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: url('../../images/paper_texture_bg.jpg') center center / cover repeat, #FAF4EB !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 50px 20px 30px 20px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
    box-shadow: inset 0 0 100px rgba(114, 47, 55, 0.15);
  }

  .nav-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-drawer-header {
    display: block !important;
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
  }

  .mobile-drawer-header .logo-brand-vbr {
    transform: scale(0.9);
  }

  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }

  .nav-link {
    font-size: 13px !important;
    letter-spacing: 2.5px !important;
    font-weight: 600 !important;
    color: #722F37 !important;
    padding: 4px 12px !important;
    transition: all 0.3s ease !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #6D0000 !important;
  }

  .mobile-drawer-cta {
    display: block !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    text-align: center !important;
    flex-shrink: 0 !important;
  }

  .mobile-drawer-cta .drawer-btn {
    padding: 11px 24px !important;
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
  }

  /* Hero Section */
  .hero-video-fullwidth-section {
    height: 65vh !important;
    min-height: 420px !important;
  }

  /* About Story Section Grid Stack */
  .our-story-main-grid {
    grid-template-columns: 1fr !important;
    gap: 45px !important;
    text-align: center !important;
  }

  .story-left-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .story-buttons-flex {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
  }

  .arch-and-rings-wrapper {
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  .experience-card-container {
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  /* Services Layout */
  .services-row-top,
  .services-row-bottom {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .service-card-item {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
  }

  .card-split-arch {
    flex-direction: column !important;
    text-align: center !important;
  }

  .card-split-text-side, .card-split-img-side {
    width: 100% !important;
  }

  .card-split-img-side {
    height: 220px !important;
  }

  /* Process Timeline Section */
  .process-steps-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
  }

  .process-line-connector {
    display: none !important;
  }

  .process-step-item {
    width: 100% !important;
    max-width: 400px !important;
  }

  /* Portfolio Grid 2-Column on Tablet */
  .vbr-portfolio-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .vbr-portfolio-card.card-featured-wide {
    grid-column: span 2 !important;
  }

  /* Highlight Film Section 1-Column & Tablet Styling */
  .highlight-film-section {
    padding: 70px 0 80px 0 !important;
  }

  .highlight-film-header {
    margin-bottom: 40px !important;
  }

  .highlight-film-title {
    font-size: 34px !important;
    letter-spacing: 4px !important;
  }

  .highlight-script-subtitle {
    font-size: 38px !important;
  }

  .highlight-film-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .highlight-video-col {
    width: 100% !important;
    max-width: 640px !important;
    margin: 0 auto !important;
  }

  .highlight-content-col {
    padding-left: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .highlight-narrative-text {
    font-size: 17px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }

  .highlight-narrative-text br {
    display: none !important;
  }

  .highlight-divider-line {
    width: 140px !important;
    margin: 0 auto 28px auto !important;
  }

  .highlight-cta-row {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 10px !important;
  }

  /* Pricing Cards Grid 1-Column */
  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
    max-width: 460px !important;
    margin: 0 auto !important;
    gap: 48px !important;
  }

  /* Reviews / Happy Clients Grid 1-Column */
  .happy-clients-main-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .happy-left-block {
    text-align: center !important;
  }

  .happy-cards-row {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
  }

  /* Contact Section Grid Stack */
  .contact-us-section .contact-info-card,
  .contact-us-section .contact-form-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto 24px auto !important;
  }
}

/* --- 3. MOBILE PHONES (<= 768px) --- */
@media (max-width: 768px) {
  /* Section Header Titles */
  .unified-section-title {
    font-size: clamp(26px, 7.5vw, 38px) !important;
  }

  .unified-section-subtitle {
    font-size: 13.5px !important;
  }

  /* Hero Section Mobile */
  .hero-video-fullwidth-section {
    height: 52vh !important;
    min-height: 360px !important;
  }

  /* Book Consultation button on mobile */
  .site-header .header-btn-primary {
    padding: 9px 14px !important;
    font-size: 9.5px !important;
    letter-spacing: 1px !important;
  }

  /* Portfolio Category Filter Tabs Mobile */
  .portfolio-tabs {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .portfolio-tab-btn {
    font-size: 10px !important;
    padding: 8px 16px !important;
    letter-spacing: 1.2px !important;
  }

  /* View Mode Switcher Mobile */
  .view-mode-toggle {
    margin-top: 14px !important;
    justify-content: center !important;
  }

  .view-mode-btn {
    padding: 8px 16px !important;
    font-size: 11px !important;
  }

  /* Highlight Film Section Mobile Adjustments */
  .highlight-film-section {
    padding: 60px 0 70px 0 !important;
  }

  .highlight-film-header {
    margin-bottom: 35px !important;
  }

  .highlight-badge-tag {
    font-size: 10px !important;
    letter-spacing: 3px !important;
  }

  .highlight-film-title {
    font-size: 26px !important;
    letter-spacing: 2.5px !important;
  }

  .highlight-script-subtitle {
    font-size: 32px !important;
  }

  .highlight-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 14px !important;
    width: 100% !important;
    max-width: 480px !important;
    margin-bottom: 28px !important;
  }

  .highlight-narrative-text {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
  }

  .play-icon-circle {
    width: 56px !important;
    height: 56px !important;
    font-size: 16px !important;
  }

  .feature-icon-box {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 8px !important;
  }

  .feature-title-label {
    font-size: 9.5px !important;
    letter-spacing: 1.2px !important;
  }

  .btn-highlight-reel-pill {
    padding: 12px 26px !important;
    font-size: 10px !important;
    letter-spacing: 1.8px !important;
    gap: 10px !important;
  }

  /* Modal Dialogs */
  .video-modal-content {
    max-width: 95% !important;
  }

  .lightbox-content-box {
    max-width: 95% !important;
  }

  .lightbox-nav-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 14px !important;
  }

  .lightbox-nav-btn.prev-btn { left: 5px !important; }
  .lightbox-nav-btn.next-btn { right: 5px !important; }
}

/* --- 4. SMALL MOBILE DEVICES (<= 576px) --- */
@media (max-width: 576px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Logo branding scale */
  .logo-brand-vbr {
    padding: 2px 8px !important;
  }

  .logo-title {
    font-size: 28px !important;
    letter-spacing: 2px !important;
  }

  .logo-subtext {
    font-size: 6.5px !important;
    letter-spacing: 3px !important;
  }

  /* Header action button scale on small screens */
  .header-actions {
    gap: 8px !important;
  }

  .site-header .header-btn-primary {
    padding: 8px 11px !important;
    font-size: 9px !important;
    letter-spacing: 0.8px !important;
    gap: 5px !important;
  }

  /* Portfolio Grid 1-Column on Small Mobile */
  .vbr-portfolio-grid-layout {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 18px !important;
  }

  .vbr-portfolio-card.card-featured-wide {
    grid-column: span 1 !important;
  }

  /* Marquee line-wise cards scale */
  .vbr-line-card {
    width: 250px !important;
    height: 180px !important;
    flex: 0 0 250px !important;
  }

  .vbr-line-card.card-wide {
    width: 320px !important;
    flex: 0 0 320px !important;
  }

  /* Remove tilt transform on small screens for better alignment */
  .happy-card-item {
    transform: none !important;
  }

  .btn-burgundy-gold-pill,
  .btn-services-pill,
  .btn-process-pill,
  .btn-highlight-reel-pill {
    padding: 12px 24px !important;
    font-size: 10.5px !important;
    letter-spacing: 1.5px !important;
  }

  .highlight-film-title {
    font-size: 22px !important;
    letter-spacing: 2px !important;
  }

  .highlight-script-subtitle {
    font-size: 28px !important;
  }

  .play-icon-circle {
    width: 48px !important;
    height: 48px !important;
    font-size: 14px !important;
  }

  /* Stats numbers on mobile */
  .happy-clients-mirror-section .stat-number {
    font-size: 28px !important;
  }

  .happy-clients-mirror-section .stat-label {
    font-size: 10px !important;
  }

  .contact-us-section .contact-form-card {
    padding: 24px 18px !important;
  }
}

/* --- 5. EXTRA SMALL MOBILE DEVICES (<= 380px) --- */
@media (max-width: 380px) {
  .logo-title {
    font-size: 24px !important;
    letter-spacing: 1.5px !important;
  }

  .logo-subtext {
    font-size: 6px !important;
    letter-spacing: 2px !important;
  }

  .header-btn-primary .btn-text {
    display: none !important;
  }

  .header-btn-primary {
    padding: 8px 10px !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    justify-content: center !important;
  }

  .header-btn-primary i {
    margin: 0 !important;
    font-size: 13px !important;
  }

  .story-buttons-flex a {
    width: 100% !important;
    justify-content: center !important;
  }

  .highlight-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 10px !important;
    width: 100% !important;
    margin: 0 auto 24px auto !important;
  }

  .highlight-feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .feature-icon-box {
    margin: 0 auto 8px auto !important;
  }

  .feature-title-label {
    text-align: center !important;
    font-size: 9px !important;
    letter-spacing: 1px !important;
  }

  .btn-highlight-reel-pill {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    padding: 11px 20px !important;
    margin: 0 auto !important;
  }

  .pricing-card-item {
    padding: 40px 20px 28px !important;
  }

  .portfolio-tab-btn {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   CONTACT / GET IN TOUCH SECTION - 100% ZERO OVERFLOW MOBILE SYSTEM
   ========================================================================== */

#contact,
.contact-us-section,
#contact .container,
.contact-us-section .container,
#contact .contact-main-grid,
.contact-us-section .contact-main-grid,
#contact .contact-left-info,
.contact-us-section .contact-left-info,
#contact .contact-right-form,
.contact-us-section .contact-right-form,
#contact .contact-info-card,
.contact-us-section .contact-info-card,
#contact .contact-form-card,
.contact-us-section .contact-form-card,
#contact .contact-form-body,
.contact-us-section .contact-form-body,
#contact .form-row-2col,
.contact-us-section .form-row-2col,
#contact .form-group,
.contact-us-section .form-group,
#contact .input-with-icon,
.contact-us-section .input-with-icon {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

#contact,
.contact-us-section {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

#contact .contact-info-card,
.contact-us-section .contact-info-card,
#contact .contact-form-card,
.contact-us-section .contact-form-card {
  overflow: hidden !important;
}

/* Force all input, select, and textarea fields to stay strictly within card boundaries */
#contact .input-with-icon input,
.contact-us-section .input-with-icon input,
#contact .input-with-icon select,
.contact-us-section .input-with-icon select,
#contact .input-with-icon textarea,
.contact-us-section .input-with-icon textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
  text-overflow: ellipsis !important;
  margin: 0 !important;
}

/* Custom SVG Dropdown Arrow for Select */
#contact .input-with-icon select,
.contact-us-section .input-with-icon select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23722F37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px 14px !important;
  padding-right: 38px !important;
  cursor: pointer !important;
}

#contact .input-with-icon.textarea-icon,
.contact-us-section .input-with-icon.textarea-icon {
  align-items: flex-start !important;
}

#contact .input-with-icon.textarea-icon i,
.contact-us-section .input-with-icon.textarea-icon i {
  top: 16px !important;
  transform: none !important;
}

#contact .input-with-icon input[type="date"],
.contact-us-section .input-with-icon input[type="date"] {
  min-height: 48px !important;
  color: #722F37 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

@media (min-width: 992px) {
  #contact .contact-main-grid,
  .contact-us-section .contact-main-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.15fr !important;
    gap: 36px !important;
    align-items: start !important;
    width: 100% !important;
  }

  #contact .form-row-2col,
  .contact-us-section .form-row-2col {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 991px) {
  #contact,
  .contact-us-section {
    padding: 50px 0 60px 0 !important;
  }

  #contact .contact-main-grid,
  .contact-us-section .contact-main-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  #contact .contact-left-info,
  .contact-us-section .contact-left-info,
  #contact .contact-right-form,
  .contact-us-section .contact-right-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  #contact .contact-info-card,
  .contact-us-section .contact-info-card,
  #contact .contact-form-card,
  .contact-us-section .contact-form-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 28px 20px !important;
    border-radius: 16px !important;
    margin: 0 0 24px 0 !important;
  }

  /* Force single column stack for form rows on tablet and mobile */
  #contact .form-row-2col,
  .contact-us-section .form-row-2col {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  #contact,
  .contact-us-section {
    padding: 40px 0 50px 0 !important;
  }

  #contact .container,
  .contact-us-section .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #contact .contact-info-card,
  .contact-us-section .contact-info-card,
  #contact .contact-form-card,
  .contact-us-section .contact-form-card {
    padding: 22px 16px !important;
    border-radius: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #contact .contact-card-title,
  .contact-us-section .contact-card-title {
    font-size: clamp(18px, 5vw, 24px) !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 8px !important;
  }

  #contact .contact-card-sub,
  .contact-us-section .contact-card-sub {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  #contact .form-header-title,
  .contact-us-section .form-header-title {
    margin-bottom: 20px !important;
    text-align: center !important;
  }

  #contact .form-header-title h3,
  .contact-us-section .form-header-title h3 {
    font-size: clamp(19px, 5.2vw, 24px) !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 6px !important;
  }

  #contact .form-header-title p,
  .contact-us-section .form-header-title p {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }

  #contact .form-row-2col,
  .contact-us-section .form-row-2col {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  #contact .form-group,
  .contact-us-section .form-group {
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  #contact .form-group label,
  .contact-us-section .form-group label {
    font-size: 10px !important;
    letter-spacing: 1px !important;
    margin-bottom: 5px !important;
  }

  #contact .input-with-icon,
  .contact-us-section .input-with-icon {
    width: 100% !important;
  }

  #contact .input-with-icon input,
  .contact-us-section .input-with-icon input,
  #contact .input-with-icon select,
  .contact-us-section .input-with-icon select,
  #contact .input-with-icon textarea,
  .contact-us-section .input-with-icon textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    font-size: 16px !important; /* Prevents iOS Safari auto-zoom on input focus */
    padding: 12px 12px 12px 40px !important;
    box-sizing: border-box !important;
    border-radius: 8px !important;
  }

  #contact .input-with-icon select,
  .contact-us-section .input-with-icon select {
    padding-right: 34px !important;
  }

  #contact .input-with-icon i,
  .contact-us-section .input-with-icon i {
    left: 14px !important;
    font-size: 14px !important;
  }

  #contact .btn-contact-submit,
  .contact-us-section .btn-contact-submit {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 11.5px !important;
    letter-spacing: 1.5px !important;
    border-radius: 50px !important;
    min-height: 46px !important;
    box-sizing: border-box !important;
  }

  #contact .contact-success-msg,
  .contact-us-section .contact-success-msg {
    padding: 12px 14px !important;
    font-size: 12.5px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  #contact .container,
  .contact-us-section .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  #contact .contact-info-card,
  .contact-us-section .contact-info-card,
  #contact .contact-form-card,
  .contact-us-section .contact-form-card {
    padding: 18px 12px !important;
    border-radius: 12px !important;
  }

  #contact .form-header-title h3,
  .contact-us-section .form-header-title h3 {
    font-size: 18px !important;
    letter-spacing: 1px !important;
  }

  #contact .form-header-title p,
  .contact-us-section .form-header-title p {
    font-size: 11.5px !important;
  }

  #contact .input-with-icon input,
  .contact-us-section .input-with-icon input,
  #contact .input-with-icon select,
  .contact-us-section .input-with-icon select,
  #contact .input-with-icon textarea,
  .contact-us-section .input-with-icon textarea {
    padding: 11px 10px 11px 36px !important;
    font-size: 15px !important;
  }

  #contact .input-with-icon i,
  .contact-us-section .input-with-icon i {
    left: 10px !important;
    font-size: 13px !important;
  }
}

/* ==========================================================================
   HIGHLIGHT FILM SECTION - 100% ZERO OVERFLOW MOBILE SYSTEM
   ========================================================================== */

#films,
.highlight-film-section,
#films .container,
.highlight-film-section .container,
#films .highlight-film-grid,
.highlight-film-section .highlight-film-grid,
#films .highlight-video-col,
.highlight-film-section .highlight-video-col,
#films .highlight-video-card,
.highlight-film-section .highlight-video-card,
#films .highlight-video-poster-wrap,
.highlight-film-section .highlight-video-poster-wrap,
#films .highlight-content-col,
.highlight-film-section .highlight-content-col,
#films .highlight-narrative-text,
.highlight-film-section .highlight-narrative-text,
#films .highlight-features-grid,
.highlight-film-section .highlight-features-grid {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

#films,
.highlight-film-section {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

#films .highlight-video-card,
.highlight-film-section .highlight-video-card {
  overflow: hidden !important;
}

@media (max-width: 991px) {
  #films,
  .highlight-film-section {
    padding: 50px 0 60px 0 !important;
  }

  #films .highlight-film-header,
  .highlight-film-section .highlight-film-header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 30px auto !important;
    text-align: center !important;
  }

  #films .highlight-film-title,
  .highlight-film-section .highlight-film-title {
    font-size: clamp(22px, 6vw, 34px) !important;
    letter-spacing: 2px !important;
  }

  #films .highlight-script-subtitle,
  .highlight-film-section .highlight-script-subtitle {
    font-size: clamp(28px, 8vw, 38px) !important;
  }

  #films .highlight-film-grid,
  .highlight-film-section .highlight-film-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  #films .highlight-video-col,
  .highlight-film-section .highlight-video-col {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  #films .highlight-video-card,
  .highlight-film-section .highlight-video-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 6px !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  #films .highlight-video-poster-wrap,
  .highlight-film-section .highlight-video-poster-wrap {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 8px !important;
  }

  #films .highlight-content-col,
  .highlight-film-section .highlight-content-col {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  #films .highlight-narrative-text,
  .highlight-film-section .highlight-narrative-text {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(15px, 4.5vw, 17px) !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  #films .highlight-narrative-text br,
  .highlight-film-section .highlight-narrative-text br {
    display: none !important;
  }

  #films .highlight-divider-line,
  .highlight-film-section .highlight-divider-line {
    width: 120px !important;
    margin: 0 auto 24px auto !important;
  }

  #films .highlight-features-grid,
  .highlight-film-section .highlight-features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 14px !important;
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto 28px auto !important;
  }

  #films .highlight-cta-row,
  .highlight-film-section .highlight-cta-row {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 10px !important;
  }

  #films .btn-highlight-reel-pill,
  .highlight-film-section .btn-highlight-reel-pill {
    max-width: 100% !important;
    padding: 12px 24px !important;
    font-size: 10.5px !important;
    letter-spacing: 1.5px !important;
  }
}

@media (max-width: 480px) {
  #films,
  .highlight-film-section {
    padding: 40px 0 50px 0 !important;
  }

  #films .container,
  .highlight-film-section .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  #films .highlight-video-card,
  .highlight-film-section .highlight-video-card {
    padding: 4px !important;
    border-radius: 10px !important;
  }

  #films .highlight-features-grid,
  .highlight-film-section .highlight-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 10px !important;
  }
}

/* ==========================================================================
   SERVICES SECTION - 3D CAMERA CENTER & LENS FLASH CARDS SHOWCASE
   ========================================================================== */
.services-camera-3d-section {
  position: relative;
  background: url('../../images/maroon_bg.jpg') center center / cover repeat, radial-gradient(circle at center, #3A0B11 0%, #200408 70%, #120104 100%) !important;
  color: #FFFFFF !important;
  padding: 90px 0 110px;
  overflow: hidden;
}

/* Futuristic 3D Grid Floor Effect */
.services-3d-grid-floor {
  position: absolute;
  bottom: -40px;
  left: -50%;
  width: 200%;
  height: 550px;
  background-image: 
    linear-gradient(to right, rgba(224, 93, 82, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(224, 93, 82, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotateX(72deg);
  transform-origin: center top;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.services-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224, 93, 82, 0.22) 0%, rgba(0, 210, 255, 0.08) 40%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

/* Stage Layout Wrapper */
.services-camera-stage-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto 20px auto;
  z-index: 5;
  perspective: 1400px;
}

/* CENTER CAMERA WRAPPER */
.services-central-camera-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 10;
}

.camera-3d-body-box {
  position: relative;
  width: 310px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
}

.camera-center-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 25px rgba(224, 93, 82, 0.4));
}

.camera-floor-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.95) 0%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
}

/* LENS TARGET RING & NEON FOCUS ACCENTS */
.camera-lens-target-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 12;
}

.focus-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.focus-circle.outer-ring {
  width: 140px;
  height: 140px;
  border: 1.5px dashed rgba(0, 229, 255, 0.75);
  animation: rotateLensRing 14s linear infinite;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.focus-circle.inner-ring {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(224, 93, 82, 0.85);
  animation: pulseLensRing 2.5s ease-in-out infinite alternate;
  box-shadow: 0 0 20px rgba(224, 93, 82, 0.5);
}

@keyframes rotateLensRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulseLensRing {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.focus-crosshair {
  position: absolute;
  background-color: #00E5FF;
  box-shadow: 0 0 8px #00E5FF;
}

.ch-top { top: 0; left: 50%; width: 2px; height: 12px; transform: translateX(-50%); }
.ch-bottom { bottom: 0; left: 50%; width: 2px; height: 12px; transform: translateX(-50%); }
.ch-left { left: 0; top: 50%; width: 12px; height: 2px; transform: translateY(-50%); }
.ch-right { right: 0; top: 50%; width: 12px; height: 2px; transform: translateY(-50%); }

.lens-aperture-text {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #00E5FF;
  white-space: nowrap;
  opacity: 0.85;
}

/* LENS FLASH OPTICAL FLARE & RAYS */
.camera-flash-flare {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 25%, rgba(0, 229, 255, 0.7) 50%, rgba(224, 93, 82, 0.4) 75%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  box-shadow: 0 0 100px 50px rgba(255, 255, 255, 0.9);
}

.camera-light-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 750px;
  height: 450px;
  pointer-events: none;
  z-index: 14;
  opacity: 0;
}

.camera-light-rays .ray {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(0,229,255,0.8), transparent);
  transform-origin: left center;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.8);
}

.ray-1 { width: 380px; transform: rotate(-25deg); }
.ray-2 { width: 420px; transform: rotate(-8deg); }
.ray-3 { width: 390px; transform: rotate(15deg); }
.ray-4 { width: 380px; transform: rotate(155deg); }
.ray-5 { width: 420px; transform: rotate(172deg); }
.ray-6 { width: 390px; transform: rotate(198deg); }

/* CAMERA SHUTTER BUTTON */
.camera-shutter-btn {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(224, 93, 82, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 16;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(224, 93, 82, 0.6);
  transition: all 0.3s ease;
}

.camera-shutter-btn:hover {
  background: #FFFFFF;
  color: #6D0000;
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.8);
}

/* 3D FLOATING CARDS ARCS (LEFT AND RIGHT) */
.services-cards-arc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 8;
  width: 100%;
}

.arc-left {
  align-items: flex-end;
}

.arc-right {
  align-items: flex-start;
}

/* INDIVIDUAL 3D CARD ITEM */
.services-3d-card-item {
  width: 100%;
  max-width: 320px;
  background: rgba(35, 10, 16, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 93, 82, 0.4);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(224, 93, 82, 0.12);
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* CARD INNER CONTENTS */
.card-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-num-badge {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: #6D0000;
}

.card-category-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

.card-category-tag.featured-badge {
  color: #00E5FF;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.4);
}

.card-thumb-frame {
  position: relative;
  width: 100%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.card-thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.live-rec-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: monospace;
  font-size: 8.5px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.7);
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 0, 0, 0.5);
}

.live-rec-badge .red-dot {
  width: 6px;
  height: 6px;
  background: #FF2E2E;
  border-radius: 50%;
  animation: blinkRecDot 1.2s infinite;
}

@keyframes blinkRecDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.card-3d-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.2;
}

.card-3d-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.card-footer-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.card-btn-link {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #6D0000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease;
}

/* 3D PERSPECTIVE TILTS ON DESKTOP */
@media (min-width: 1101px) {
  .card-left-1 { transform: perspective(1000px) rotateY(14deg) rotateX(4deg) translateZ(10px); }
  .card-left-2 { transform: perspective(1000px) rotateY(20deg) rotateX(0deg) translateZ(30px); }
  .card-left-3 { transform: perspective(1000px) rotateY(14deg) rotateX(-4deg) translateZ(10px); }

  .card-right-1 { transform: perspective(1000px) rotateY(-14deg) rotateX(4deg) translateZ(10px); }
  .card-right-2 { transform: perspective(1000px) rotateY(-20deg) rotateX(0deg) translateZ(30px); }
  .card-right-3 { transform: perspective(1000px) rotateY(-14deg) rotateX(-4deg) translateZ(10px); }

  .services-3d-card-item:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateZ(55px) scale(1.05) !important;
    border-color: #00E5FF !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.6) !important;
    background: rgba(45, 12, 20, 0.96) !important;
    z-index: 30 !important;
  }

  .services-3d-card-item:hover .card-thumb-frame img {
    transform: scale(1.08);
  }

  .services-3d-card-item:hover .card-btn-link {
    color: #00E5FF;
    transform: translateX(4px);
  }
}

/* TABLET & MOBILE RESPONSIVE LAYOUT */
@media (max-width: 1100px) {
  .services-camera-stage-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .services-central-camera-wrap {
    order: -1;
    width: 300px;
    height: 300px;
  }

  .camera-3d-body-box {
    width: 260px;
    height: 230px;
  }

  .services-cards-arc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
  }

  .arc-left, .arc-right {
    align-items: stretch;
  }

  .services-3d-card-item {
    max-width: 100%;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .services-cards-arc {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .services-central-camera-wrap {
    width: 250px;
    height: 250px;
  }

  .camera-3d-body-box {
    width: 210px;
    height: 180px;
  }
}

/* ==========================================================================
   OUR SIGNATURE SERVICES SECTION - PIXEL PERFECT REDESIGN (MATCHING IMAGE 2)
   ========================================================================== */

/* Section Container & Burgundy/Maroon Background */
#services.signature-services-section,
.signature-services-section {
  position: relative !important;
  background: url('../../images/maroon_bg.jpg') center center / cover repeat, #4A0E17 !important;
  padding: 90px 0 100px !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
}

/* Watermark Floral Overlay */
.services-bg-floral-top-right {
  position: absolute !important;
  top: -40px !important;
  right: -40px !important;
  pointer-events: none !important;
  z-index: 1 !important;
  opacity: 0.8 !important;
}

/* Section Header */
.services-redesigned-header {
  text-align: center !important;
  margin-bottom: 50px !important;
}

.services-redesigned-header .tag-flourish-gold {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
  color: #C59B63 !important;
}

.services-redesigned-header .tag-flourish-gold .tag-text {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 4px !important;
  color: #C59B63 !important;
  text-transform: uppercase !important;
}

.services-redesigned-header .tag-flourish-gold .diamond-sparkle {
  font-size: 10px !important;
  color: #C59B63 !important;
}

.services-redesigned-header .services-title-lux {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif) !important;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem) !important;
  font-weight: 500 !important;
  color: #1E1614 !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
  text-shadow: none !important;
}

.services-redesigned-header .services-title-lux .gold-italic {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif) !important;
  font-style: italic !important;
  color: #C59B63 !important;
  background: linear-gradient(135deg, #D4AF37 0%, #C59B63 50%, #A87D43 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.services-redesigned-header .flourish-divider-lux {
  display: flex !important;
  justify-content: center !important;
  margin: 10px 0 16px !important;
}

.services-redesigned-header .services-subtitle-lux {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 0.95rem !important;
  color: #666666 !important;
  max-width: 620px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

/* Grid Layout */
.signature-services-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  max-width: 1240px !important;
  margin: 0 auto 40px !important;
}

.signature-services-grid .services-row-top,
.signature-services-grid .services-row-bottom {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

/* Base Card Styling */
.sig-service-card {
  position: relative !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* Light Card Style (Cards 01 & 03) */
.sig-service-card.card-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 250, 246, 0.9) 100%) !important;
  border: 1px solid rgba(232, 218, 202, 0.6) !important;
  box-shadow: 0 15px 35px rgba(197, 155, 99, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  padding: 30px 28px 28px 28px !important;
  border-radius: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.sig-service-card.card-light:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 50px rgba(197, 155, 99, 0.1) !important;
  border-color: #C59B63 !important;
}

.sig-service-card .card-header-v2 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 25px !important;
}

.sig-service-card .card-icon-v2 {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(250, 245, 238, 0.8) 100%) !important;
  border: 1px solid rgba(230, 213, 195, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #C59B63 !important;
  box-shadow: 0 4px 15px rgba(197, 155, 99, 0.04) !important;
}

.sig-service-card .card-icon-v2 svg {
  width: 28px !important;
  height: 28px !important;
  stroke: #C59B63 !important;
  stroke-width: 1.4px !important;
}

.sig-service-card .card-num-ghost-v2 {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif) !important;
  font-size: 52px !important;
  font-weight: 300 !important;
  color: rgba(197, 155, 99, 0.15) !important;
  line-height: 1 !important;
}

.sig-service-card .card-body-v2 {
  flex: 1 !important;
}

.sig-service-card .card-title-v2 {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif) !important;
  font-size: 1.8rem !important;
  font-weight: 500 !important;
  color: #1E1614 !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
}

.sig-service-card .card-desc-v2 {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 0.82rem !important;
  color: #666666 !important;
  line-height: 1.55 !important;
  margin-bottom: 0 !important;
}

.sig-service-card .card-footer-v2 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 30px !important;
  width: 100% !important;
}

.sig-service-card .explore-link-v2 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #C59B63 !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.sig-service-card .explore-link-v2:hover {
  color: #722F37 !important;
}

.sig-service-card .explore-link-v2 .explore-arrow {
  transition: transform 0.3s ease !important;
  display: inline-block !important;
}

.sig-service-card .explore-link-v2:hover .explore-arrow {
  transform: translateX(4px) !important;
}

/* Card 02: Featured Light Hero Card */
#services .sig-service-card.card-featured-v2 {
  background: #FFFFFF !important;
  border: 1px solid rgba(230, 213, 195, 0.7) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  padding: 0 !important;
}

#services .sig-service-card.card-featured-v2:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 45px rgba(70, 50, 30, 0.08) !important;
  border-color: #C59B63 !important;
}

#services .sig-service-card .card-featured-inner {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  height: 100% !important;
  min-height: 280px !important;
}

#services .sig-service-card .card-featured-left {
  padding: 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  z-index: 2 !important;
}

#services .sig-service-card .featured-badge-v2 {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 2px !important;
  color: #C59B63 !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}

#services .sig-service-card .card-title-featured {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif) !important;
  font-size: 1.7rem !important;
  font-weight: 600 !important;
  color: #1E1614 !important;
  line-height: 1.2 !important;
  margin-bottom: 10px !important;
}

#services .sig-service-card .card-desc-featured {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 0.83rem !important;
  color: #666666 !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}

#services .sig-service-card .card-featured-right {
  position: relative !important;
  height: 100% !important;
  min-height: 280px !important;
  overflow: hidden !important;
}

#services .sig-service-card .featured-img-arched {
  position: absolute !important;
  top: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  left: 0 !important;
  border-radius: 180px 0 0 180px !important;
  border: 1.5px solid #C59B63 !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.sig-service-card .featured-img-arched img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
}

/* Horizontal Split Layout Cards (Row 2 - Cards 04, 05, 06) */
.sig-service-card.card-horizontal {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  padding: 0 !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(230, 213, 195, 0.7) !important;
}

.sig-service-card.card-horizontal .card-horizontal-left {
  padding: 24px 20px 20px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.sig-service-card.card-horizontal .card-horizontal-right {
  position: relative !important;
  height: 100% !important;
  min-height: 180px !important;
  overflow: hidden !important;
}

.sig-service-card.card-horizontal .curved-img-mask {
  position: absolute !important;
  top: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  left: 0 !important;
  border: 1.5px solid #C59B63 !important;
  overflow: hidden !important;
}

.sig-service-card.card-horizontal .curved-img-mask img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.6s ease !important;
}

.sig-service-card.card-horizontal:hover .curved-img-mask img {
  transform: scale(1.06) !important;
}

.sig-service-card.card-horizontal .arch-mask-left {
  border-radius: 160px 0 0 160px !important;
}

.sig-service-card.card-horizontal .arch-mask-center {
  border-radius: 200px 0 0 100px !important;
}

.sig-service-card.card-horizontal .arch-mask-album {
  border-radius: 160px 0 0 160px !important;
}

/* Testimonial Quote Pill (Floating Bar) */
.testimonial-quote-pill-wrap {
  display: flex !important;
  justify-content: center !important;
  margin-top: 35px !important;
}

.testimonial-quote-pill {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  background: #FFFFFF !important;
  padding: 10px 28px 10px 14px !important;
  border-radius: 50px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(230, 213, 195, 0.8) !important;
  max-width: 640px !important;
  width: 100% !important;
}

.testimonial-avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 2px solid #C59B63 !important;
  flex-shrink: 0 !important;
}

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

.testimonial-quote-middle {
  flex: 1 !important;
}

.testimonial-quote-text {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 0.82rem !important;
  color: #4A4A4A !important;
  margin: 0 !important;
  font-style: italic !important;
  line-height: 1.45 !important;
}

.three-dots-gold {
  display: flex !important;
  gap: 4px !important;
  align-items: center !important;
}

.three-dots-gold span {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: #C59B63 !important;
  opacity: 0.6 !important;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .signature-services-grid .services-row-top,
  .signature-services-grid .services-row-bottom {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .signature-services-grid .services-row-top,
  .signature-services-grid .services-row-bottom {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .sig-service-card .card-featured-inner {
    grid-template-columns: 1fr !important;
  }

  .sig-service-card .featured-img-arched img {
    border-radius: 0 !important;
    height: 220px !important;
  }

  .sig-service-card.card-horizontal {
    grid-template-columns: 1fr !important;
  }

  .sig-service-card.card-horizontal .arch-mask-left img,
  .sig-service-card.card-horizontal .arch-mask-center img,
  .sig-service-card.card-horizontal .arch-mask-album img {
    border-radius: 0 !important;
  }

  .testimonial-quote-pill {
    flex-direction: column !important;
    border-radius: 24px !important;
    padding: 16px !important;
    text-align: center !important;
  }
}

/* Gold circle button in footer */
.explore-circle-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(197, 155, 99, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #C59B63 !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}

.sig-service-card:hover .explore-circle-btn {
  background: #C59B63 !important;
  color: #FFFFFF !important;
  border-color: #C59B63 !important;
  transform: scale(1.05) !important;
}

/* Hide Testimonial Quote Pill (Floating Bar) */
.testimonial-quote-pill-wrap {
  display: none !important;
}

/* Hide progress bar wraps from being visible */
.card-progress-bar-wrap {
  display: none !important;
}

/* CUSTOM APTOS FONT OVERRIDES FOR PARAGRAPHS AND SUBHEADINGS */
h3, 
h4, 
h5, 
h6 {
  font-family: "Aptos", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  color: #FFFFFF !important;
  text-transform: none !important;
}
p {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  color: #FFFFFF !important;
  text-transform: none !important;
}

/* Ensure inline children of paragraphs and subheadings inherit the Aptos font style and override Lora */
h3 :not(.fa):not(.fas):not(.far):not(.fal):not(.fad):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i):not(input):not(textarea):not(select):not(option):not(.unified-script-text):not(.pricing-script-text):not(.portfolio-title-script):not(.script-text-copper):not(.script-text-gold):not(.script-text):not(.google-script-excellent),
h4 :not(.fa):not(.fas):not(.far):not(.fal):not(.fad):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i):not(input):not(textarea):not(select):not(option):not(.unified-script-text):not(.pricing-script-text):not(.portfolio-title-script):not(.script-text-copper):not(.script-text-gold):not(.script-text):not(.google-script-excellent),
h5 :not(.fa):not(.fas):not(.far):not(.fal):not(.fad):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i):not(input):not(textarea):not(select):not(option):not(.unified-script-text):not(.pricing-script-text):not(.portfolio-title-script):not(.script-text-copper):not(.script-text-gold):not(.script-text):not(.google-script-excellent),
h6 :not(.fa):not(.fas):not(.far):not(.fal):not(.fad):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i):not(input):not(textarea):not(select):not(option):not(.unified-script-text):not(.pricing-script-text):not(.portfolio-title-script):not(.script-text-copper):not(.script-text-gold):not(.script-text):not(.google-script-excellent) {
  font-family: "Aptos", sans-serif !important;
}
p :not(.fa):not(.fas):not(.far):not(.fal):not(.fad):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i):not(input):not(textarea):not(select):not(option):not(.unified-script-text):not(.pricing-script-text):not(.portfolio-title-script):not(.script-text-copper):not(.script-text-gold):not(.script-text):not(.google-script-excellent) {
  font-family: 'Lora', Georgia, serif !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

/* Retain original readable text colors on light background sections */
.our-story-mirror-section p,
.our-story-mirror-section h3,
.our-story-mirror-section h4,
.our-story-mirror-section h5,
.our-story-mirror-section h6,
.signature-services-section p,
.signature-services-section h3,
.signature-services-section h4,
.signature-services-section h5,
.signature-services-section h6,
.services-section p,
.services-section h3,
.services-section h4,
.services-section h5,
.services-section h6,
.pricing-section p:not(.pricing-interactive-card *):not(.pricing-promo-card *),
.pricing-section h3:not(.pricing-interactive-card *):not(.pricing-promo-card *),
.pricing-section h4:not(.pricing-interactive-card *):not(.pricing-promo-card *),
.pricing-section h5:not(.pricing-interactive-card *):not(.pricing-promo-card *),
.pricing-section h6:not(.pricing-interactive-card *):not(.pricing-promo-card *),
.reviews-section p,
.reviews-section h3,
.reviews-section h4,
.reviews-section h5,
.reviews-section h6,
#about p,
#about h3,
#about h4,
#about h5,
#about h6,
#services p,
#services h3,
#services h4,
#services h5,
#services h6,
#pricing p:not(.pricing-interactive-card *):not(.pricing-promo-card *),
#pricing h3:not(.pricing-interactive-card *):not(.pricing-promo-card *),
#pricing h4:not(.pricing-interactive-card *):not(.pricing-promo-card *),
#pricing h5:not(.pricing-interactive-card *):not(.pricing-promo-card *),
#pricing h6:not(.pricing-interactive-card *):not(.pricing-promo-card *),
#reviews p,
#reviews h3,
#reviews h4,
#reviews h5,
#reviews h6 {
  color: inherit !important;
}

/* Restore class-specific color declarations if they are defined on light sections */
.service-card-desc { color: #666666 !important; }
.card-desc-v2 { color: #666666 !important; }
.card-desc-featured { color: #666666 !important; }
.testimonial-quote-text { color: #4A4A4A !important; }
.exp-stat-subtext { color: #722F37 !important; }
.plan-image-desc { color: #200305 !important; }
.bullet-option { color: #5E3B40 !important; }

/* ==========================================================================
   HOMEPAGE GOLD TO WHITE OVERRIDE
   ========================================================================== */
.five-stars-gold,
.gold-text,
.portfolio-title-script,
.portfolio-subtag-gold,
.script-text-gold,
.badge-stars,
.google-stars,
.google-score-num,
.featured-badge-v2,
.card-num-ghost-v2,
.explore-link-v2,
.explore-arrow,
.explore-circle-btn,
.pill-gold-circle-arrow,
.story-gold-swirl-accent,
.three-dots-gold span,
.cards-gold-swirls-bg svg path {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

.arch-gold-frame-border,
.gold-border-frame,
.portfolio-card-border-frame,
.explore-circle-btn {
  border-color: #FFFFFF !important;
}

.card-diamond-badge,
.card-diamond-badge-left,
.card-diamond-badge-right,
.card-progress-bar-fill,
.hover-action-icon {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
}

/* ==========================================================================
   MASTER LORA FONT & REDUCED LETTER SPACING OVERRIDES
   ========================================================================== */

/* 1. PARAGRAPHS - 18px Lora, serif with reduced letter-spacing */
p, p *,
.paragraph, .paragraph *,
.description, .description *,
.desc, .desc *,
.section-desc, .section-desc *,
.story-para, .story-para *,
.about-para, .about-para *,
.service-desc, .service-desc *,
.service-card-desc, .service-card-desc *,
.card-desc-v2, .card-desc-v2 *,
.card-desc-featured, .card-desc-featured *,
.testimonial-quote-text, .testimonial-quote-text *,
.testimonial-text, .testimonial-text *,
.review-text, .review-text *,
.footer-desc, .footer-desc *,
.contact-desc, .contact-desc *,
.pricing-desc, .pricing-desc *,
.hero-desc, .hero-desc *,
.hero-subtitle, .hero-subtitle *,
.plan-image-desc, .plan-image-desc *,
.bullet-option, .bullet-option *,
.form-header-title p, .form-header-title p *,
section p, section p *,
article p, article p *,
div p, div p * {
  font-family: var(--font-content) !important;
  font-size: var(--font-content-size) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
  line-height: 1.7 !important;
}

/* 2. SUBHEADINGS - Lora, serif with reduced letter-spacing */
h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *,
.subheading, .subheading *,
.sub-heading, .sub-heading *,
.subtitle, .subtitle *,
.section-subtitle, .section-subtitle *,
.card-title, .card-title *,
.service-title, .service-title *,
.portfolio-item-title, .portfolio-item-title *,
.pricing-card-title, .pricing-card-title *,
.review-author-title, .review-author-title *,
.info-label, .info-label *,
.contact-card-title, .contact-card-title *,
.footer-heading, .footer-heading *,
.footer-widget-title, .footer-widget-title *,
.service-card-title, .service-card-title *,
.package-title, .package-title *,
.review-title, .review-title *,
.contact-title, .contact-title *,
.form-header-title h3, .form-header-title h3 * {
  font-family: var(--font-content) !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.1px !important;
}

/* 3. BUTTONS - Lora, serif with reduced letter-spacing & normal case */
button, button *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.btn, .btn *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
a.btn, a.btn *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.btn-primary, .btn-primary *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.btn-secondary, .btn-secondary *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.btn-secondary-link, .btn-secondary-link *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.btn-tan-pricing, .btn-tan-pricing *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.header-btn-primary, .header-btn-primary *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.drawer-btn, .drawer-btn *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.submit-btn, .submit-btn *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.btn-contact-submit, .btn-contact-submit *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
input[type="submit"],
button[type="submit"],
.filter-btn, .filter-btn *,
.tab-btn, .tab-btn *,
.portfolio-filter-btn, .portfolio-filter-btn *,
.modal-close-btn, .modal-close-btn *,
.cta-button, .cta-button * {
  font-family: var(--font-content) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
}

/* 4. HEADER - Lora, serif with reduced letter-spacing & normal case */
header, header *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.site-header, .site-header *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
#site-header, #site-header *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.nav-menu, .nav-menu *,
.nav-link, .nav-link *,
.nav-links, .nav-links *,
.nav-links a, .nav-links a *,
.logo-brand-vbr, .logo-brand-vbr *,
.logo-title, .logo-title *,
.logo-subtext, .logo-subtext *,
.header-actions, .header-actions *,
.mobile-drawer-header, .mobile-drawer-header *,
.mobile-drawer-cta, .mobile-drawer-cta * {
  font-family: var(--font-content) !important;
  text-transform: none !important;
}

.nav-link, .nav-link * {
  font-family: var(--font-content) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
}

.logo-title, .logo-title * {
  font-family: var(--font-content) !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 1px !important;
}

.logo-subtext, .logo-subtext * {
  font-family: var(--font-content) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 2px !important;
}

/* 5. FOOTER - Lora, serif with reduced letter-spacing & normal case */
footer, footer *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.site-footer, .site-footer *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.site-footer-mirror, .site-footer-mirror *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(i),
.footer-widget, .footer-widget *,
.footer-link, .footer-link *,
.footer-links, .footer-links *,
.footer-links a, .footer-links a *,
.footer-text, .footer-text *,
.footer-copyright, .footer-copyright *,
.footer-heading, .footer-heading *,
.footer-brand, .footer-brand *,
.footer-bottom, .footer-bottom * {
  font-family: var(--font-content) !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
}

.footer-heading, .footer-heading *,
.footer-widget-title, .footer-widget-title * {
  font-family: var(--font-content) !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
}

.footer-link, .footer-link *,
.footer-links a, .footer-links a *,
.footer-text, .footer-text *,
.footer-copyright, .footer-copyright * {
  font-family: var(--font-content) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
}

/* 6. TAGS, BADGES & BUTTON TEXT CAPS - Lora, serif normal case */
.tag-text,
.story-tag-text,
.btn-text-caps,
.exp-stat-label,
.btn-text,
.hero-sub-tag,
.hero-stat-lbl,
.story-tagline-wrap,
.unified-tag-flourish {
  font-family: var(--font-content) !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
}

/* Preserve FontAwesome Icons */
.fa, .fas, .far, .fal, .fad, .fab,
.fa-solid, .fa-regular, .fa-light, .fa-thin, .fa-duotone, .fa-brands,
[class^="fa-"], [class*=" fa-"],
i.fa, i.fas, i.far, i.fab, i.fal, i.fad, i.fa-solid, i.fa-regular, i.fa-brands,
.fa::before, .fas::before, .far::before, .fal::before, .fad::before, .fab::before,
.fa-solid::before, .fa-regular::before, .fa-light::before, .fa-thin::before, .fa-duotone::before, .fa-brands::before,
[class^="fa-"]::before, [class*=" fa-"]::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", FontAwesome !important;
}

/* ==========================================================================
   MASTER SECTION HEADINGS OVERRIDE - BUILT FOR DESIGN (Lora 800 + Brittany Script)
   ========================================================================== */
h1, h2,
.unified-section-title,
.unified-section-header h2,
.section-title,
.pricing-new-title,
.story-anim-title,
.services-mirror-header h2,
.editorial-couple-title,
.portfolio-title-main,
.hero-title,
main h1, main h2,
section h1, section h2 {
  font-family: 'Lora', Georgia, serif !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: -0.5px !important;
  color: #6D0000 !important;
  line-height: 1.15 !important;
}

/* For dark background sections (e.g. Portfolio section with maroon bg), keep text white */
.portfolio-section .unified-section-title,
.portfolio-section .unified-section-header h2,
.portfolio-section h2,
.portfolio-title-main,
.hero-video-fullwidth-section .hero-title {
  color: #FFFFFF !important;
}

/* Script text in headings (Brittany Signature) */
.unified-script-text,
.pricing-script-text,
.pricing-italic-green,
.portfolio-title-script,
.script-text-copper,
.script-text-gold,
.script-text,
.google-script-excellent,
.unified-section-title .unified-script-text,
.unified-section-header h2 .unified-script-text,
.pricing-new-title .pricing-italic-green,
h2 .script-text {
  font-family: 'Brittany Signature', 'brittany signature', cursive !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: #6D0000 !important;
}

/* Script text in dark background sections */
.portfolio-section .unified-script-text,
.portfolio-section .portfolio-title-script,
.hero-video-fullwidth-section .script-text,
.instagram-reels-section .unified-script-text,
#films .unified-script-text {
  color: #FFFFFF !important;
}

/* ==========================================================================
   PRICING DETAIL POPUP MODAL STYLES (#pricing-popup-modal)
   ========================================================================== */
.pricing-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 3, 5, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 20px !important;
}

.pricing-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.pricing-modal-card {
  position: relative !important;
  width: 100% !important;
  max-width: 580px !important;
  background: #FFFDFB !important;
  border: 2px solid #4A0D15 !important;
  border-radius: 24px !important;
  padding: 40px 36px !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(25px) scale(0.95) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pricing-modal-overlay.active .pricing-modal-card {
  transform: translateY(0) scale(1) !important;
}

.pricing-modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 22px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #F4E8E5 !important;
  border: 1px solid #4A0D15 !important;
  color: #4A0D15 !important;
  font-size: 24px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s ease !important;
}

.pricing-modal-close:hover {
  background: #4A0D15 !important;
  color: #FFFFFF !important;
  transform: rotate(90deg) !important;
}

.modal-tag-pill {
  display: inline-block !important;
  padding: 5px 14px !important;
  background: #F0E4D8 !important;
  border-radius: 50px !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  color: #4A0D15 !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
}

.modal-package-title {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #4A0D15 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.2 !important;
}

.modal-package-sub {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 13.5px !important;
  color: #666666 !important;
  margin: 0 0 24px 0 !important;
  line-height: 1.5 !important;
}

.pricing-modal-price-box {
  background: #F8F2EC !important;
  border: 1px dashed #4A0D15 !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  margin-bottom: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.price-currency {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: #4A0D15 !important;
  text-transform: uppercase !important;
}

.price-amount {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  color: #4A0D15 !important;
  line-height: 1 !important;
}

.price-period {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #777777 !important;
}

.features-label {
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  color: #4A0D15 !important;
  margin: 0 0 14px 0 !important;
}

.modal-features-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.modal-features-list li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 13.5px !important;
  color: #333333 !important;
  font-weight: 500 !important;
}

.modal-features-list li .check-icon {
  color: #4A0D15 !important;
  font-size: 15px !important;
  flex-shrink: 0 !important;
}

.pricing-modal-footer {
  text-align: center !important;
}

.btn-modal-book {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 16px 28px !important;
  background: #4A0D15 !important;
  color: #FFFFFF !important;
  border-radius: 50px !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(74, 13, 21, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-modal-book:hover {
  background: #2D080D !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(74, 13, 21, 0.4) !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   RIGHT CARD SIDE-BY-SIDE PHOTO SPLIT STYLES
   ========================================================================== */
.pricing-promo-card-side-split {
  background: #FFF9F6 !important;
  border: 1.5px solid #F0E4D8 !important;
  border-radius: 24px !important;
  padding: 32px !important;
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 24px !important;
  align-items: center !important;
  position: relative !important;
  box-shadow: 0 15px 40px rgba(74, 13, 21, 0.06) !important;
  cursor: pointer !important;
  transition: all 0.35s ease !important;
}

.pricing-promo-card-side-split:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 50px rgba(74, 13, 21, 0.12) !important;
  border-color: #4A0D15 !important;
}

.promo-left-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  gap: 20px !important;
}

.promo-side-photo-container {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  max-height: 520px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 30px rgba(74, 13, 21, 0.15) !important;
  border: 2px solid #F0E4D8 !important;
  background: #F4E8E5 !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%) !important;
  mask-image: linear-gradient(to right, transparent 0%, black 20%) !important;
}

.promo-side-photo-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  transition: transform 0.5s ease, filter 0.5s ease !important;
  filter: blur(3px) !important;
}

.pricing-promo-card-side-split:hover .promo-side-photo-container img {
  transform: scale(1.04) !important;
}

@media (max-width: 992px) {
  .pricing-promo-card-side-split {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================================
   SERVICES SECTION MASTER OVERRIDES (#services & .signature-services-section)
   ========================================================================== */
#services,
.signature-services-section {
  background-color: #6D0000 !important;
  background-image: url('../../images/maroon_bg.jpg'), url('../images/maroon_bg.jpg'), url('/images/maroon_bg.jpg') !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: repeat !important;
  color: #FFFFFF !important;
  position: relative !important;
}

#services .unified-section-title,
.signature-services-section .unified-section-title,
#services .photography-word-bold,
.signature-services-section .photography-word-bold,
#services .tag-text,
.signature-services-section .tag-text,
#services .unified-script-text,
.signature-services-section .unified-script-text {
  color: #FFFFFF !important;
}

#services .flourish-line,
.signature-services-section .flourish-line {
  background: #FFFFFF !important;
  opacity: 0.8 !important;
}

#services .unified-heart-ornament,
.signature-services-section .unified-heart-ornament,
#services .heart-icon,
.signature-services-section .heart-icon {
  color: #FFFFFF !important;
}

#services .heart-line,
.signature-services-section .heart-line {
  background: #FFFFFF !important;
  opacity: 0.4 !important;
}

#services .services-bg-floral-top-right,
.signature-services-section .services-bg-floral-top-right,
#services .botanical-accent,
.signature-services-section .botanical-accent {
  display: none !important;
}

/* ==========================================================================
   PRICING DETAIL POPUP MODAL SYSTEM (LUXURY GLASSMORPHISM POPUP)
   ========================================================================== */
.pricing-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(20, 5, 8, 0.78) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

.pricing-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.pricing-modal-card {
  position: relative !important;
  background: #FFFFFF !important;
  background-image: url('../../images/pricing_bg.jpg'), url('../images/pricing_bg.jpg'), url('images/pricing_bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  border: 1.5px solid rgba(109, 0, 0, 0.2) !important;
  border-radius: 24px !important;
  padding: 36px 32px 32px 32px !important;
  max-width: 520px !important;
  width: 100% !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(109, 0, 0, 0.15) !important;
  transform: scale(0.9) translateY(20px) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  color: #6D0000 !important;
  box-sizing: border-box !important;
}

.pricing-modal-overlay.active .pricing-modal-card {
  transform: scale(1) translateY(0) !important;
}

/* Close Button */
.pricing-modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #FAF6F0 !important;
  border: 1px solid rgba(109, 0, 0, 0.18) !important;
  color: #6D0000 !important;
  font-size: 24px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  padding: 0 !important;
}

.pricing-modal-close:hover {
  background: #6D0000 !important;
  color: #FFFFFF !important;
  transform: rotate(90deg) scale(1.08) !important;
  border-color: #6D0000 !important;
}

/* Header Info */
.pricing-modal-header {
  text-align: left !important;
  margin-bottom: 22px !important;
  padding-right: 32px !important;
}

.modal-tag-pill {
  display: inline-block !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #6D0000 !important;
  background: rgba(109, 0, 0, 0.08) !important;
  padding: 5px 14px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(109, 0, 0, 0.15) !important;
  margin-bottom: 12px !important;
}

.modal-package-title {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #6D0000 !important;
  line-height: 1.15 !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.5px !important;
  text-transform: uppercase !important;
}

.modal-package-sub {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 15px !important;
  color: #555555 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Price Box */
.pricing-modal-price-box {
  background: linear-gradient(135deg, rgba(109, 0, 0, 0.05) 0%, rgba(197, 155, 99, 0.1) 100%) !important;
  border: 1.5px dashed rgba(109, 0, 0, 0.22) !important;
  border-radius: 16px !important;
  padding: 18px 22px !important;
  margin-bottom: 24px !important;
}

.price-currency {
  display: block !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #6D0000 !important;
  opacity: 0.7 !important;
  margin-bottom: 4px !important;
}

.price-amount {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 34px !important;
  font-weight: 900 !important;
  color: #6D0000 !important;
  line-height: 1.1 !important;
}

.price-period {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #555555 !important;
}

/* Features List */
.pricing-modal-features {
  margin-bottom: 28px !important;
}

.features-label {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #6D0000 !important;
  margin-bottom: 14px !important;
}

.modal-features-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.modal-features-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 15px !important;
  color: #2B2B2B !important;
  line-height: 1.45 !important;
}

.modal-features-list li .check-icon {
  color: #6D0000 !important;
  font-size: 16px !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

.modal-features-list li span {
  color: #2B2B2B !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 15px !important;
}

/* Footer Action */
.pricing-modal-footer {
  text-align: center !important;
}

.btn-modal-book {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 16px 30px !important;
  background: linear-gradient(135deg, #6D0000 0%, #4A0000 100%) !important;
  color: #FFFFFF !important;
  border-radius: 50px !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(109, 0, 0, 0.35) !important;
  transition: all 0.35s ease !important;
  border: none !important;
  box-sizing: border-box !important;
}

.btn-modal-book * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.btn-modal-book:hover {
  background: linear-gradient(135deg, #500000 0%, #300000 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(109, 0, 0, 0.5) !important;
  color: #FFFFFF !important;
}

@media (max-width: 576px) {
  .pricing-modal-card {
    padding: 28px 20px 24px 20px !important;
    border-radius: 18px !important;
  }

  .modal-package-title {
    font-size: 22px !important;
  }

  .modal-package-sub {
    font-size: 13.5px !important;
  }

  .price-amount {
    font-size: 28px !important;
  }

  .modal-features-list li {
    font-size: 14px !important;
  }

  .btn-modal-book {
    padding: 14px 20px !important;
    font-size: 12px !important;
  }
}

/* ==========================================================================
   EXACT MIRROR COPY DESIGN: PRICING SECTION & INTERACTIVE CARDS
   ========================================================================== */
#pricing,
.pricing-section {
  background-color: #FAF5F0 !important;
  background-image: url('../../images/pricing_bg.jpg'), url('../images/pricing_bg.jpg'), url('images/pricing_bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: repeat !important;
  padding: 30px 0 40px 0 !important;
  color: #3D0A10 !important;
  position: relative !important;
}

/* Header Container */
.pricing-new-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 18px !important;
  gap: 22px !important;
}

.pricing-new-header-left {
  max-width: 580px !important;
}

.pricing-tag-pill {
  display: inline-block !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #5C0D12 !important;
  background: #FAF0E6 !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(92, 13, 18, 0.15) !important;
  margin-bottom: 14px !important;
}

.pricing-title-main {
  font-family: 'Lora', Georgia, serif !important;
  color: #5C0D12 !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
}

.pricing-title-main .title-bold-row {
  display: block !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: clamp(30px, 4.5vw, 44px) !important;
  font-weight: 900 !important;
  color: #5C0D12 !important;
  letter-spacing: -0.5px !important;
}

.pricing-title-main .title-script-row {
  display: block !important;
  font-family: 'Brittany Signature', 'brittany signature', cursive !important;
  font-size: clamp(36px, 6vw, 52px) !important;
  font-weight: normal !important;
  font-style: normal !important;
  color: #5C0D12 !important;
  margin-top: 0 !important;
  text-transform: none !important;
}

.pricing-title-main .title-underline-bar {
  display: block !important;
  width: 36px !important;
  height: 2.5px !important;
  background: #5C0D12 !important;
  margin: 10px 0 14px 0 !important;
}

.pricing-new-desc {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #555555 !important;
  max-width: 480px !important;
  margin: 0 !important;
}

/* Header Right Graphic Frame */
.pricing-header-graphic-wrap {
  position: relative !important;
  width: 240px !important;
  height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.camera-circle-frame {
  width: 170px !important;
  height: 170px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 3px solid #FAF0E6 !important;
  box-shadow: 0 15px 35px rgba(92, 13, 18, 0.12) !important;
  position: relative !important;
  z-index: 2 !important;
}

.camera-circle-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.floating-slate-badge {
  position: absolute !important;
  bottom: 12px !important;
  left: 12px !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #5C0D12 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 20px rgba(92, 13, 18, 0.3) !important;
  z-index: 3 !important;
}

.graphic-sparkle {
  position: absolute !important;
  color: #E6C5A8 !important;
  font-size: 16px !important;
  z-index: 3 !important;
}

.graphic-sparkle.sparkle-1 { top: 10px; left: 20px; }
.graphic-sparkle.sparkle-2 { top: 30px; left: 40px; font-size: 12px; }

/* 2-Column Split Layout */
.pricing-split-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

/* LEFT CARD: Interactive Package Builder */
.pricing-interactive-card {
  background: #FFFFFF !important;
  border-radius: 24px !important;
  padding: 30px 28px 28px 28px !important;
  border: 1px solid #EFE6DC !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Step Progress Tracker */
.pricing-steps-tracker {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 22px !important;
}

.pricing-step {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.pricing-step .step-num {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 1.5px solid #DDD !important;
  color: #888888 !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pricing-step.active .step-num {
  background: #5C0D12 !important;
  border-color: #5C0D12 !important;
  color: #FFFFFF !important;
}

.pricing-step .step-label {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  color: #999999 !important;
  text-transform: uppercase !important;
}

.pricing-step.active .step-label {
  color: #5C0D12 !important;
}

.step-line {
  flex: 1 !important;
  height: 1px !important;
  background: #EFE6DC !important;
  margin: 0 10px !important;
}

/* Card Header Text */
.pricing-step-header {
  margin-bottom: 20px !important;
}

.step-question-title {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #5C0D12 !important;
  line-height: 1.2 !important;
  margin: 0 0 4px 0 !important;
}

.step-question-sub {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 13.5px !important;
  color: #777777 !important;
  margin: 0 !important;
}

/* 6 Choice Cards Grid */
.services-choices-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 22px !important;
}

.service-choice-item {
  position: relative !important;
  background: #FFFFFF !important;
  border: 1.2px solid #E8E2D9 !important;
  border-radius: 16px !important;
  padding: 22px 14px 18px 14px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.service-choice-item:hover {
  border-color: #5C0D12 !important;
  transform: translateY(-2px) !important;
}

.service-choice-item.active {
  border: 1.5px solid #5C0D12 !important;
  background: #FAF5F0 !important;
  box-shadow: 0 8px 20px rgba(92, 13, 18, 0.08) !important;
}

/* Corner Radio Indicator */
.choice-radio {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  border: 1.5px solid #CCCCCC !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FFFFFF !important;
}

.service-choice-item.active .choice-radio {
  border-color: #5C0D12 !important;
}

.service-choice-item.active .choice-radio .radio-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #5C0D12 !important;
}

/* Icon Badge */
.choice-icon-badge {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #F6EBE6 !important;
  color: #5C0D12 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  margin-bottom: 12px !important;
  transition: all 0.3s ease !important;
}

.service-choice-item.active .choice-icon-badge {
  background: #5C0D12 !important;
  color: #FFFFFF !important;
}

.choice-title {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  color: #3D0A10 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

/* Bottom CTA Row */
.pricing-left-cta-row {
  text-align: center !important;
}

.btn-pricing-next-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 34px !important;
  border-radius: 50px !important;
  background: #5C0D12 !important;
  color: #FFFFFF !important;
  border: none !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  box-shadow: 0 8px 25px rgba(92, 13, 18, 0.25) !important;
  transition: all 0.35s ease !important;
}

.btn-pricing-next-pill * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.btn-pricing-next-pill:hover {
  background: #4A0E17 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(92, 13, 18, 0.38) !important;
}

/* RIGHT CARD: Visual Showcase & Brand Promo Card */
.pricing-promo-card-side-split {
  position: relative !important;
  background: #FFFFFF !important;
  border-radius: 24px !important;
  border: 1px solid #EFE6DC !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden !important;
  padding: 36px 32px 32px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  cursor: pointer !important;
}

/* Right Side Background Videographer Image */
.promo-side-photo-container {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 48% !important; /* Made narrower to avoid overlapping text too much */
  z-index: 1 !important;
  overflow: hidden !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%) !important;
  mask-image: linear-gradient(to right, transparent 0%, black 20%) !important;
}

.promo-side-photo-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center right !important;
  filter: blur(3px) !important;
  transition: transform 0.5s ease, filter 0.5s ease !important;
}

/* Left Content Overlay inside Right Card */
.promo-left-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 65% !important;
}

.promo-rocket-badge {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #5C0D12 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  margin-bottom: 24px !important;
  box-shadow: 0 8px 20px rgba(92, 13, 18, 0.25) !important;
}

.promo-headline-wrap {
  margin-bottom: 24px !important;
}

.promo-main-headline {
  font-family: 'Lora', Georgia, serif !important;
  font-size: clamp(26px, 3.5vw, 34px) !important;
  font-weight: 900 !important;
  color: #5C0D12 !important;
  line-height: 1.15 !important;
  margin: 0 0 8px 0 !important;
}

.promo-script-sub {
  display: block !important;
  font-family: 'Brittany Signature', 'brittany signature', cursive !important;
  font-size: clamp(30px, 4vw, 40px) !important;
  font-weight: normal !important;
  font-style: normal !important;
  color: #5C0D12 !important;
  margin-top: 2px !important;
  text-transform: none !important;
}

.promo-headline-underline {
  width: 36px !important;
  height: 2px !important;
  background: #5C0D12 !important;
  margin-top: 10px !important;
}

/* Goal Statement Box */
.promo-goal-statement-box {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 28px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  padding: 12px 16px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(92, 13, 18, 0.1) !important;
}

.goal-star-badge {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #5C0D12 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  flex-shrink: 0 !important;
}

.goal-text {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 12.5px !important;
  color: #444444 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Bottom Glassmorphism Features Bar */
.promo-glass-features-bar {
  position: relative !important;
  z-index: 4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  gap: 12px !important;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 20px !important;
  padding: 14px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

.glass-feature-pillar {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.pillar-icon-badge {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #F6EBE6 !important;
  color: #5C0D12 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}

.pillar-text {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #3D0A10 !important;
  line-height: 1.2 !important;
}

@media (max-width: 991px) {
  .pricing-split-layout {
    grid-template-columns: 1fr !important;
  }
  #pricing .pricing-promo-card-side-split {
    min-height: 480px !important;
  }
  #pricing .promo-left-content {
    max-width: 100% !important;
    width: 100% !important;
    z-index: 3 !important;
  }
  #pricing .promo-side-photo-container {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0.28 !important; /* Soft backdrop opacity so text is readable over it */
  }
}

/* ==========================================================================
   MASTER ZERO-EXTRA-SPACE COMPACT LAYOUT OVERRIDE FOR PRICING CARD
   ========================================================================== */
#pricing .pricing-split-layout,
.pricing-split-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: start !important;
  align-content: start !important;
}

#pricing .pricing-interactive-card,
.pricing-interactive-card {
  background: #FFFFFF !important;
  border-radius: 24px !important;
  padding: 24px 22px 22px 22px !important;
  border: 1px solid #EFE6DC !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
  display: block !important; /* Stack elements naturally without flex space-between stretching */
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-self: start !important;
  flex: none !important;
  margin: 0 !important;
  
}

#pricing .pricing-promo-card-side-split,
.pricing-promo-card-side-split {
  align-self: start !important;
  height: auto !important;
  margin: 0 !important;
}

#pricing .pricing-steps-tracker,
.pricing-steps-tracker {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

#pricing .pricing-step-header,
.pricing-step-header {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

#pricing .step-question-title,
.step-question-title {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  color: #5C0D12 !important;
  line-height: 1.2 !important;
  margin: 0 0 3px 0 !important;
  padding: 0 !important;
}

#pricing .step-question-sub,
.step-question-sub {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 13px !important;
  color: #777777 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#pricing .services-choices-grid,
.services-choices-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

#pricing .service-choice-item,
.service-choice-item {
  position: relative !important;
  background: #FFFFFF !important;
  border: 1.2px solid #E8E2D9 !important;
  border-radius: 16px !important;
  padding: 16px 10px 14px 10px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  min-height: 0 !important;
}

#pricing .choice-icon-badge,
.choice-icon-badge {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #F6EBE6 !important;
  color: #5C0D12 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  margin-bottom: 8px !important;
}

#pricing .choice-title,
.choice-title {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  color: #3D0A10 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

#pricing .pricing-left-cta-row,
.pricing-left-cta-row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  height: auto !important;
  min-height: 0 !important;
}

#pricing .btn-pricing-next-pill,
.btn-pricing-next-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  background: #5C0D12 !important;
  color: #FFFFFF !important;
  border: none !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  margin: 0 auto !important;
}

/* Pricing Right Column Wrapper */
.pricing-right-column-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
  width: 100% !important;
}

/* Pricing Promo Card Custom styling */
.pricing-promo-card-side-split {
  position: relative !important;
  background: #FFFFFF !important;
  border-radius: 28px !important;
  border: 1px solid #EFE6DC !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden !important;
  padding: 36px 32px 110px 32px !important; /* padding-bottom to make room for absolute features bar */
  display: block !important;
  min-height: 520px !important;
  cursor: pointer !important;
  transition: all 0.35s ease !important;
}

.pricing-promo-card-side-split:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 50px rgba(109, 0, 0, 0.12) !important;
  border-color: #6D0000 !important;
}

.promo-left-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 60% !important;
}

.promo-side-photo-container {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 48% !important; /* Made narrower to avoid overlapping text too much */
  z-index: 1 !important;
  overflow: hidden !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%) !important;
  mask-image: linear-gradient(to right, transparent 0%, black 20%) !important;
}

.promo-side-photo-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center right !important;
  display: block !important;
  transition: transform 0.5s ease, filter 0.5s ease !important;
  filter: blur(3px) !important;
}

.pricing-promo-card-side-split:hover .promo-side-photo-container img {
  transform: scale(1.04) !important;
}

/* Rocket Badge */
.promo-rocket-badge {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #6D0000 !important; /* Dark maroon/burgundy */
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 8px 20px rgba(109, 0, 0, 0.2) !important;
}

.promo-main-headline {
  font-family: 'Lora', Georgia, serif !important;
  font-size: clamp(26px, 3.5vw, 34px) !important;
  font-weight: 900 !important;
  color: #6D0000 !important;
  line-height: 1.15 !important;
  margin: 0 0 8px 0 !important;
}

.promo-script-sub {
  display: block !important;
  font-family: 'Brittany Signature', cursive !important;
  font-size: clamp(30px, 4vw, 40px) !important;
  font-weight: normal !important;
  font-style: normal !important;
  color: #6D0000 !important;
  margin-top: 2px !important;
  text-transform: none !important;
}

.promo-headline-underline {
  width: 100% !important;
  max-width: 180px !important;
  height: 1px !important;
  background: rgba(109, 0, 0, 0.2) !important;
  margin-top: 15px !important;
}

/* Star Statement Box */
.promo-goal-statement-box {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 28px !important;
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.goal-star-badge {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #6D0000 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 10px rgba(109, 0, 0, 0.15) !important;
}

.goal-text {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 13px !important;
  color: #555555 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Bottom Glassmorphism Features Bar */
.promo-glass-features-bar {
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  gap: 12px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 20px !important;
  padding: 14px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.glass-feature-pillar {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.pillar-icon-badge {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #F6EBE6 !important;
  color: #6D0000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}

.pillar-text {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #6D0000 !important;
  line-height: 1.2 !important;
}

/* Pricing Header Graphic above vertical card */
.pricing-header-graphic-wrap {
  position: relative !important;
  width: 240px !important;
  height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px auto !important; /* Centered with bottom margin */
  flex-shrink: 0 !important;
}

.camera-circle-frame {
  width: 170px !important;
  height: 170px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 3px solid #FAF0E6 !important;
  box-shadow: 0 15px 35px rgba(92, 13, 18, 0.12) !important;
  position: relative !important;
  z-index: 2 !important;
}

.camera-circle-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.floating-slate-badge {
  position: absolute !important;
  top: 15px !important; /* top-left overlapping position */
  left: 15px !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #6D0000 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 20px rgba(92, 13, 18, 0.3) !important;
  z-index: 3 !important;
  font-size: 18px !important;
}

.graphic-sparkle {
  position: absolute !important;
  color: #E6C5A8 !important;
  font-size: 16px !important;
  z-index: 3 !important;
}

.graphic-sparkle.sparkle-1 { top: 10px; left: 20px; }
.graphic-sparkle.sparkle-2 { top: 30px; left: 40px; font-size: 12px; }

/* Crossed Ribbons behind circle image */
.crossed-ribbon {
  position: absolute !important;
  background-color: #EFE6DC !important;
  opacity: 0.8 !important;
  z-index: 1 !important;
}

.ribbon-line-1 {
  top: 50% !important;
  left: 50% !important;
  width: 260px !important;
  height: 16px !important;
  transform: translate(-50%, -50%) rotate(40deg) !important;
}

.ribbon-line-2 {
  top: 50% !important;
  left: 50% !important;
  width: 260px !important;
  height: 16px !important;
  transform: translate(-50%, -50%) rotate(-40deg) !important;
}

@media (max-width: 991px) {
  #pricing .pricing-split-layout,
  .pricing-split-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  #pricing .pricing-new-header,
  .pricing-new-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    margin-bottom: 30px !important;
  }
  
  #pricing .pricing-new-header-left,
  .pricing-new-header-left {
    max-width: 100% !important;
    text-align: center !important;
    flex: none !important;
  }
  
  #pricing .pricing-title-main .title-underline-bar,
  .pricing-title-main .title-underline-bar {
    margin: 10px auto 14px auto !important;
  }
  
  #pricing .pricing-new-desc,
  .pricing-new-desc {
    margin: 0 auto !important;
  }
  
  #pricing .pricing-promo-card-side-split,
  .pricing-promo-card-side-split {
    padding: 32px 24px !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  #pricing .promo-left-content,
  .promo-left-content {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  #pricing .promo-side-photo-container,
  .promo-side-photo-container {
    position: relative !important;
    display: block !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 220px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-top: 10px !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  #pricing .promo-side-photo-container img,
  .promo-side-photo-container img {
    object-position: center center !important;
    filter: none !important;
  }
  
  #pricing .promo-glass-features-bar,
  .promo-glass-features-bar {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 15px !important;
    width: 100% !important;
    padding: 12px 10px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  #pricing .glass-feature-pillar,
  .glass-feature-pillar {
    flex: 0 0 calc(50% - 10px) !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  #pricing .pillar-icon-badge,
  .pillar-icon-badge {
    width: 28px !important;
    height: 28px !important;
    font-size: 11px !important;
  }

  #pricing .pillar-text,
  .pillar-text {
    font-size: 9px !important;
  }

  #pricing .promo-rocket-badge,
  .promo-rocket-badge {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }

  #pricing .promo-main-headline,
  .promo-main-headline {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  #pricing .promo-script-sub,
  .promo-script-sub {
    font-size: 22px !important;
  }

  #pricing .promo-headline-underline,
  .promo-headline-underline {
    margin-top: 10px !important;
  }

  #pricing .promo-goal-statement-box,
  .promo-goal-statement-box {
    margin-bottom: 15px !important;
    gap: 8px !important;
  }

  #pricing .goal-star-badge,
  .goal-star-badge {
    width: 20px !important;
    height: 20px !important;
    font-size: 9px !important;
  }

  #pricing .goal-text,
  .goal-text {
    font-size: 11px !important;
  }
}

@media (max-width: 768px) {
  #pricing .services-choices-grid,
  .services-choices-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

@media (max-width: 576px) {
  #pricing .services-choices-grid,
  .services-choices-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  
  #pricing .pricing-step .step-label,
  .pricing-step .step-label {
    display: none !important;
  }
  
  #pricing .step-line,
  .step-line {
    margin: 0 6px !important;
  }
}

/* ==========================================================================
   INSTAGRAM REELS SECTION — EXACT MIRROR OF IMAGE 1
   ========================================================================== */

.instagram-reels-section {
  position: relative !important;
  background-color: #3C0A10 !important;
  background-image: url('/images/maroon_bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 90px 0 100px 0 !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
}

/* Override unified header styles for dark bg */
.instagram-reels-section .unified-tag-flourish .flourish-line {
  background: #ffffff !important;
  background-color: #ffffff !important;
}
.instagram-reels-section .unified-tag-flourish .tag-text {
  color: #ffffff !important;
}
.instagram-reels-section .unified-section-title {
  color: #ffffff !important;
}
.instagram-reels-section .unified-section-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}
.instagram-reels-section .unified-heart-ornament .heart-line {
  background: #ffffff !important;
  background-color: #ffffff !important;
}
.instagram-reels-section .unified-heart-ornament .heart-icon {
  color: #ffffff !important;
}

/* Instagram Icon in header */
.reels-insta-icon-header {
  font-size: 26px !important;
  color: #ffffff !important;
  margin: 10px 0 6px 0 !important;
  display: block !important;
  text-align: center !important;
}

/* ── 2-Column Grid: LEFT phones | RIGHT content ─────────────────────────── */
.reels-two-col-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 54px !important;
}

/* LEFT column */
.reels-phones-left-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

/* RIGHT column */
.reels-content-right-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

/* ── Reels Wrapper (carousel row with arrows) ───────────────────────────── */
.reels-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  position: relative !important;
}

.slider-btn {
  display: none !important;
  flex-shrink: 0 !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  z-index: 5 !important;
}
.slider-btn:hover {
  background: #ffffff !important;
  color: #3C0A10 !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5) !important;
}

/* Reels slider track */
.reels-slider {
  display: flex !important;
  gap: 16px !important;
  flex: 1 !important;
  overflow: hidden !important;
  position: relative !important;
  padding: 30px 12px !important;
  scroll-behavior: smooth !important;
}

/* ── Individual Phone Mockup Card ──────────────────────────────────────── */
.reel-card {
  flex: 0 0 240px !important;
  width: 240px !important;
  height: 520px !important;
  border-radius: 32px !important;
  background: #111 !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
  border: 4.5px solid #1e1a1b !important;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

/* Active smartphone styling */
.reel-card.active {
  border-color: #C59B63 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(197, 155, 99, 0.25) !important;
  transform: scale(1.03) !important;
  z-index: 3 !important;
  opacity: 1 !important;
}

/* Inactive smartphone styling */
.reel-card.small {
  opacity: 0.65 !important;
  transform: scale(0.97) !important;
  filter: grayscale(0.2) brightness(0.7) !important;
}

/* Hover effects */
.reel-card:hover:not(.active) {
  opacity: 0.9 !important;
  transform: translateY(-6px) scale(0.98) !important;
  filter: none !important;
  border-color: rgba(197, 155, 99, 0.4) !important;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45) !important;
}
.reel-card.active:hover {
  transform: translateY(-6px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(197, 155, 99, 0.4) !important;
}

/* Dynamic Island / Notch */
.reel-card::before {
  content: '' !important;
  position: absolute !important;
  top: 8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 36px !important;
  height: 8px !important;
  background: #000 !important;
  border-radius: 10px !important;
  z-index: 10 !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2) !important;
}

/* Gloss Screen Reflection Sweeping Effect */
.reel-card::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -150% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  ) !important;
  transform: skewX(-20deg) !important;
  transition: 0.75s ease !important;
  z-index: 5 !important;
  pointer-events: none !important;
}
.reel-card:hover::after {
  left: 150% !important;
}

/* Slow zoom on image on hover */
.reel-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  transition: transform 0.8s ease !important;
}
.reel-card:hover img {
  transform: scale(1.05) !important;
}

/* Play button on active reel with concentric pulsing halos */
.play-button {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 4 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border: 2px solid #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 18px !important;
  backdrop-filter: blur(4px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
.play-button::before {
  content: '' !important;
  position: absolute !important;
  inset: -6px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  animation: play-pulse 2s infinite !important;
}
@keyframes play-pulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1) !important;
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.4) !important;
}

/* Timeline/Progress Bar at bottom */
.reel-progress-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 3px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  z-index: 6 !important;
  overflow: hidden !important;
}
.reel-progress-bar .progress-line {
  width: 100% !important;
  height: 100% !important;
  background: #ffffff !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
}
.reel-card.active .reel-progress-bar .progress-line {
  animation: reel-timeline 15s linear infinite !important;
}
@keyframes reel-timeline {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Overlay (gradient + content) */
.reel-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    transparent 25%,
    transparent 65%,
    rgba(0, 0, 0, 0.75) 100%
  ) !important;
}

/* Top bar (Reels tag) */
.reel-top-bar {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  padding: 16px 14px !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-family: 'Lora', Georgia, serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}
.reel-top-bar i {
  font-size: 11px !important;
  margin-right: 6px !important;
}

/* Bottom content bar */
.reel-bottom-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  padding: 16px 14px !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%) !important;
  box-sizing: border-box !important;
}
.reel-caption {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  max-width: 72% !important;
  text-align: left !important;
  white-space: normal !important;
}
.reel-likes {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: #ffffff !important;
  font-size: 10.5px !important;
  font-family: 'Lora', Georgia, serif !important;
  font-weight: 600 !important;
}
.reel-likes i {
  font-size: 10.5px !important;
  color: #ffffff !important;
}

/* Carousel dots indicators */
.slider-dots {
  display: flex !important;
  gap: 7px !important;
  justify-content: center !important;
  margin-top: 16px !important;
}
.slider-dots span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.3) !important;
  cursor: pointer !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}
.slider-dots span.active {
  background: #ffffff !important;
  transform: scale(1.25) !important;
}

/* ── RIGHT: Content Box Card ────────────────────────────────────────────── */
.content-box {
  background: rgba(30, 5, 10, 0.55) !important;
  border: 1px solid rgba(197, 155, 99, 0.25) !important;
  border-radius: 24px !important;
  padding: 24px 30px !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
  width: 100% !important;
}

.content-box-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 12px !important;
  width: 100% !important;
}

.heart-icon-circle {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 2px solid #C59B63 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #C59B63 !important;
  font-size: 15px !important;
  flex-shrink: 0 !important;
}

.content-box h3 {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: -0.5px !important;
}
.content-box h3 span.cursive-title {
  font-family: 'Brittany Signature', cursive !important;
  font-size: 30px !important;
  color: #ffffff !important;
  display: block !important;
  margin-top: 2px !important;
  font-weight: normal !important;
  text-transform: none !important;
}

.content-box > p {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

/* Features grid */
.features {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
  width: 100% !important;
}
.feature {
  background: rgba(20, 3, 5, 0.45) !important;
  border: 1px solid rgba(197, 155, 99, 0.25) !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  cursor: default !important;
}
.feature:hover {
  background: rgba(197, 155, 99, 0.12) !important;
  border-color: rgba(197, 155, 99, 0.5) !important;
  transform: translateY(-2px) !important;
}
.feature i {
  font-size: 16px !important;
  color: #ffffff !important;
  flex-shrink: 0 !important;
}
.feature span {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
}

/* Watch More Reels button */
.watch-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, #C59B63 0%, #A27B4C 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-family: 'Lora', Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}
.watch-btn:hover {
  background: linear-gradient(135deg, #d3ab73 0%, #b38c5b 100%) !important;
  box-shadow: 0 8px 20px rgba(197, 155, 99, 0.4) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}
.watch-btn i {
  font-size: 12px !important;
  color: #ffffff !important;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .reels-two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .reels-phones-left-col {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    min-width: 0 !important;
  }
  .reels-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    min-width: 0 !important;
  }
  .reels-slider {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .reels-content-right-col {
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .content-box {
    max-width: 580px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .features {
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .instagram-reels-section {
    padding: 50px 0 60px 0 !important;
  }
  .reels-two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-top: 30px !important;
  }
  .content-box {
    padding: 20px 22px !important;
    border-radius: 18px !important;
    max-width: 100% !important;
  }
  .content-box h3 {
    font-size: 22px !important;
  }
  .content-box h3 span.cursive-title {
    font-size: 26px !important;
  }
  .content-box > p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }
  .features {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
  }
  .reel-card {
    flex: 0 0 175px !important;
    width: 175px !important;
    height: 310px !important;
    border-radius: 24px !important;
    border-width: 3px !important;
  }
  .reel-card.small {
    transform: scale(0.92) !important;
  }
  .reel-card.active {
    transform: scale(1.04) !important;
  }
  .reel-card.active:hover {
    transform: translateY(-4px) scale(1.06) !important;
  }
  .reel-card:hover:not(.active) {
    transform: translateY(-4px) scale(0.94) !important;
  }
  .reel-card::before {
    width: 28px !important;
    height: 6px !important;
    top: 6px !important;
  }
  .reel-top-bar {
    padding: 12px 10px !important;
    font-size: 10px !important;
  }
  .reel-top-bar i {
    font-size: 10px !important;
  }
  .reel-bottom-bar {
    padding: 12px 10px !important;
  }
  .reel-caption {
    font-size: 10px !important;
  }
  .reel-likes {
    font-size: 9.5px !important;
  }
  .reel-likes i {
    font-size: 9.5px !important;
  }
  .play-button {
    width: 40px !important;
    height: 40px !important;
    font-size: 15px !important;
  }
  .play-button::before {
    inset: -4px !important;
  }
  .reels-slider {
    gap: 12px !important;
    padding: 20px calc(50vw - 87.5px) !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
  }
  .slider-btn {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr !important;
  }
  .content-box {
    padding: 16px 18px !important;
  }
  .content-box-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .content-box h3 {
    font-size: 19px !important;
  }
  .content-box h3 span.cursive-title {
    font-size: 22px !important;
  }
}

/* ==========================================================================
   ANIMATED SIGNATURE SERVICES SECTION - ULTRA LUXURY & MOTION
   ========================================================================== */

.signature-services-section {
  position: relative !important;
  overflow: hidden !important;
}

.signature-services-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 160%;
  height: 180%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(109, 0, 0, 0) 65%);
  pointer-events: none;
  z-index: 1;
  animation: ambientPulse 10s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
  100% { transform: scale(1.12) translate(40px, -30px); opacity: 0.95; }
}

.sig-service-card {
  position: relative !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

.sig-service-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.4), 0 0 35px rgba(212, 175, 55, 0.28) !important;
  border-color: rgba(212, 175, 55, 0.8) !important;
}

.sig-service-card .featured-img-arched img,
.sig-service-card .card-horizontal-right img {
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sig-service-card:hover .featured-img-arched img,
.sig-service-card:hover .card-horizontal-right img {
  transform: scale(1.14) !important;
}

.sig-service-card .featured-img-arched {
  transition: border-color 0.5s ease, box-shadow 0.5s ease !important;
}

.sig-service-card:hover .featured-img-arched {
  border-left-color: #D4AF37 !important;
  box-shadow: -6px 0 25px rgba(212, 175, 55, 0.25) !important;
}

.sig-service-card .card-icon-v2 {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.sig-service-card:hover .card-icon-v2 {
  transform: rotate(12deg) scale(1.1) !important;
  background: radial-gradient(circle, #FFFDF9 0%, #F5E8D3 100%) !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35) !important;
}

.sig-service-card:hover .card-icon-v2 svg {
  stroke: #6D0000 !important;
  transition: stroke 0.3s ease !important;
}

.sig-service-card .card-num-ghost-v2 {
  transition: color 0.4s ease, transform 0.4s ease !important;
}

.sig-service-card:hover .card-num-ghost-v2 {
  color: rgba(212, 175, 55, 0.45) !important;
  transform: translateY(-2px) scale(1.05) !important;
}

.sig-service-card .card-diamond-badge-left,
.sig-service-card .card-diamond-badge-right {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease !important;
}

.sig-service-card:hover .card-diamond-badge-left,
.sig-service-card:hover .card-diamond-badge-right {
  transform: translateY(-50%) rotate(225deg) scale(1.25) !important;
  background-color: #D4AF37 !important;
  border-color: #FFFFFF !important;
}

/* Card Content Spacing & Layout */
.sig-service-card .card-horizontal-left,
.sig-service-card .card-featured-left {
  padding: 26px 20px 24px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.sig-service-card .card-header-v2 {
  margin-bottom: 20px !important;
}

.sig-service-card .card-title-v2,
.sig-service-card .card-title-featured {
  margin-bottom: 14px !important;
  font-size: 1.65rem !important;
  line-height: 1.18 !important;
}

.sig-service-card .card-desc-v2,
.sig-service-card .card-desc-featured {
  margin-bottom: 24px !important;
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
  color: #666666 !important;
}

.sig-service-card .card-footer-v2 {
  margin-top: auto !important;
  padding-top: 8px !important;
}

/* Highlighted Animated Border Button */
.sig-service-card .explore-link-v2 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 9px 22px !important;
  background: rgba(109, 0, 0, 0.04) !important;
  border: 1.5px solid rgba(109, 0, 0, 0.28) !important;
  border-radius: 50px !important;
  font-family: var(--font-sans, 'Lora', Georgia, serif) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #6D0000 !important;
  letter-spacing: 0.3px !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 2px 8px rgba(109, 0, 0, 0.04) !important;
}

.sig-service-card .explore-link-v2:hover {
  background: #6D0000 !important;
  border-color: #6D0000 !important;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 8px 24px rgba(109, 0, 0, 0.28) !important;
}

.sig-service-card .explore-arrow {
  font-size: 14px !important;
  color: #6D0000 !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease !important;
  display: inline-block !important;
}

.sig-service-card .explore-link-v2:hover .explore-arrow {
  transform: translateX(5px) !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   COMPLETE MOBILE RESPONSIVENESS & SPACING FIXES ACROSS ALL SCREENS
   ========================================================================== */

/* 1. Global Layout & Container Improvements */
@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Universal Section Top/Bottom Padding & Spacing */
  section,
  .our-story-mirror-section,
  .signature-services-section,
  .portfolio-section-mirror,
  .hero-video-fullwidth-section,
  .instagram-reels-section,
  .pricing-section,
  .happy-clients-mirror-section,
  .contact-section-mirror,
  #about, #services, #portfolio, #films, #instagram-reels, #pricing, #reviews, #contact {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    margin-top: 0 !important;
  }

  /* Section Title & Header Typography Scaling */
  .unified-section-header {
    margin-bottom: 28px !important;
    padding-top: 0 !important;
  }
  .unified-section-title {
    font-size: 1.85rem !important;
    line-height: 1.22 !important;
    margin-bottom: 10px !important;
  }
  .unified-script-text,
  .script-text {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
  }
  .unified-tag-flourish .tag-text,
  .story-tag-text {
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  section,
  .our-story-mirror-section,
  .signature-services-section,
  .portfolio-section-mirror,
  .instagram-reels-section,
  .pricing-section,
  .happy-clients-mirror-section,
  .contact-section-mirror {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .unified-section-title {
    font-size: 1.6rem !important;
  }
  .unified-script-text,
  .script-text {
    font-size: 1.45rem !important;
  }
}

/* 2. Signature Services Grid & Cards Mobile Responsiveness */
.signature-services-grid .services-row-top,
.signature-services-grid .services-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.sig-service-card {
  background: #FFFDF9;
  border: 1px solid rgba(223, 205, 188, 0.5);
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
  align-items: stretch;
}

.sig-service-card .card-horizontal-left,
.sig-service-card .card-featured-left {
  padding: 22px 18px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 2;
}

.sig-service-card .card-horizontal-right,
.sig-service-card .card-featured-right {
  position: relative;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}

.sig-service-card .featured-img-arched {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: 0;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
  border-left: 1.5px solid rgba(223, 205, 188, 0.5);
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 991px) {
  .signature-services-grid .services-row-top,
  .signature-services-grid .services-row-bottom {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .sig-service-card,
  .sig-service-card.card-featured-v2,
  .sig-service-card .card-featured-inner {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    border-radius: 20px !important;
  }

  .sig-service-card .card-horizontal-left,
  .sig-service-card .card-featured-left {
    padding: 20px 16px 18px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .sig-service-card .card-title-v2,
  .sig-service-card .card-title-featured {
    font-size: 1.4rem !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .sig-service-card .card-desc-v2,
  .sig-service-card .card-desc-featured {
    font-size: 0.82rem !important;
    max-width: 100% !important;
    margin-bottom: 14px !important;
  }

  .sig-service-card .card-horizontal-right,
  .sig-service-card .card-featured-right {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    position: relative !important;
  }

  .sig-service-card .featured-img-arched {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 180px !important;
    border-radius: 0 0 20px 20px !important;
    border-top: 1px solid rgba(223, 205, 188, 0.5) !important;
    border-left: none !important;
  }
}

/* 3. About / Our Story Mobile Responsiveness */
@media (max-width: 991px) {
  .our-story-main-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .story-left-col, .story-right-col {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .story-left-content-inner {
    padding: 24px 18px !important;
  }
  .story-main-title {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
  }
  .story-stats-grid-mirror {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .story-stat-card {
    padding: 14px 10px !important;
  }
  .story-stat-card .stat-number {
    font-size: 1.75rem !important;
  }
  .story-stat-card .stat-label {
    font-size: 0.72rem !important;
  }
}

/* 4. Portfolio Filter Pills & Card Grid Mobile Responsiveness */
@media (max-width: 768px) {
  .portfolio-filter-bar,
  .portfolio-categories {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 14px 4px !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    max-width: 100% !important;
    scrollbar-width: none;
  }
  .portfolio-filter-bar::-webkit-scrollbar,
  .portfolio-categories::-webkit-scrollbar {
    display: none;
  }
  .filter-btn,
  .category-pill {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 12px !important;
    padding: 8px 16px !important;
  }
  .portfolio-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .portfolio-card-item .portfolio-img-box {
    height: 220px !important;
  }
}

/* 5. Contact Section Form & Touch Targets */
@media (max-width: 991px) {
  .contact-main-grid,
  .contact-split-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 768px) {
  .contact-form-card input,
  .contact-form-card textarea,
  .contact-form-card select,
  .form-control {
    font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
    padding: 12px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .btn-submit-contact,
  .btn-primary.drawer-btn {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* 6. Footer Section Mobile Alignment */
@media (max-width: 768px) {
  .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }
  .footer-brand-col,
  .footer-links-col,
  .footer-contact-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-social-row {
    justify-content: center !important;
  }
  .footer-copyright-row {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    padding: 20px 0 !important;
  }
}




