/* ==========================================================================
   THE CLEAN QUEENS - MASTER STYLESHEET (FINAL PRODUCTION)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Crown Cursor: Desktop Mouse Only (Prevents touch lag on mobile) */
@media (hover: hover) and (pointer: fine) {
    *, *::before, *::after {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23D47A7B"><path d="M5 16L3 5l5.5 5L12 4l3.5 6L21 5l-2 11H5zm14 3c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1v-1h14v1z"/></svg>') 12 12, auto !important;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F4E1E6;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(220,180,190,0.2) 100%);
    color: #2D2D2D;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, .serif {
    font-family: 'Prata', serif;
    font-weight: 400;
}

.gold-sub-header {
    font-family: 'Prata', serif;
    font-style: italic;
    font-size: 20px;
    color: #C5A059;
    margin-bottom: 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION (SINGLE-ROW LUXURY REFINEMENT)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0F0F0F;
    z-index: 1000;
    border-bottom: 3px solid #C5A059;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-lockup {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 65px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-the {
    font-size: 8px;
    letter-spacing: 2.5px;
    color: #C5A059;
}

.brand-title {
    font-family: 'Prata', serif;
    font-size: 16px;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    line-height: 1.1;
    white-space: nowrap;
}

.brand-sub-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
    width: 100%;
}

.brand-line {
    flex-grow: 1;
    height: 1px;
    background-color: #C5A059;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.4vw, 22px);
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-nav .nav-list li {
    white-space: nowrap;
}

.main-nav .nav-list a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #FFFFFF;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: #C5A059;
}

/* Dropdown Menu */
.nav-list li.dropdown {
    position: relative;
}

.nav-arrow {
    font-size: 8px;
    margin-left: 4px;
    color: #C5A059;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0F0F0F;
    border: 1px solid #C5A059;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    list-style: none;
    min-width: 230px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1001;
}

.nav-list li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 11px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
}

.dropdown-menu li a:hover {
    background-color: #1A1A1A;
    color: #C5A059;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #C5A059;
    color: #C5A059;
    font-size: 20px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #C5A059;
    color: #0F0F0F;
}

/* ==========================================================================
   HERO SECTIONS (RESPONSIVE VIDEO & FLUID EYEBROW)
   ========================================================================== */
.page-hero {
    padding-top: 140px;
    padding-bottom: 20px;
    text-align: center;
}

.video-hero {
    position: relative;
    min-height: 85vh;
    min-height: 85dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 130px 0 60px 0;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 0.55) 0%, rgba(15, 15, 15, 0.88) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 24px);
    font-family: 'Prata', serif;
    font-size: clamp(11px, 1.4vw, 17px);
    font-weight: 500;
    letter-spacing: clamp(2px, 0.4vw, 5px);
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
    width: 100%;
    max-width: 860px;
    white-space: normal;
    line-height: 1.4;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    flex: 1;
    min-width: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.85) 100%);
}

.hero-eyebrow::after {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.85) 0%, transparent 100%);
}

.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(34px, 5.5vw, 62px);
    color: #D47A7B;
    margin-bottom: 20px;
    line-height: 1.15;
    overflow: visible;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-content .crown-divider {
    margin: 0 auto 24px auto !important;
}

.hero-description {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 300;
    color: #FAF7F2;
    max-width: 680px;
    margin: 0 auto 30px auto;
    line-height: 1.75;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-text-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #EFEAD9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(197, 160, 89, 0.5);
    padding-bottom: 4px;
}

.hero-text-link:hover {
    color: #C5A059;
    border-color: #C5A059;
    transform: translateX(3px);
}

/* ==========================================================================
   BENEFITS / FOUR POINTS SECTION
   ========================================================================== */
.benefits-container {
    padding: 48px 0;
    margin-bottom: 30px;
    background: rgba(15, 15, 15, 0.03);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.benefits-grid {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 10px 15px;
    position: relative;
    will-change: transform;
}

.benefit-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.1) 0%, #C5A059 50%, rgba(197, 160, 89, 0.1) 100%);
}

.benefit-icon-wrapper {
    font-size: 26px;
    color: #C5A059;
    margin-bottom: 8px;
    line-height: 1;
}

.benefit-title {
    font-size: 13px;
    letter-spacing: 1.2px;
    color: #0F0F0F;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

/* ==========================================================================
   STANDARDIZED BALANCED GRIDS
   ========================================================================== */
.grid-3-col,
.service-3d-carousel-grid,
.difference-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    width: 100%;
}

.grid-2-col,
.service-grid-bottom {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    width: 100%;
}

.process-grid-stable {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    width: 100%;
}

/* ==========================================================================
   CARDS & CHECKLIST CONTAINERS
   ========================================================================== */
.checklist-box,
.service-card {
    background: rgba(250, 244, 238, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 12px;
    padding: 34px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.checklist-box:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.checklist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.5;
}

.check-icon-bg {
    background: rgba(212, 122, 123, 0.12);
    color: #D47A7B;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    border: 1px solid rgba(212, 122, 123, 0.3);
}

/* ==========================================================================
   CONVERSION BANNER
   ========================================================================== */
.cta-banner {
    position: relative;
    background: radial-gradient(circle at center, #261f22 0%, #121112 100%) !important;
    border-top: 2px solid #C5A059 !important;
    border-bottom: 2px solid #C5A059 !important;
    padding: 85px 20px !important;
    text-align: center !important;
    overflow: hidden !important;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6) !important;
    width: 100% !important;
    display: block !important;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.8) 50%, transparent 100%);
}

.cta-banner-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-heading-mask,
.cta-sub-mask {
    overflow: hidden;
    display: block;
}

.cta-banner-heading {
    color: #FFFFFF !important;
    font-family: 'Prata', serif !important;
    font-size: clamp(1.75rem, 3.2vw, 2.45rem) !important;
    letter-spacing: 2px !important;
    line-height: 1.35 !important;
    margin-bottom: 18px !important;
    text-transform: uppercase !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85) !important;
}

.cta-banner-text {
    color: #EFEAD9 !important;
    font-size: 1.15rem !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
    letter-spacing: 0.4px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75) !important;
}

.cta-btn-wrap {
    display: inline-block;
}

.cta-action-btn {
    padding: 15px 34px !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    line-height: 1.2;
    white-space: nowrap;
    transition: all 0.25s ease;
    cursor: pointer;
    text-align: center;
    will-change: transform;
}

.btn-primary-pink {
    background: linear-gradient(135deg, #D47A7B 0%, #B55B5C 100%);
    color: #FFFFFF;
    border: 2px solid #D47A7B;
    box-shadow: 0 6px 15px rgba(181, 91, 92, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary-pink:hover {
    background: linear-gradient(135deg, #DF8687 0%, #C06162 100%);
    border-color: #C5A059;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(197, 160, 89, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary-outline-gold {
    background: linear-gradient(135deg, #FAF7F2 0%, #EFEAD9 100%);
    color: #1C1A1D;
    border: 2px solid #C5A059;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary-outline-gold:hover {
    background: #C5A059;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(197, 160, 89, 0.35);
}

.header-quote-btn {
    padding: 9px 16px !important;
    font-size: 10.5px !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.magnetic-btn {
    will-change: transform;
    transform-style: preserve-3d;
}

/* ==========================================================================
   FLOATING GIFT CARD SIDE TAB
   ========================================================================== */
.floating-gift-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 995;
    background: #0F0F0F;
    color: #FFFFFF;
    border: 1.5px solid #C5A059;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-gift-tab i {
    color: #D47A7B;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.floating-gift-tab span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FAF4EE;
    text-transform: uppercase;
}

.floating-gift-tab:hover {
    background: #1A1A1A;
    transform: translateY(-50%) translateX(-4px);
    box-shadow: -6px 0 22px rgba(197, 160, 89, 0.45);
    border-color: #D47A7B;
}

.floating-gift-tab:hover i {
    transform: scale(1.2) rotate(-8deg);
    color: #C5A059;
}

/* ==========================================================================
   FOOTER (STANDARDIZED 3-COLUMN LAYOUT)
   ========================================================================== */
.main-footer {
    background-color: #0F0F0F;
    color: #FFFFFF;
    padding: 60px 0 25px 0;
    border-top: 4px solid #C5A059;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.footer-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-col-left .brand-logo-img {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 6px 16px rgba(197, 160, 89, 0.5));
}

.footer-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.footer-tagline-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -16px;
    margin-bottom: 24px;
}

.footer-tagline {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(32px, 3vw, 46px);
    color: #C5A059;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    line-height: 1.1;
    white-space: nowrap;
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(197, 160, 89, 0.3);
}

.footer-crown-accent {
    font-size: 22px;
    color: #D47A7B;
    display: inline-block;
    will-change: transform, filter;
    flex-shrink: 0;
}

.footer-crown-left {
    animation: crownPulseLeft 2.4s infinite ease-in-out;
}

.footer-crown-right {
    animation: crownPulseRight 2.4s infinite ease-in-out;
}

@keyframes crownPulseLeft {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 4px rgba(212, 122, 123, 0.4));
        opacity: 0.85;
    }
    50% {
        transform: scale(1.18) rotate(-8deg);
        filter: drop-shadow(0 0 10px #D47A7B) 
                drop-shadow(0 0 20px rgba(212, 122, 123, 0.8)) 
                drop-shadow(0 0 30px rgba(197, 160, 89, 0.5));
        opacity: 1;
    }
}

@keyframes crownPulseRight {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 4px rgba(212, 122, 123, 0.4));
        opacity: 0.85;
    }
    50% {
        transform: scale(1.18) rotate(8deg);
        filter: drop-shadow(0 0 10px #D47A7B) 
                drop-shadow(0 0 20px rgba(212, 122, 123, 0.8)) 
                drop-shadow(0 0 30px rgba(197, 160, 89, 0.5));
        opacity: 1;
    }
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    color: #EFEAD9;
}

.footer-contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-contact-info a {
    color: #EFEAD9;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-info a:hover {
    color: #C5A059;
}

.footer-contact-info i {
    color: #C5A059;
    font-size: 14px;
    width: 16px;
}

.footer-location {
    color: #C5A059;
    font-size: 14px;
    letter-spacing: 0.8px;
    margin: 4px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-location i {
    color: #D47A7B;
    font-size: 14px;
}

.footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    text-align: right;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #EFEAD9;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #C5A059;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #C5A059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #C5A059;
    color: #0F0F0F;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.4);
}

.footer-credit-row {
    margin-top: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 20px;
}

.footer-credit-text {
    font-size: 11px;
    color: #888888;
    margin: 0;
}

.footer-credit-text a {
    color: #C5A059;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit-text a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   GIFT CARD OFF-CANVAS SLIDE-OUT DRAWER (DARK THEMED FORM)
   ========================================================================== */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 520px;
    height: 100vh;
    background-color: #0F0F0F;
    color: #F9F6F0;
    border-left: 2px solid #C5A059;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.85);
    z-index: 2600;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.side-drawer.is-active {
    transform: translateX(0);
}

/* Watermark Logo Background */
.side-drawer#giftCardDrawer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background-image: url('images/logo2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: #141414;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35);
    position: relative;
    z-index: 1;
}

.drawer-eyebrow {
    font-family: 'Prata', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #C5A059;
    text-transform: uppercase;
}

.drawer-title {
    font-size: 24px;
    color: #F9F6F0;
    margin: 4px 0 0 0;
}

.drawer-script {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3em;
    color: #D47A7B;
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: #F9F6F0;
    cursor: pointer;
    line-height: 1;
    transition: color 0.25s ease;
}

.drawer-close-btn:hover {
    color: #C5A059;
}

.drawer-body {
    flex: 1;
    position: relative;
    overflow-y: auto;
    padding: 28px;
    background: transparent;
    z-index: 1;
}

/* Dark Drawer Form Controls */
.side-drawer label {
    color: #D4AF37;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.side-drawer .form-control {
    background-color: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: #FFFFFF;
    border-radius: 8px;
    padding: 12px 14px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.side-drawer .form-control:focus {
    border-color: #C5A059;
    outline: none;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.25);
    background-color: #1A1A1A;
}

.side-drawer textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

.side-drawer .form-control::placeholder {
    color: #777777;
}

/* ==========================================================================
   DECORATIVE ELEMENTS
   ========================================================================== */
.crown-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: #C5A059 !important;
    margin: 15px auto !important;
    width: 100% !important;
    max-width: 250px !important;
}

.crown-divider::before,
.crown-divider::after {
    content: "" !important;
    flex: 1 !important;
    border-bottom: 1px solid #C5A059 !important;
    margin: 0 12px !important;
}

.sparkle-text-effect {
    position: relative;
    display: inline-block;
    padding: 0 16px 4px 6px;
    font-size: 0.95em;
    background: linear-gradient(
        110deg,
        #D47A7B 0%,
        #FFFFFF 35%,
        #F8E7B9 50%,
        #FFFFFF 65%,
        #D47A7B 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldDiamondSparkle 3s ease-in-out infinite;
    will-change: background-position;
    overflow: visible;
}

.sparkle-text-effect::before {
    content: "✦";
    position: absolute;
    top: -2px;
    left: -8px;
    font-size: 14px;
    color: #FFF2A8;
    -webkit-text-fill-color: #FFF2A8;
    animation: twinkleStarA 2.2s infinite ease-in-out;
    pointer-events: none;
}

.sparkle-text-effect::after {
    content: "✦";
    position: absolute;
    top: 4px;
    right: -4px;
    font-size: 11px;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    animation: twinkleStarB 2.2s 1.1s infinite ease-in-out;
    pointer-events: none;
}

@keyframes goldDiamondSparkle {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes twinkleStarA {
    0%, 100% { opacity: 0; transform: scale(0.2) rotate(0deg); }
    40% { opacity: 1; transform: scale(1.2) rotate(45deg); filter: drop-shadow(0 0 6px #FFFFFF); }
    70% { opacity: 0.3; transform: scale(0.7) rotate(90deg); }
}

@keyframes twinkleStarB {
    0%, 100% { opacity: 0; transform: scale(0.2) rotate(0deg); }
    45% { opacity: 1; transform: scale(1.15) rotate(-45deg); filter: drop-shadow(0 0 6px #F8E7B9); }
    75% { opacity: 0.2; transform: scale(0.6) rotate(-90deg); }
}

/* ==========================================================================
   TABLET & MOBILE RESPONSIVE QUERIES
   ========================================================================== */
@media screen and (max-width: 900px) {
    .video-hero {
        min-height: 75vh;
        min-height: 75dvh;
        padding: 120px 0 45px 0;
    }

    .hero-eyebrow {
        letter-spacing: 2px !important;
        font-size: 11px !important;
        max-width: 100% !important;
        margin-bottom: 16px !important;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
        display: none;
    }

    .hero-subtitle {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }

    .hero-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        background-color: #0F0F0F;
        border-top: 1px solid rgba(197, 160, 89, 0.2);
        padding: 20px 0;
        margin-top: 10px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .container-header { 
        flex-direction: row; 
        flex-wrap: wrap;
        gap: 12px; 
        padding: 5px 0;
    }

    .cta-banner {
        padding: 65px 15px !important;
    }

    .cta-banner-heading {
        font-size: 1.55rem !important;
        letter-spacing: 1px !important;
    }

    .cta-banner-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 28px !important;
    }

    .cta-action-btn {
        width: 100% !important;
        max-width: 280px !important;
    }

    .main-footer {
        padding: 45px 0 25px 0 !important;
        overflow: hidden !important;
    }

    .footer-container { 
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;
        justify-content: center !important;
        gap: 24px !important; 
        text-align: center !important; 
        padding: 0 16px !important;
        width: 100% !important;
    }
    
    .footer-col-left,
    .footer-col-center,
    .footer-col-right {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-col-left .brand-logo-img {
        height: 95px !important;
        width: auto !important;
        margin: 0 auto !important;
    }

    .footer-tagline-wrapper {
        margin: 0 auto 10px auto !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-tagline { 
        font-size: clamp(24px, 6.5vw, 34px) !important; 
        gap: 8px !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        max-width: 100% !important;
    }

    .footer-crown-accent {
        font-size: 16px !important;
    }

    .footer-contact-info {
        font-size: 14px !important;
        gap: 6px !important;
    }

    .footer-location {
        font-size: 13px !important;
        margin-top: 6px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .footer-links ul {
        align-items: center !important;
        gap: 10px !important;
    }

    .footer-socials {
        justify-content: center !important;
        margin-top: 8px !important;
    }

    .benefits-container {
        padding: 35px 0;
    }

    .benefits-grid {
        flex-wrap: wrap !important;
        gap: 20px 0 !important;
    }

    .benefit-card {
        flex: 1 1 50% !important;
    }

    .benefit-card:not(:last-child)::after {
        display: none !important;
    }

    .cta-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .cta-row .btn {
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
    }

    .grid-3-col,
    .grid-2-col,
    .process-grid-stable,
    .difference-grid,
    .service-grid-bottom,
    .service-3d-carousel-grid, 
    main.container [style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 10px !important;
    }

    .checklist-box,
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .side-drawer {
        max-width: 100%;
    }

    .floating-gift-tab {
        top: auto;
        bottom: 25px;
        right: 15px;
        transform: none;
        border-radius: 50px;
        border: 1.5px solid #C5A059;
        padding: 10px 16px;
        flex-direction: row;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .floating-gift-tab span {
        writing-mode: horizontal-tb;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .floating-gift-tab:hover {
        transform: translateY(-2px);
    }
}
/* ==========================================================================
   GALLERY PAGE SPECIFIC STYLES
   ========================================================================== */
.gallery-hero {
    padding-top: 190px;
    padding-bottom: 35px;
    text-align: center;
}
.gallery-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 960px;
}
.gallery-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Prata', serif;
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 500;
    letter-spacing: 5px;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 22px;
    width: 100%;
    max-width: 680px;
    white-space: nowrap;
}
.gallery-hero .hero-eyebrow::before,
.gallery-hero .hero-eyebrow::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.8), transparent);
}
.gallery-hero .section-title {
    font-size: clamp(32px, 3.8vw, 44px);
    letter-spacing: 2px;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #0F0F0F;
}
.hero-script-word {
    font-family: 'Great Vibes', cursive;
    font-size: 1.25em;
    color: #D47A7B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 6px;
    vertical-align: -2px;
    line-height: 0.9;
    text-shadow: 0 2px 10px rgba(212, 122, 123, 0.3);
}
.gallery-hero .crown-divider {
    margin: 6px auto 18px auto !important;
}
.gallery-hero .hero-intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    color: #4A4A4A;
    line-height: 1.8;
    max-width: 740px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 35px 0 16px 0;
}
.filter-btn {
    padding: 10px 22px;
    border: 1px solid rgba(197, 160, 89, 0.45);
    background: rgba(255, 255, 255, 0.75);
    color: #1C1A1D;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.filter-btn:hover {
    border-color: #C5A059;
    background: #ffffff;
    color: #C5A059;
    transform: translateY(-2px);
}
.filter-btn.active {
    background: #D47A7B;
    border-color: #D47A7B;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(212, 122, 123, 0.35);
}
.gallery-explore-subtext {
    text-align: center;
    font-size: 13px;
    color: #777777;
    font-style: italic;
    margin-bottom: 35px;
}

.category-intro-banner {
    display: none;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 35px auto;
    background: rgba(250, 244, 238, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 12px;
    padding: 24px 28px;
}
.category-intro-banner h3 {
    font-family: 'Prata', serif;
    font-size: 20px;
    color: #0F0F0F;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.category-intro-banner p {
    font-size: 14px;
    color: #555555;
    line-height: 1.65;
    margin: 0;
}

.gallery-unified-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.photo-card {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.photo-card:hover {
    transform: translateY(-4px);
    border-color: #C5A059;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
}
.photo-card-img-wrap {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #FAF7F2;
}
.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.photo-card:hover img {
    transform: scale(1.03);
}
.photo-card-caption {
    padding: 12px 16px;
    font-size: 12.5px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    background: #ffffff;
}

.ba-pair-card {
    grid-column: span 3;
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.ba-pair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ba-side {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #FAF7F2;
    cursor: pointer;
}
.ba-side img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ba-side:hover img {
    transform: scale(1.02);
}
.ba-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2;
}
.ba-pill.before {
    background: rgba(15, 15, 15, 0.85);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.ba-pill.after {
    background: #D47A7B;
    color: #FFFFFF;
    border: 1px solid #C5A059;
}
.ba-pair-desc {
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    color: #0F0F0F;
    margin-top: 14px;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    border: 1px solid #C5A059;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    object-fit: contain;
    animation: zoomIn 0.25s ease;
}
.lightbox-meta-bar {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #FAF7F2;
    text-align: center;
}
.lightbox-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #C5A059;
    text-transform: uppercase;
}
.lightbox-caption {
    font-family: 'Prata', serif;
    font-size: 15px;
    color: #FAF7F2;
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #FAF7F2;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2010;
}
.lightbox-close:hover {
    color: #C5A059;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 15, 0.75);
    border: 1px solid #C5A059;
    color: #C5A059;
    font-size: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2010;
    transition: all 0.25s ease;
}
.lightbox-nav:hover {
    background: #C5A059;
    color: #0F0F0F;
}
.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

.gallery-cta-banner {
    background: #FAF4EE;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 14px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.gallery-cta-banner h2 {
    font-size: 26px;
    color: #0F0F0F;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.gallery-cta-banner p {
    font-size: 15px;
    color: #4A4A4A;
    max-width: 680px;
    margin: 0 auto 24px auto;
    line-height: 1.7;
}
.gallery-cta-sublink {
    display: block;
    margin-top: 18px;
    font-size: 13.5px;
    color: #666666;
}
.gallery-cta-sublink a {
    color: #C5A059;
    text-decoration: underline;
    font-weight: 600;
}

@keyframes zoomIn {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media screen and (max-width: 900px) {
    .gallery-hero { padding-top: 140px; padding-bottom: 30px; }
    .gallery-hero .hero-eyebrow { font-size: 11px !important; letter-spacing: 2.5px !important; }
    .gallery-hero .section-title { font-size: 28px !important; }
    .hero-script-word { font-size: 38px !important; }
    .gallery-unified-grid { grid-template-columns: 1fr; gap: 16px; }
    .ba-pair-card { grid-column: span 1; padding: 12px; }
    .ba-pair-grid { grid-template-columns: 1fr; gap: 12px; }
    .ba-side img { height: 260px; }
    .photo-card-img-wrap { height: 250px; }
    .lightbox-nav { width: 38px; height: 38px; font-size: 14px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 15px; right: 15px; font-size: 26px; }
}
/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */
.about-hero {
    padding-top: 195px;
    padding-bottom: 70px;
    text-align: center;
}

.about-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
}

.about-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-family: 'Prata', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 500;
    letter-spacing: 5px;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 38px;
    width: 100%;
    max-width: 860px;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.about-hero .section-title {
    font-size: clamp(34px, 4.2vw, 48px);
    letter-spacing: 3px;
    line-height: 1.25;
    margin-bottom: 22px;
    color: #0F0F0F;
}

.hero-script-word {
    font-family: 'Great Vibes', cursive;
    font-size: 1.45em;
    color: #D47A7B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 12px;
    vertical-align: middle;
    line-height: 0.9;
    text-shadow: 0 2px 14px rgba(212, 122, 123, 0.45);
}

.hero-script-difference {
    font-family: 'Great Vibes', cursive;
    font-size: 1.85em;
    color: #D47A7B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 14px;
    vertical-align: -6px;
    line-height: 0.85;
    text-shadow: 0 3px 16px rgba(212, 122, 123, 0.5);
}

.about-hero .crown-divider {
    margin: 0 auto 28px auto !important;
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 75px;
}

.about-image-frame {
    width: 100%;
    height: 580px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #C5A059;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.difference-section-intro {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 45px auto;
}

.difference-heading {
    font-size: clamp(30px, 3.8vw, 42px);
    letter-spacing: 2px;
    color: #0F0F0F;
    margin-bottom: 12px;
    line-height: 1.25;
}

.difference-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 70px;
}

.difference-card {
    background: rgba(250, 244, 238, 0.88);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 12px;
    padding: 34px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #C5A059;
}

.difference-card .benefit-icon-wrapper {
    margin-bottom: 12px;
}

.difference-card .benefit-icon-wrapper i {
    font-size: 30px;
    color: #C5A059;
}

.difference-card h3 {
    font-size: 18px;
    letter-spacing: 1px;
    color: #0F0F0F;
    margin-bottom: 6px;
}

.difference-card p {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .about-hero {
        padding-top: 140px;
        padding-bottom: 50px;
    }
    .about-hero .hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
        gap: 12px !important;
        white-space: normal !important;
        margin-bottom: 26px !important;
    }
    .about-hero .section-title {
        font-size: 28px !important;
        line-height: 1.35 !important;
    }
    .hero-script-word {
        font-size: 46px !important;
        display: inline-block !important;
        padding: 0 4px !important;
    }
    .difference-heading {
        font-size: 26px !important;
        line-height: 1.35 !important;
    }
    .hero-script-difference {
        font-size: clamp(56px, 12vw, 70px) !important;
        display: inline-block !important;
        padding: 0 6px !important;
        vertical-align: middle !important;
    }
    .about-split-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .about-image-frame {
        height: 350px !important;
    }
    .difference-grid-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
}
/* ==========================================================================
   INDUSTRY PARTNERS PAGE SPECIFIC STYLES
   ========================================================================== */
.partner-video-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 190px 0 85px 0;
    text-align: center;
}

.partner-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.partner-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 0.65) 0%, rgba(15, 15, 15, 0.88) 100%);
    z-index: 2;
}

.partner-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-hero-content .hero-eyebrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
    font-family: 'Prata', serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 5.5px !important;
    color: #C5A059 !important;
    text-transform: uppercase !important;
    margin-bottom: 30px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
    width: 100% !important;
    max-width: 720px !important;
    white-space: nowrap !important;
}

.partner-hero-content .hero-eyebrow::before,
.partner-hero-content .hero-eyebrow::after {
    content: "" !important;
    flex: 1 1 auto !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.85) 100%) !important;
}

.partner-hero-content .hero-eyebrow::after {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.85) 0%, transparent 100%) !important;
}

.partner-hero-content .section-title {
    font-size: clamp(30px, 3.8vw, 46px) !important;
    letter-spacing: 2px !important;
    line-height: 1.35 !important;
    margin-bottom: 20px !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    max-width: 960px !important;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8) !important;
}

.hero-title-line {
    display: block;
}

.partner-hero-content .hero-script-word {
    font-family: 'Great Vibes', cursive !important;
    font-size: 1.55em !important;
    color: #D47A7B !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: inline-block !important;
    padding: 0 8px !important;
    vertical-align: -4px !important;
    line-height: 0.9 !important;
    text-shadow: 0 2px 14px rgba(212, 122, 123, 0.45) !important;
}

.partner-hero-content .crown-divider {
    margin: 6px auto 22px auto !important;
}

.partner-hero-content .hero-description {
    max-width: 740px !important;
    margin: 0 auto 30px auto !important;
    font-size: 16px !important;
    color: #FAF7F2 !important;
    line-height: 1.85 !important;
    font-weight: 300 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85) !important;
}

.partner-hero-content .serving-sub {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    color: #F7D5D6 !important;
    text-transform: uppercase !important;
    margin-top: 22px !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8) !important;
}

.partner-intro-block {
    text-align: center;
    max-width: 860px;
    margin: 55px auto 65px auto;
}
.partner-intro-block h2 {
    font-size: 28px;
    color: #0F0F0F;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.partner-intro-block p {
    font-size: 15.5px;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 14px;
}

.work-with-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 75px;
}
.work-card {
    background: rgba(250, 244, 238, 0.88);
    border: 1px solid rgba(197, 160, 89, 0.38);
    border-radius: 12px;
    padding: 34px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-color: #C5A059;
}
.work-card-icon {
    font-size: 30px;
    color: #C5A059;
    margin-bottom: 14px;
}
.work-card h3 {
    font-size: 19px;
    color: #0F0F0F;
    margin-bottom: 8px;
}
.work-card p {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.7;
    margin: 0;
}

.services-accordions {
    max-width: 960px;
    margin: 0 auto 50px auto;
}
.partner-service-item {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.partner-service-item:hover {
    border-color: #C5A059;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.partner-service-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1C1A1D;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.partner-service-btn i {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    color: #C5A059;
    font-size: 13px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.partner-service-item.active .partner-service-btn i {
    transform: rotate(45deg);
    background: #C5A059;
    color: #fff;
    border-color: #C5A059;
}
.partner-service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease-out, padding 0.45s ease-out;
    padding: 0 24px;
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.7;
}
.partner-service-item.active .partner-service-content {
    max-height: 600px;
    padding: 0 24px 24px 24px;
}
.partner-service-content ul {
    margin: 12px 0;
    padding-left: 18px;
}
.partner-service-content li {
    margin-bottom: 6px;
}

.customizable-section {
    background: rgba(250, 244, 238, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 14px;
    padding: 45px 35px;
    margin: 70px 0;
    text-align: center;
}
.customizable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
    text-align: left;
    max-width: 860px;
    margin: 30px auto 20px auto;
}
.customizable-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #2D2D2D;
}
.customizable-item i {
    color: #C5A059;
    font-size: 14px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 35px;
    margin-bottom: 25px;
}
.pricing-option-card {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 12px;
    padding: 38px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.pricing-badge {
    font-size: 12px;
    color: #C5A059;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.partner-offers-wrap {
    background-color: #F8F1EA;
    border-radius: 16px;
    padding: 60px 40px;
    margin: 75px 0;
    text-align: center;
}
.offers-4-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0 25px 0;
    text-align: left;
}
.offer-card {
    background: #FAF4EE;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 10px;
    padding: 26px 22px;
}
.offer-card h4 {
    font-family: 'Prata', serif;
    font-size: 18px;
    color: #0F0F0F;
    margin-bottom: 8px;
}
.offer-card .offer-highlight {
    font-size: 14.5px;
    font-weight: 600;
    color: #C5A059;
    margin-bottom: 6px;
}
.offer-card p {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}
.offer-details-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
    text-align: justify;
    max-width: 900px;
    margin: 20px auto 0 auto;
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    padding-top: 16px;
}

.preferred-exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 35px 0 70px 0;
}
.preferred-box {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 10px;
    padding: 24px 18px;
    text-align: center;
}
.preferred-box i {
    font-size: 24px;
    color: #C5A059;
    margin-bottom: 12px;
}
.preferred-box h4 {
    font-family: 'Prata', serif;
    font-size: 16px;
    color: #0F0F0F;
    margin-bottom: 8px;
}
.preferred-box p {
    font-size: 13px;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

.enhancements-container {
    margin: 60px 0;
    padding: 40px 30px;
    text-align: center;
    background-color: #F8F1EA;
    border-radius: 14px;
}
.enhancements-balanced-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 25px auto 20px auto;
    max-width: 1050px;
}
.enhancement-pill-card {
    flex: 0 1 calc(25% - 16px);
    min-width: 190px;
    max-width: 240px;
    background: #FAF4EE;
    padding: 16px 14px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2D2D2D;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.enhancement-pill-card:hover {
    transform: translateY(-3px);
    border-color: #C5A059;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.2);
}
.enhancement-pill-card i {
    font-size: 22px;
    color: #C5A059;
    margin-bottom: 4px;
}

.partner-form-section {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 16px;
    padding: 55px 45px;
    margin: 75px auto;
    max-width: 900px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 18px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-control {
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    background: #FAF7F2;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: #C5A059;
    background: #fff;
}
textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-success-box {
    display: none;
    background: #FAF4EE;
    border: 1px solid #C5A059;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    margin-top: 20px;
}
.form-success-box i {
    font-size: 38px;
    color: #C5A059;
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .partner-video-hero { min-height: 70vh !important; padding: 135px 0 55px 0 !important; }
    .partner-hero-content .hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
        gap: 12px !important;
        max-width: 90% !important;
        margin-bottom: 22px !important;
    }
    .partner-hero-content .section-title { font-size: 26px !important; line-height: 1.35 !important; }
    .partner-hero-content .hero-script-word { font-size: 42px !important; vertical-align: middle !important; }
    .work-with-grid, .customizable-grid, .pricing-cards-grid, .offers-4-grid, .form-grid-2 {
        grid-template-columns: 1fr !important;
    }
    .partner-form-section { padding: 35px 20px; }
    .enhancement-pill-card { flex: 1 1 100% !important; max-width: 100% !important; }
}
/* ==========================================================================
   OUR PROCESS & FAQ PAGE SPECIFIC STYLES
   ========================================================================== */
.process-hero {
    padding-top: 195px;
    padding-bottom: 70px;
    text-align: center;
}
.process-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
}
.process-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-family: 'Prata', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 500;
    letter-spacing: 5px;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 38px;
    width: 100%;
    max-width: 860px;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.process-hero .section-title {
    font-size: clamp(34px, 4.2vw, 48px);
    letter-spacing: 3px;
    line-height: 1.25;
    margin-bottom: 22px;
    color: #0F0F0F;
}
.hero-script-word {
    font-family: 'Great Vibes', cursive;
    font-size: 1.45em;
    color: #D47A7B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 12px;
    vertical-align: middle;
    line-height: 0.9;
    text-shadow: 0 2px 14px rgba(212, 122, 123, 0.45);
}
.process-hero .crown-divider {
    margin: 0 auto 24px auto !important;
}
.process-hero .hero-description {
    max-width: 740px;
    margin: 0 auto 30px auto;
    font-size: 15.5px;
    color: #4A4A4A;
    line-height: 1.8;
    font-weight: 400;
}

/* 4-STEP PROCESS GRID */
.process-intro-block {
    text-align: center;
    margin-bottom: 40px;
}
.process-grid-stable {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 75px;
}
.process-step-box {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    background: rgba(250, 244, 238, 0.88);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 12px;
    padding: 32px 20px 28px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.process-step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C5A059, #D47A7B);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.process-step-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #C5A059;
}
.process-step-box:hover::before {
    opacity: 1;
}
.process-number {
    font-size: 38px;
    color: #C5A059;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.process-step-title {
    font-size: 16px;
    letter-spacing: 0.8px;
    color: #0F0F0F;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.process-step-text {
    font-size: 13.5px;
    color: #4A4A4A;
    line-height: 1.65;
    margin-bottom: 16px;
}

/* FAQ SECTIONS & ACCORDION */
.faq-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.faq-category-title {
    font-family: 'Prata', serif;
    font-size: 20px;
    color: #0F0F0F;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 45px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-category-title i {
    color: #C5A059;
    font-size: 16px;
}
.faq-accordion-item {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion-item:hover {
    border-color: #C5A059;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1C1A1D;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question-btn:hover {
    color: #C5A059;
}
.faq-question-btn i {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    color: #C5A059;
    font-size: 13px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.faq-accordion-item.active .faq-question-btn i {
    transform: rotate(45deg);
    background: #C5A059;
    color: #fff;
    border-color: #C5A059;
}
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease-out, padding 0.45s ease-out;
    padding: 0 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.7;
}
.faq-accordion-item.active .faq-answer-panel {
    max-height: 900px;
    padding: 0 22px 22px 22px;
}
.faq-answer-panel ul {
    margin: 12px 0 12px 20px;
    padding: 0;
}
.faq-answer-panel li {
    margin-bottom: 6px;
    position: relative;
    list-style: none;
    padding-left: 18px;
}
.faq-answer-panel li::before {
    content: '•';
    color: #C5A059;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* STILL HAVE QUESTIONS CALLOUT */
.support-callout-box {
    background: #FAF4EE;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.support-callout-title {
    font-size: 22px;
    letter-spacing: 1px;
    color: #0F0F0F;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.support-callout-sub {
    font-family: 'Prata', serif;
    font-size: 17px;
    color: #C5A059;
    font-style: italic;
    margin-bottom: 14px;
}
.support-callout-text {
    font-size: 14.5px;
    color: #4A4A4A;
    max-width: 680px;
    margin: 0 auto 24px auto;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .process-hero {
        padding-top: 140px;
        padding-bottom: 50px;
    }
    .process-hero .hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
        gap: 12px !important;
        white-space: normal !important;
        margin-bottom: 26px !important;
    }
    .process-hero .section-title {
        font-size: 28px !important;
        line-height: 1.35 !important;
    }
    .hero-script-word {
        font-size: 46px !important;
        display: inline-block !important;
        padding: 0 4px !important;
    }
    .process-grid-stable {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .process-grid-stable {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   REQUEST A QUOTE (LET'S CONNECT) PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-hero {
    padding-top: 195px;
    padding-bottom: 50px;
    text-align: center;
}
.contact-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
}
.contact-hero .hero-eyebrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
    font-family: 'Prata', serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 5.5px !important;
    color: #C5A059 !important;
    text-transform: uppercase !important;
    margin-bottom: 28px !important;
    text-shadow: none !important;
    width: 100% !important;
    max-width: 720px !important;
    white-space: nowrap !important;
}
.contact-hero .hero-eyebrow::before,
.contact-hero .hero-eyebrow::after {
    content: "" !important;
    flex: 1 1 auto !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.85) 100%) !important;
}
.contact-hero .hero-eyebrow::after {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.85) 0%, transparent 100%) !important;
}
.contact-hero .section-title {
    font-size: clamp(34px, 4.2vw, 50px);
    letter-spacing: 2.5px;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #0F0F0F;
}
.contact-hero .hero-script-word {
    font-family: 'Great Vibes', cursive !important;
    font-size: 1.6em !important;
    color: #D47A7B !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: inline-block !important;
    padding: 0 10px !important;
    vertical-align: -6px !important;
    line-height: 0.9 !important;
    text-shadow: 0 2px 14px rgba(212, 122, 123, 0.35) !important;
}
.contact-hero .hero-subtitle {
    font-family: 'Prata', serif;
    font-style: italic;
    font-size: 22px;
    color: #C5A059;
    margin-bottom: 18px;
}

.contact-top-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}
.contact-info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}
.contact-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FAF4EE;
    border: 1px solid rgba(197, 160, 89, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #C5A059;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.contact-info-item:hover .contact-icon-circle {
    background: #ffffff;
    border-color: #D47A7B;
    color: #D47A7B;
    transform: scale(1.05);
}
.contact-text-block h4 {
    font-family: 'Prata', serif;
    font-size: 15px;
    color: #0F0F0F;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-text-block p, .contact-text-block a {
    font-family: 'Prata', serif;
    font-size: 17px;
    color: #333333;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}
.contact-text-block a:hover {
    color: #D47A7B;
}

.social-follow-block {
    text-align: left;
    margin-top: 25px;
    padding-left: 5px;
}
.social-follow-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0F0F0F;
    margin-bottom: 14px;
}
.contact-social-row {
    display: flex;
    gap: 12px;
}
.contact-social-icon {
    width: 44px;
    height: 44px;
    background: #D47A7B;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-social-icon:hover {
    background: #C5A059;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.35);
}

.contact-image-frame {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.contact-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* INTAKE FORM CONTAINER */
.quote-form-container {
    background: #FAF4EE;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.04);
    margin-bottom: 40px;
}
.quote-form-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 35px auto;
}
.quote-form-header h3 {
    font-family: 'Prata', serif;
    font-size: 28px;
    color: #0F0F0F;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.quote-form-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.7;
    margin: 12px 0 0 0;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 18px;
}
.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-control {
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: #C5A059;
    background: #ffffff;
}
textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-success-box {
    display: none;
    background: #ffffff;
    border: 1px solid #C5A059;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    margin-top: 20px;
}
.form-success-box i {
    font-size: 38px;
    color: #C5A059;
    margin-bottom: 15px;
}

/* BOTTOM QUESTION BLOCK */
.quote-bottom-question-box {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    margin-bottom: 50px;
}
.quote-bottom-question-box h4 {
    font-family: 'Prata', serif;
    font-size: 20px;
    color: #0F0F0F;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.quote-bottom-question-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .contact-hero { padding-top: 140px; padding-bottom: 35px; }
    .contact-hero .hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
        gap: 12px !important;
        white-space: normal !important;
        margin-bottom: 20px !important;
    }
    .contact-hero .section-title { font-size: 28px !important; line-height: 1.35 !important; }
    .contact-hero .hero-script-word { font-size: 44px !important; }
    .contact-top-grid, .form-grid-2 { grid-template-columns: 1fr; gap: 20px; }
    .contact-image-frame { min-height: 350px; }
    .quote-form-container { padding: 30px 20px; }
    .social-follow-block { text-align: center; padding-left: 0; }
    .contact-social-row { justify-content: center; }
}
/* ==========================================================================
   COMMERCIAL CLEANING PAGE SPECIFIC STYLES
   ========================================================================== */
.commercial-hero {
    position: relative;
    background-image: url('images/gallery/commercialhero.png');
    background-size: cover;
    background-position: center;
    padding: 195px 0 100px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
.commercial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,15,0.72) 0%, rgba(15,15,15,0.86) 100%);
    z-index: 1;
}
.commercial-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
}

.commercial-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-family: 'Prata', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 500;
    letter-spacing: 5px;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 38px;
    width: 100%;
    max-width: 840px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.commercial-hero .section-title {
    font-size: clamp(30px, 3.8vw, 44px);
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 26px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-script-word {
    font-family: 'Great Vibes', cursive;
    font-size: 1.45em;
    color: #D47A7B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 12px;
    vertical-align: middle;
    line-height: 0.9;
    text-shadow: 0 2px 14px rgba(212, 122, 123, 0.45);
}

.commercial-hero .crown-divider {
    margin: 0 auto 28px auto !important;
}

.commercial-hero .hero-description {
    max-width: 780px;
    margin: 0 auto;
    font-size: 15.5px;
    color: #FAF7F2;
    line-height: 1.85;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

.service-intro-block {
    text-align: center;
    max-width: 820px;
    margin: 55px auto 35px auto;
}
.service-intro-lead {
    font-size: 16px;
    font-weight: 500;
    color: #1C1A1D;
    line-height: 1.6;
}

.checklist-note-wrapper {
    margin: 25px auto 50px auto;
    max-width: 900px;
    text-align: center;
}
.checklist-main-note {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 8px;
}
.checklist-privacy-note {
    font-size: 12.5px;
    color: #666666;
    line-height: 1.6;
    font-style: italic;
}

.enhancements-container {
    margin-top: 50px;
    margin-bottom: 70px;
    padding: 40px 30px;
}
.enhancements-balanced-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}
.enhancement-pill-card {
    flex: 0 1 calc(20% - 16px);
    min-width: 190px;
    max-width: 220px;
    background: #FAF4EE;
    padding: 16px 14px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2D2D2D;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
}
.enhancement-pill-card:hover {
    transform: translateY(-3px);
    border-color: #C5A059;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.2);
}
.enhancement-pill-card i {
    font-size: 22px;
    color: #C5A059;
    margin-bottom: 4px;
}

.custom-query-box {
    background: rgba(255, 255, 255, 0.65);
    border: 1px dashed rgba(197, 160, 89, 0.6);
    border-radius: 10px;
    padding: 22px 20px;
    max-width: 780px;
    margin: 28px auto 15px auto;
}

@media (max-width: 900px) {
    .commercial-hero {
        padding: 140px 0 70px 0 !important;
    }
    .commercial-hero .hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
        gap: 12px !important;
        white-space: normal !important;
        margin-bottom: 26px !important;
    }
    .commercial-hero .section-title {
        font-size: 26px !important;
        line-height: 1.35 !important;
        margin-bottom: 20px !important;
    }
    .hero-script-word {
        font-size: 46px !important;
        display: inline-block !important;
        padding: 0 4px !important;
    }
    .enhancement-pill-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}
/* ==========================================================================
   RESIDENTIAL CLEANING SERVICES PAGE SPECIFIC STYLES
   ========================================================================== */
.home-services-hero {
    position: relative;
    background-image: url('images/gallery/homeserviceshero.png');
    background-size: cover;
    background-position: center;
    padding: 195px 0 100px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
.home-services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,15,0.72) 0%, rgba(15,15,15,0.85) 100%);
    z-index: 1;
}
.home-services-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
}

.home-services-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-family: 'Prata', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 500;
    letter-spacing: 5px;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 38px;
    width: 100%;
    max-width: 820px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.home-services-hero .section-title {
    font-size: clamp(30px, 3.8vw, 44px);
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 26px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-script-word {
    font-family: 'Great Vibes', cursive;
    font-size: 1.45em;
    color: #D47A7B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 12px;
    vertical-align: middle;
    line-height: 0.9;
    text-shadow: 0 2px 14px rgba(212, 122, 123, 0.45);
}

.home-services-hero .crown-divider {
    margin: 0 auto 28px auto !important;
}

.home-services-hero .hero-description {
    max-width: 660px;
    margin: 0 auto;
    font-size: 15.5px;
    color: #FAF7F2;
    line-height: 1.85;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

.service-tabs-wrapper {
    margin-top: 65px;
    margin-bottom: 50px;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.tab-btn {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 14px 34px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tab-btn:hover {
    border-color: #C5A059;
    color: #C5A059;
}
.tab-btn.active {
    background: #C5A059;
    color: #fff;
    border-color: #C5A059;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}
.tab-pane {
    display: none;
    animation: fadeIn 0.45s ease forwards;
}
.tab-pane.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-intro-block {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 35px auto;
}
.service-intro-lead {
    font-size: 16px;
    font-weight: 500;
    color: #1C1A1D;
    line-height: 1.6;
    margin-bottom: 8px;
}
.service-intro-note {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    font-style: italic;
}

.balanced-5-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
}
.balanced-5-card-grid .checklist-box {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 360px;
}

.deep-clean-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.service-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
.service-split-image {
    width: 100%;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.service-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tab-inline-enhancement {
    background: #FAF4EE;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 12px;
    padding: 26px 24px;
    text-align: center;
    margin: 30px auto 40px auto;
    max-width: 820px;
}

.enhancements-container {
    margin-top: 65px;
    margin-bottom: 70px;
    padding: 40px 30px;
}
.enhancements-balanced-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}
.enhancement-pill-card {
    flex: 0 1 calc(33.333% - 16px);
    min-width: 200px;
    max-width: 300px;
    background: #FAF4EE;
    padding: 16px 14px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2D2D2D;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
}
.enhancement-pill-card:hover {
    transform: translateY(-3px);
    border-color: #C5A059;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.2);
}
.enhancement-pill-card i {
    font-size: 22px;
    color: #C5A059;
    margin-bottom: 4px;
}

.custom-query-box {
    background: rgba(255, 255, 255, 0.65);
    border: 1px dashed rgba(197, 160, 89, 0.6);
    border-radius: 10px;
    padding: 22px 20px;
    max-width: 780px;
    margin: 28px auto 20px auto;
}

@media (max-width: 900px) {
    .home-services-hero {
        padding: 140px 0 70px 0 !important;
    }
    .home-services-hero .hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
        gap: 12px !important;
        white-space: normal !important;
        margin-bottom: 26px !important;
    }
    .home-services-hero .section-title {
        font-size: 26px !important;
        line-height: 1.35 !important;
        margin-bottom: 20px !important;
    }
    .hero-script-word {
        font-size: 46px !important;
        display: inline-block !important;
        padding: 0 4px !important;
    }
    .service-tabs-wrapper {
        margin-top: 45px;
        margin-bottom: 35px;
    }
    .service-split-layout {
        grid-template-columns: 1fr !important;
    }
    .service-split-image {
        height: 340px !important;
    }
    .deep-clean-grid {
        grid-template-columns: 1fr !important;
    }
    .balanced-5-card-grid .checklist-box,
    .enhancement-pill-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 520px) {
    .service-tabs {
        gap: 10px;
    }
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}
/* ==========================================================================
   SERVICES OVERVIEW PAGE SPECIFIC STYLES
   ========================================================================== */
.services-hero {
    position: relative;
    background-image: url('images/gallery/livingroom/livingroom5.png');
    background-size: cover;
    background-position: center;
    padding: 210px 0 90px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,15,0.75) 0%, rgba(15,15,15,0.85) 100%);
    z-index: 1;
}
.services-hero .container {
    position: relative;
    z-index: 2;
}
.services-hero .section-title, 
.services-hero .hero-description {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-script-word {
    font-family: 'Great Vibes', cursive;
    font-size: 1.55em;
    color: #D47A7B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 10px;
    vertical-align: middle;
    line-height: 0.9;
    text-shadow: 0 2px 14px rgba(212, 122, 123, 0.45);
}

.service-grid-even {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}
.service-card {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    background: rgba(250, 244, 238, 0.88);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 12px;
    padding: 35px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C5A059, #D47A7B);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(197, 160, 89, 0.3);
    border-color: #C5A059;
    background: #ffffff;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card-icon {
    font-size: 34px;
    color: #C5A059;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-icon {
    transform: scale(1.15) rotate(5deg);
}
.category-heading {
    font-size: 28px;
    color: #0F0F0F;
    text-align: center;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    margin-top: 50px;
}

@media screen and (max-width: 900px) {
    .services-hero .section-title {
        font-size: 28px !important;
        line-height: 1.35 !important;
    }
    .hero-script-word {
        font-size: 50px !important;
        display: inline-block !important;
        padding: 0 4px !important;
    }
    .service-grid-even {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 10px !important;
    }
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
/* ==========================================================================
   SPECIALTY CLEANING SERVICES PAGE SPECIFIC STYLES
   ========================================================================== */
.specialty-hero {
    position: relative;
    background-image: url('images/gallery/specialtyserviceshero.png');
    background-size: cover;
    background-position: center;
    padding: 195px 0 100px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
.specialty-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,15,0.72) 0%, rgba(15,15,15,0.86) 100%);
    z-index: 1;
}
.specialty-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
}

.specialty-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-family: 'Prata', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 500;
    letter-spacing: 5px;
    color: #C5A059;
    text-transform: uppercase;
    margin-bottom: 38px;
    width: 100%;
    max-width: 840px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.specialty-hero .section-title {
    font-size: clamp(30px, 3.8vw, 44px);
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 26px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-script-word {
    font-family: 'Great Vibes', cursive;
    font-size: 1.45em;
    color: #D47A7B;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 12px;
    vertical-align: middle;
    line-height: 0.9;
    text-shadow: 0 2px 14px rgba(212, 122, 123, 0.45);
}

.specialty-hero .crown-divider {
    margin: 0 auto 28px auto !important;
}

.specialty-hero .hero-description {
    max-width: 760px;
    margin: 0 auto 16px auto;
    font-size: 15.5px;
    color: #FAF7F2;
    line-height: 1.85;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

.specialty-hero .trust-statement {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #F7D5D6;
    text-transform: uppercase;
}

.service-tabs-wrapper {
    margin-top: 65px;
    margin-bottom: 50px;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.tab-btn:hover {
    border-color: #C5A059;
    color: #C5A059;
}

.tab-btn.active {
    background: #C5A059;
    color: #fff;
    border-color: #C5A059;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.45s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-intro-block {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 35px auto;
}

.service-intro-lead {
    font-size: 16px;
    font-weight: 500;
    color: #1C1A1D;
    line-height: 1.6;
    margin-bottom: 8px;
}

.service-intro-note {
    font-size: 14px;
    color: #C5A059;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balanced-5-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
}

.balanced-5-card-grid .checklist-box {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 360px;
}

.enhancements-container {
    margin-top: 65px;
    margin-bottom: 70px;
    padding: 40px 30px;
}

.enhancements-balanced-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.enhancement-pill-card {
    flex: 0 1 calc(25% - 16px);
    min-width: 190px;
    max-width: 240px;
    background: #FAF4EE;
    padding: 16px 14px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2D2D2D;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
}

.enhancement-pill-card:hover {
    transform: translateY(-3px);
    border-color: #C5A059;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.2);
}

.enhancement-pill-card i {
    font-size: 22px;
    color: #C5A059;
    margin-bottom: 4px;
}

.custom-query-box {
    background: rgba(255, 255, 255, 0.65);
    border: 1px dashed rgba(197, 160, 89, 0.6);
    border-radius: 10px;
    padding: 22px 20px;
    max-width: 780px;
    margin: 28px auto 20px auto;
}

@media (max-width: 900px) {
    .specialty-hero {
        padding: 140px 0 70px 0 !important;
    }
    .specialty-hero .hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
        gap: 12px !important;
        white-space: normal !important;
        margin-bottom: 26px !important;
    }
    .specialty-hero .section-title {
        font-size: 26px !important;
        line-height: 1.35 !important;
        margin-bottom: 20px !important;
    }
    .hero-script-word {
        font-size: 46px !important;
        display: inline-block !important;
        padding: 0 4px !important;
    }
    .service-tabs-wrapper {
        margin-top: 45px;
        margin-bottom: 35px;
    }
    .service-tabs {
        gap: 10px;
    }
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    .balanced-5-card-grid .checklist-box,
    .enhancement-pill-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}
/* Dark Theme Modal / Drawer with Logo Watermark */
.side-drawer#giftCardDrawer {
    background-color: #0F0F0F;
    color: #F9F6F0;
    border-left: 1px solid rgba(197, 160, 89, 0.3);
    position: relative;
    overflow: hidden; /* Keeps the watermark neatly contained */
}

/* Watermark Layer */
.side-drawer#giftCardDrawer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background-image: url('images/logo2.png'); /* Adjust path if your image folder differs */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.04; /* Ultra-subtle 4% watermark transparency */
    pointer-events: none; /* Ensures clicks pass right through it to form fields */
    z-index: 0;
}

/* Ensure form body sits above the watermark layer */
.side-drawer .drawer-header,
.side-drawer .drawer-body {
    position: relative;
    z-index: 1;
}

/* Form Controls Inside Dark Drawer */
.side-drawer label {
    color: #D4AF37; /* Warm Gold */
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.side-drawer .form-control {
    background-color: rgba(26, 26, 26, 0.95); /* Slight transparency so watermark peeks through subtly */
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: #FFFFFF;
    border-radius: 8px;
    padding: 12px 14px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.side-drawer .form-control:focus {
    border-color: #C5A059;
    outline: none;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.25);
}

.side-drawer textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

.side-drawer .form-control::placeholder {
    color: #777777;
}
.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 520px;
    height: 100vh;
    background-color: #0F0F0F;
    color: #F9F6F0;
    border-left: 2px solid #C5A059;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.85);
    z-index: 2600;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* THIS WAS THE MISSING PIECE CAUSING IT NOT TO SLIDE OUT */
.side-drawer.is-active {
    transform: translateX(0) !important;
}
// --- 5. GIFT CARD OFF-CANVAS SLIDE-OUT DRAWER ---
    const giftDrawer = document.getElementById('giftCardDrawer');
    const giftBackdrop = document.getElementById('giftCardBackdrop');
    const closeDrawerBtn = document.getElementById('closeDrawerBtn');

    function openGiftDrawer(e) {
        if (e) e.preventDefault();
        if (giftDrawer) giftDrawer.classList.add('is-active');
        if (giftBackdrop) giftBackdrop.classList.add('is-active');
        if (giftDrawer) giftDrawer.setAttribute('aria-hidden', 'false');
        document.body.style.overflow = 'hidden';
    }

    function closeGiftDrawer() {
        if (giftDrawer) giftDrawer.classList.remove('is-active');
        if (giftBackdrop) giftBackdrop.classList.remove('is-active');
        if (giftDrawer) giftDrawer.setAttribute('aria-hidden', 'true');
        document.body.style.overflow = '';
    }

    // Bind to all gift card buttons safely
    const giftBtns = document.querySelectorAll('.open-gift-card-btn');
    giftBtns.forEach(btn => {
        btn.addEventListener('click', openGiftDrawer);
    });

    if (closeDrawerBtn) closeDrawerBtn.addEventListener('click', closeGiftDrawer);
    if (giftBackdrop) giftBackdrop.addEventListener('click', closeGiftDrawer);
    /* ==========================================================================
   FINAL OVERRIDE FOR GIFT CARD SIDE DRAWER
   ========================================================================== */
.side-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 520px !important;
    height: 100vh !important;
    background-color: #0F0F0F !important;
    color: #F9F6F0 !important;
    border-left: 2px solid #C5A059 !important;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.85) !important;
    z-index: 2600 !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    visibility: visible !important;
}

.side-drawer.is-active {
    transform: translateX(0) !important;
}

.drawer-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(15, 15, 15, 0.75) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 2500 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

.drawer-backdrop.is-active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Watermark Background */
.side-drawer#giftCardDrawer::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 320px !important;
    height: 320px !important;
    background-image: url('images/logo2.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    opacity: 0.04 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.side-drawer .drawer-header,
.side-drawer .drawer-body {
    position: relative !important;
    z-index: 1 !important;
}

.side-drawer .drawer-body {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 28px !important;
    background: transparent !important;
}

.side-drawer label {
    color: #D4AF37 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
    display: block !important;
    font-weight: 600 !important;
}

.side-drawer .form-control {
    background-color: rgba(26, 26, 26, 0.95) !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
    color: #FFFFFF !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
}

.side-drawer .form-control:focus {
    border-color: #C5A059 !important;
    outline: none !important;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.25) !important;
}
/* ==========================================================================
   FINAL POLISHED GIFT CARD DRAWER STYLES & WATERMARK
   ========================================================================== */
.side-drawer#giftCardDrawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 480px !important;
    height: 100vh !important;
    background-color: #0F0F0F !important;
    color: #F9F6F0 !important;
    border-left: 2px solid #C5A059 !important;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.85) !important;
    z-index: 2600 !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.side-drawer#giftCardDrawer.is-active {
    transform: translateX(0) !important;
}

.drawer-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(15, 15, 15, 0.75) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 2500 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

.drawer-backdrop.is-active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Enhanced Logo Watermark (12% Opacity for Clearer Visibility) */
.side-drawer#giftCardDrawer::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 340px !important;
    height: 340px !important;
    background-image: url('images/logo2.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    opacity: 0.12 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.side-drawer .drawer-header {
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 22px 20px !important;
    background: #141414 !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35) !important;
}

.side-drawer .drawer-body {
    position: relative !important;
    z-index: 1 !important;
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 22px 24px !important;
    background: transparent !important;
}

.side-drawer label {
    color: #D4AF37 !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
    display: block !important;
    font-weight: 600 !important;
}

.side-drawer .form-control {
    background-color: rgba(26, 26, 26, 0.92) !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
    color: #FFFFFF !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13.5px !important;
}

.side-drawer .form-control:focus {
    border-color: #C5A059 !important;
    outline: none !important;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.25) !important;
    background-color: #1A1A1A !important;
}

.side-drawer textarea.form-control {
    min-height: 75px !important;
    resize: vertical !important;
}
/* ==========================================================================
   GIFT CARD DRAWER & PINK ACCENT STYLING (SINGLE WATERMARK)
   ========================================================================== */
.side-drawer#giftCardDrawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 480px !important;
    height: 100vh !important;
    background-color: #0F0F0F !important;
    color: #F9F6F0 !important;
    border-left: 2px solid #C5A059 !important;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.85) !important;
    z-index: 2600 !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.side-drawer#giftCardDrawer.is-active {
    transform: translateX(0) !important;
}

/* Single Clean Watermark Logo Background (12% Opacity) */
.side-drawer#giftCardDrawer::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 340px !important;
    height: 340px !important;
    background-image: url('images/logo2.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    opacity: 0.12 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.side-drawer .drawer-header {
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 22px 20px !important;
    background: #141414 !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35) !important;
}

.side-drawer .drawer-eyebrow {
    font-family: 'Prata', serif !important;
    font-size: 10.5px !important;
    letter-spacing: 3px !important;
    color: #C5A059 !important;
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 2px !important;
}

.side-drawer .drawer-title {
    font-size: 22px !important;
    color: #F9F6F0 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.side-drawer .drawer-script {
    font-family: 'Great Vibes', cursive !important;
    font-size: 1.35em !important;
    color: #D47A7B !important;
}

.side-drawer .drawer-body {
    position: relative !important;
    z-index: 1 !important;
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 22px 24px !important;
    background: transparent !important;
}

.side-drawer label {
    color: #D4AF37 !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
    display: block !important;
    font-weight: 600 !important;
}

/* Pink Input Borders (#D47A7B) */
.side-drawer .form-control {
    background-color: rgba(26, 26, 26, 0.92) !important;
    border: 1px solid rgba(212, 122, 123, 0.5) !important;
    color: #FFFFFF !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13.5px !important;
}

.side-drawer .form-control:focus {
    border-color: #D47A7B !important;
    outline: none !important;
    box-shadow: 0 0 8px rgba(212, 122, 123, 0.3) !important;
    background-color: #1A1A1A !important;
}

.side-drawer textarea.form-control {
    min-height: 75px !important;
    resize: vertical !important;
}
/* ==========================================================================
   SPARKLE TEXT FIX (PREVENTS CLIPPING ON HERO TITLE)
   ========================================================================== */
.hero-subtitle {
    overflow: visible !important;
    padding: 0 20px !important;
    display: inline-block !important;
    width: 100% !important;
}

.sparkle-text-effect {
    position: relative !important;
    display: inline-block !important;
    overflow: visible !important;
    padding: 0 16px 4px 10px !important;
    margin: 0 4px !important;
}

.sparkle-text-effect::before {
    content: "✦" !important;
    position: absolute !important;
    top: -4px !important;
    left: -4px !important;
    font-size: 16px !important;
    color: #FFF2A8 !important;
    -webkit-text-fill-color: #FFF2A8 !important;
    animation: twinkleStarA 2.2s infinite ease-in-out !important;
    pointer-events: none !important;
}

.sparkle-text-effect::after {
    content: "✦" !important;
    position: absolute !important;
    top: 6px !important;
    right: -8px !important;
    font-size: 13px !important;
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    animation: twinkleStarB 2.2s 1.1s infinite ease-in-out !important;
    pointer-events: none !important;
}
/* ==========================================================================
   HERO SCRIPT FONT VERTICAL CLIPPING FIX
   ========================================================================== */
.hero-subtitle {
    overflow: visible !important;
    padding: 15px 20px !important;
    line-height: 1.4 !important;
    display: inline-block !important;
    width: 100% !important;
}

.sparkle-text-effect {
    position: relative !important;
    display: inline-block !important;
    overflow: visible !important;
    padding: 5px 16px 4px 10px !important;
    margin: 0 4px !important;
}
/* Custom Pink Scrollbar for Enhancements Modal */
.enhancements-modal-body::-webkit-scrollbar {
    width: 8px;
}
.enhancements-modal-body::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 4px;
}
.enhancements-modal-body::-webkit-scrollbar-thumb {
    background: #D47A7B;
    border-radius: 4px;
}
.enhancements-modal-body::-webkit-scrollbar-thumb:hover {
    background: #b56263;
}
/* Force square/rectangular styling for residential service tabs */
.service-tabs .tab-btn {
    border-radius: 0 !important;
}
/* Fix mobile text overflow on the Client Welcome page accept button */
@media (max-width: 768px) {
    .confirmation-gate-box .btn-primary-pink {
        font-size: 10.5px !important;
        padding: 14px 16px !important;
        letter-spacing: 0.8px !important;
        white-space: normal !important;
        height: auto !important;
        line-height: 1.4 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
}
/* Allow mobile taps to pass directly through hero video overlays */
.hero-video-wrapper, 
.hero-video-overlay {
    pointer-events: none;
}

/* Ensure the video element itself behaves responsively on mobile */
hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: auto; /* Allow direct interaction if controls are enabled */
}
/* Match residential service tab buttons to the site's standard rectangular button style */
.service-tabs .tab-btn {
    border-radius: 8px !important;
    border: 1px solid #C5A059 !important;
    background: transparent !important;
    color: #0F0F0F !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    padding: 12px 24px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
}

/* Active or hovered tab state styling */
.service-tabs .tab-btn.active,
.service-tabs .tab-btn:hover {
    background: #C5A059 !important;
    color: #FFFFFF !important;
}
/* Collapse the mobile sub-menu by default */
@media (max-width: 900px) {
    .main-nav .dropdown-menu {
        display: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    /* Open the sub-menu when the parent dropdown container is toggled or active */
    .main-nav .dropdown.active .dropdown-menu {
        display: block !important;
        max-height: 500px; /* Adjust as needed to fit all sub-links */
    }
}