/* ==========================================
   Steiner Premium - Ultra Luxury CSS Design System
   ========================================== */

/* --- Custom Variables & Theme Tokens --- */
:root {
    --color-primary: #101D31;      /* Deep midnight/slate navy (Secondary) */
    --color-secondary: #D7B635;    /* Premium Gold (Primary) */
    --color-accent: #1c2e4a;       /* Adjusted Slate Navy */
    --color-bg-light: #f8fafc;     /* Clean Off-white */
    --color-bg-dark: #000814;      /* Pure Dark Navy */
    --color-text-main: #1e293b;    /* Slate Dark */
    --color-text-muted: #64748b;   /* Slate Muted */
    --color-glass-bg: rgba(255, 255, 255, 0.8);
    --color-glass-border: rgba(16, 29, 49, 0.08);
    
    --shadow-sm: 0 2px 8px rgba(16, 29, 49, 0.04);
    --shadow-md: 0 10px 30px rgba(16, 29, 49, 0.06);
    --shadow-lg: 0 20px 50px rgba(16, 29, 49, 0.12);
    --shadow-premium: 0 30px 60px rgba(215, 182, 53, 0.12);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- Base & Reset Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

html, body {
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: #ffffff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Premium Containers --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Advanced Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(215, 182, 53, 0.3);
}

.btn-primary:hover {
    background-color: #c4a42b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(215, 182, 53, 0.4);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(10, 17, 40, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 17, 40, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(215, 182, 53, 0.3);
}

.btn-outline-white {
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* --- Section Structure & Luxury Transitions --- */
.section {
    padding: 70px 0;
    position: relative;
}

.section-bg {
    background-color: var(--color-bg-light);
    background-image: radial-gradient(circle at 100% 0%, rgba(215, 182, 53, 0.02) 0%, transparent 40%),
                      radial-gradient(circle at 0% 100%, rgba(10, 17, 40, 0.02) 0%, transparent 40%);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Forces inline-block children (like subtitle and title) to stack vertically while maintaining content-based widths */
}

.section-subtitle {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    background-color: rgba(215, 182, 53, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(215, 182, 53, 0.15);
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* ==========================================
   Header Styling (Normal & Sticky Glassmorphism Layout)
   ========================================== */
.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sticky state with premium white glassmorphism and slide-down animation */
.site-header.is-sticky {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.94); /* Pure White Glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(16, 29, 49, 0.08); /* Darker border for contrast */
    box-shadow: 0 10px 40px rgba(16, 29, 49, 0.08); /* Darker shadow for contrast */
    animation: slideDownHeader 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-header.is-sticky .main-nav {
    padding: 12px 0; /* Shrunk padding for a sleek compact navigation */
}

/* Change menu links to dark primary color when header is sticky */
.site-header.is-sticky .nav-menu-list a {
    color: var(--color-primary);
}

/* Adjust parent indicator arrow border color to match the dark links */
.site-header.is-sticky .nav-menu-list .menu-item-has-children > a::after {
    border-right-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.site-header.is-sticky .nav-menu-list .menu-item-has-children:hover > a::after {
    border-color: var(--color-secondary);
}

/* Light theme for dropdown menu when header is sticky */
.site-header.is-sticky .nav-menu-list .sub-menu {
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 29, 49, 0.08);
    box-shadow: 0 20px 40px rgba(16, 29, 49, 0.12);
}

.site-header.is-sticky .nav-menu-list .sub-menu a {
    color: var(--color-primary) !important;
}

.site-header.is-sticky .nav-menu-list .sub-menu a:hover {
    color: var(--color-primary) !important;
    background-color: rgba(215, 182, 53, 0.12) !important;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-bar {
    display: none; /* Removed from HTML, hidden in CSS */
}

.top-bar-container {
    display: none;
}

.top-info-left, .top-info-right {
    display: none;
}

.info-link {
    display: none;
}

/* Main Navigation Bar */
.main-nav {
    background-color: transparent;
    padding: 15px 0 15px;
    box-shadow: none;
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Brand Logo (Left-aligned column) */
.site-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.site-logo-img {
    height: 85px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    transition: height 0.3s ease, transform 0.3s ease;
}

.logo-normal {
    display: block;
}

.logo-sticky {
    display: none;
}

.site-header.is-sticky .logo-normal {
    display: none;
}

.site-header.is-sticky .logo-sticky {
    display: block;
    height: 78px;
}

.site-logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 95px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    display: block;
}

/* Logo Animation Container */
.logo-animation-container,
.logo-animation-container-footer {
    position: relative;
    height: 85px;
    width: 250px;
    display: flex;
    align-items: center;
    perspective: 1000px;
}

.site-header.is-sticky .logo-animation-container {
    height: 78px;
    width: 230px;
}

/* Logo Wrapper containing Icon + Text for Normal Header */
.logo-wrapper {
    position: absolute;
    top: 0;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Header Logo States: normal vs sticky */
.logo-normal {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    display: flex !important;
}

.site-header.is-sticky .logo-normal {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    display: none !important;
}

/* Sticky Header Logo (Full original logo image) */
img.logo-sticky {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 78px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    display: none !important;
}

.site-header.is-sticky img.logo-sticky {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    display: block !important;
}

.site-header.is-sticky .logo-sheen {
    display: none !important;
}

/* Icon: Rotates 360 degrees cleanly around its own center */
.logo-icon {
    height: 100%;
    width: auto;
    object-fit: contain;
    transform-origin: center center;
    animation: spin-logo-icon 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    backface-visibility: visible;
    display: block;
    will-change: transform;
}

/* Text: Static text logo component */
.logo-text {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-animation-container:hover .logo-icon,
.logo-animation-container-footer:hover .logo-icon {
    transform: scale(1.05);
}

.logo-accent {
    color: var(--color-secondary);
}

/* Footer Logo Styling */
.footer-logo {
    margin-bottom: 25px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

/* Spin animation: 360deg continuous 3D rotation around icon center */
@keyframes spin-logo-icon {
    0% {
        transform: rotateY(0deg);
    }
    21.4% {
        transform: rotateY(360deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Sheen Effect: Stationary mask containing a sliding, diagonal light beam */
.logo-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
    
    -webkit-mask-image: url('../images/umzug-logo.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('../images/umzug-logo.png');
    mask-size: contain;
    mask-repeat: no-repeat;
}

.logo-sheen-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px; /* Thicker beam width for a bolder, more prominent sheen */
    height: 100%;
    /* Thicker, more prominent white reflection gradient */
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 10%,
        rgba(255, 255, 255, 1.0) 20%,
        rgba(255, 255, 255, 1.0) 48%, /* First primary broad reflection stripe */
        rgba(255, 255, 255, 0.8) 54%,
        rgba(255, 255, 255, 0.2) 58%,
        rgba(255, 255, 255, 0.8) 64%,
        rgba(255, 255, 255, 1.0) 74%,
        rgba(255, 255, 255, 1.0) 84%, /* Second broad companion reflection stripe */
        rgba(255, 255, 255, 0.8) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg) translateX(-400px);
    animation: shine-logo 7s linear infinite;
}

@keyframes shine-logo {
    0% {
        transform: skewX(-25deg) translateX(-400px);
    }
    21.4% {
        transform: skewX(-25deg) translateX(-400px);
    }
    64.3% {
        transform: skewX(-25deg) translateX(600px);
    }
    100% {
        transform: skewX(-25deg) translateX(600px);
    }
}

@media (max-width: 992px) {
    .logo-animation-container,
    .logo-animation-container-footer {
        height: 78px;
        margin-left: 0;
    }
    .footer-logo {
        justify-content: center;
    }
}

/* Desktop Menu (Centered column) */
.desktop-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
}

/* Header CTA Button Wrapper (Right-aligned column) */
.header-cta-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Nav Menu List */
.nav-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-menu-list > li {
    position: relative;
}

/* Top-level Menu Items Links */
.nav-menu-list > li > a {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.6px;
    padding: 10px 18px;
    border-radius: 12px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

/* Hover pill for Top-level links */
.nav-menu-list > li > a:hover {
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Sticky Header Link colors */
.site-header.is-sticky .nav-menu-list > li > a {
    color: var(--color-primary);
}

.site-header.is-sticky .nav-menu-list > li > a:hover {
    color: var(--color-primary);
    background: rgba(215, 182, 53, 0.12);
}

/* Active Menu Item Badge Pill */
.nav-menu-list > li.current-menu-item > a,
.nav-menu-list > li.current_page_item > a,
.nav-menu-list > li.current-menu-ancestor > a {
    color: var(--color-secondary) !important;
    background: rgba(215, 182, 53, 0.15) !important;
}

.site-header.is-sticky .nav-menu-list > li.current-menu-item > a,
.site-header.is-sticky .nav-menu-list > li.current_page_item > a {
    color: var(--color-primary) !important;
    background: rgba(215, 182, 53, 0.2) !important;
}

/* Chevron Arrow for Parent Dropdown Item */
.menu-chevron-icon {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 2px;
    margin-top: -2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu-list li:hover > a .menu-chevron-icon,
.nav-menu-list li.menu-item-has-children:hover > a .menu-chevron-icon {
    transform: rotate(-135deg);
    color: var(--color-secondary);
}

/* Clear out any old broken ::after pseudo elements */
.nav-menu-list a::after,
.nav-menu-list .menu-item-has-children > a::after {
    display: none !important;
    content: none !important;
}

/* ==========================================
   DROPDOWN MENU (LUXURY GLASS CARD)
   ========================================== */
.nav-menu-list .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.96);
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.96) 0%, rgba(16, 29, 49, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 280px;
    padding: 12px;
    margin: 0;
    list-style: none;
    border-radius: 18px;
    border: 1px solid rgba(215, 182, 53, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(215, 182, 53, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
}

/* Hover bridge gap so mouse transition to dropdown is seamless */
.nav-menu-list .menu-item-has-children::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
    display: block;
}

.nav-menu-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Sticky Header Sub-menu */
.site-header.is-sticky .nav-menu-list .sub-menu {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(16, 29, 49, 0.12);
    box-shadow: 0 20px 45px rgba(16, 29, 49, 0.12);
}

/* Sub-menu Item Links */
.nav-menu-list .sub-menu li {
    margin-bottom: 4px;
    width: 100%;
}

.nav-menu-list .sub-menu li:last-child {
    margin-bottom: 0;
}

.nav-menu-list .sub-menu a {
    color: #cbd5e1 !important;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 10px;
    background: transparent;
    transition: all 0.25s ease !important;
}

.nav-menu-list .sub-menu a:hover {
    color: #ffffff !important;
    background: rgba(215, 182, 53, 0.18) !important;
    transform: translateX(6px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-header.is-sticky .nav-menu-list .sub-menu a {
    color: var(--color-primary) !important;
}

.site-header.is-sticky .nav-menu-list .sub-menu a:hover {
    color: var(--color-primary) !important;
    background: rgba(215, 182, 53, 0.18) !important;
}

/* Sub-menu Item Icon & Arrow */
.submenu-item-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.submenu-icon-wrap {
    width: 28px;
    height: 28px;
    background: rgba(215, 182, 53, 0.12);
    border: 1px solid rgba(215, 182, 53, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.submenu-icon-wrap svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.2;
    display: block;
}

.nav-menu-list .sub-menu a:hover .submenu-icon-wrap {
    background: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-secondary);
    transform: scale(1.08) rotate(-3deg);
}

.submenu-arrow {
    font-size: 14px;
    color: var(--color-secondary);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.nav-menu-list .sub-menu a:hover .submenu-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Header CTA Button */
.nav-cta {
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #c4a42b 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(215, 182, 53, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(215, 182, 53, 0.5) !important;
}

/* Mobile Toggle button (Transparent Circle with Gold Border) */
.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: rgba(16, 29, 49, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--color-secondary, #d7b635);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1100;
    box-shadow: 0 4px 15px rgba(215, 182, 53, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    background: rgba(215, 182, 53, 0.2);
    box-shadow: 0 6px 20px rgba(215, 182, 53, 0.4);
    transform: scale(1.05);
}

.mobile-menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: #ffffff;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Sticky states for mobile toggle button */
.site-header.is-sticky .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-secondary, #d7b635);
    box-shadow: 0 4px 15px rgba(16, 29, 49, 0.12);
}

.site-header.is-sticky .mobile-menu-toggle .bar {
    background-color: var(--color-primary, #101d31);
}

.site-header.is-sticky .mobile-menu-toggle.active .bar {
    background-color: #ffffff;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    max-width: 440px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #0a1128 0%, #0d1726 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 99999;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.mobile-nav-drawer.active {
    right: 0;
}

/* Mobile Drawer Header */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 17, 40, 0.8);
    flex-shrink: 0;
}

.mobile-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-img.logo-icon {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.mobile-logo-img.logo-text {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.mobile-drawer-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--color-secondary, #d7b635);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 182, 53, 0.2);
}

.mobile-drawer-close:hover,
.mobile-drawer-close:active {
    background: var(--color-secondary);
    color: #ffffff;
    transform: rotate(90deg) scale(1.05);
}

.mobile-drawer-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.8;
}

/* Mobile Menu Container (Scrollable Area) */
.mobile-menu-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px 25px 50px 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Menu List */
.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
}

.mobile-menu-list > li > a {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-list > li > a:hover {
    color: var(--color-secondary);
}

/* Accordion Chevron Icon in Mobile Drawer */
.mobile-acc-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
    flex-shrink: 0;
}

.mobile-acc-arrow svg {
    width: 14px;
    height: 14px;
}

.menu-item-has-children.mobile-submenu-open > a .mobile-acc-arrow {
    transform: rotate(180deg);
    background: var(--color-secondary);
    color: #ffffff;
}

/* Mobile Sub-menu (Collapsible Accordion) */
.mobile-menu-list .sub-menu {
    list-style: none;
    padding: 0 0 0 4px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item-has-children.mobile-submenu-open .sub-menu {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mobile-menu-list .sub-menu li {
    width: 100%;
}

.mobile-menu-list .sub-menu a {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    color: #cbd5e1 !important;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-list .sub-menu a:hover,
.mobile-menu-list .sub-menu a:active {
    background: rgba(215, 182, 53, 0.15) !important;
    color: #ffffff !important;
    border-color: rgba(215, 182, 53, 0.3);
}

.mobile-menu-list .sub-menu .submenu-icon-wrap {
    width: 28px;
    height: 28px;
    background: rgba(215, 182, 53, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.mobile-menu-list .sub-menu .submenu-icon-wrap svg {
    width: 15px;
    height: 15px;
}

/* Mobile Drawer Footer */
.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 18px;
    padding-bottom: 35px; /* Elevated higher from bottom edge */
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hide fixed floating phone & whatsapp buttons when mobile menu drawer is open */
body.mobile-menu-open .floating-btn {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: scale(0.7) translateY(30px) !important;
    transition: all 0.35s ease !important;
}

.mobile-cta {
    width: 100%;
    padding: 15px;
    font-size: 14.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #c4a42b 100%) !important;
    color: #ffffff !important;
    text-align: center;
    box-shadow: 0 6px 20px rgba(215, 182, 53, 0.35);
}

.mobile-quick-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-contact-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 10px;
    color: #f1f5f9;
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.mobile-contact-pill svg {
    width: 15px;
    height: 15px;
    color: var(--color-secondary);
}

.mobile-contact-pill.wa-pill svg {
    color: #25D366;
}

/* Hamburger animation (Perfect Centered X close sign) */
.mobile-menu-toggle.active .bar-1 {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar-2 {
    opacity: 0;
}

.mobile-menu-toggle.active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay (Dark blurred background) */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .desktop-menu-wrapper,
    .header-cta-wrapper {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .site-logo {
        flex: none;
    }
    .site-logo-img {
        height: 84px;
        max-width: 320px;
    }
    .footer-logo-img {
        height: 72px;
        max-width: 280px;
    }
}

/* ==========================================
   Hero Slider Section (Fixed Luxury Height - Safe Layout)
   ========================================== */
/* ==========================================
   Hero Section (Premium Video Background & Left-Centered Content)
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 720px; /* Elegant taller height */
    background-color: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Light black opacity for perfect text readability */
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px; /* Offset the absolute transparent header */
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

@media (min-width: 1200px) {
    .hero-content {
        margin-left: -90px; /* Slide left further on large screens to align with shifted logo */
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-content {
        margin-left: -50px; /* Slide slightly further on tablet screens */
    }
}

.hero-top-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    color: var(--color-secondary);
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: inline-block;
    background-color: rgba(215, 182, 53, 0.15);
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(215, 182, 53, 0.3);
    text-transform: uppercase;
    text-shadow: none;
}

/* Reset p.hero-subtitle so description text on any page is clean elegant text, never a pill box */
p.hero-subtitle,
.hero-subtitle {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: var(--font-body, sans-serif);
    font-weight: 400 !important;
    font-size: 17.5px !important;
    color: #cbd5e1 !important;
    display: block !important;
    max-width: 780px !important;
    margin: 15px auto 30px !important;
    line-height: 1.65 !important;
}

.hero-title {
    font-size: 48px; /* Decreased further from 54px to shrink the text more */
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title span {
    display: block;
    color: var(--color-secondary);
}

.hero-desc {
    font-size: 20px;
    color: #f1f5f9;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-section {
        height: 620px;
    }
    .hero-title {
        font-size: 36px; /* Decreased further from 40px */
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 560px;
    }
    .hero-title {
        font-size: 26px; /* Decreased further from 30px */
        letter-spacing: -1px;
    }
    .hero-desc {
        font-size: 16px;
    }
}


/* ==========================================
   Service Cards Redesign (With Real Images)
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(16, 29, 49, 0.06); /* Deeper default shadow */
    border: 1px solid rgba(16, 29, 49, 0.14); /* More prominent default border */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(16, 29, 49, 0.1), 0 10px 30px rgba(215, 182, 53, 0.06); /* Gold glow shadow on hover */
    border-color: var(--color-secondary);
}

.card-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-color: var(--color-primary);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.5) 0%, transparent 100%);
}

.card-content {
    padding: 35px;
    background-color: #ffffff;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-text {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-card {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-card .arrow {
    transition: transform 0.3s ease;
}

.service-card:hover .btn-card .arrow {
    transform: translateX(6px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Kostenlose Besichtigung (Luxury Dark Card)
   ========================================== */
.besichtigung-section {
    background: linear-gradient(to bottom, #ffffff 0%, var(--color-bg-light) 100%);
    position: relative;
    overflow: visible;
}

.besichtigung-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(16, 29, 49, 0.03) 1.2px, transparent 1.2px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
}

.besichtigung-decor-blur {
    position: absolute;
    top: -5%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(215, 182, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.besichtigung-decor-blur-2 {
    position: absolute;
    bottom: -10%;
    right: 15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 29, 49, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.besichtigung-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.besichtigung-desc {
    font-size: 16.5px;
    color: var(--color-text-main);
    line-height: 1.8;
    margin-bottom: 22px;
}

.section-subtitle-live {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(215, 182, 53, 0.06);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(215, 182, 53, 0.15);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.live-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    border-radius: 50%;
    left: 0;
    top: 0;
    animation: pulse-live 2s infinite ease-in-out;
}

@keyframes pulse-live {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.besichtigung-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.besichtigung-card {
    font-size: 15px;
    color: var(--color-text-main);
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 26px 30px;
    border-radius: 24px;
    border: 1px solid rgba(16, 29, 49, 0.05);
    border-left: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(16, 29, 49, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.besichtigung-card:hover {
    border-color: rgba(215, 182, 53, 0.2);
    border-left-color: var(--color-secondary);
    background: #ffffff;
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 20px 40px rgba(16, 29, 49, 0.05);
}

.feature-icon-container {
    background: rgba(215, 182, 53, 0.06);
    border: 1px solid rgba(215, 182, 53, 0.15);
    color: var(--color-secondary);
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.besichtigung-card:hover .feature-icon-container {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(215, 182, 53, 0.25);
}

.feature-icon-svg {
    width: 24px;
    height: 24px;
}

.feature-card-content {
    flex: 1;
}

.feature-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    color: var(--color-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card-desc {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* Asymmetric Dark Box */
.besichtigung-cta-box {
    background: linear-gradient(135deg, #101D31 0%, #0d1625 100%);
    border-radius: 32px;
    padding: 55px 45px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(16, 29, 49, 0.25), 0 0 50px rgba(215, 182, 53, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.besichtigung-cta-box::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.besichtigung-cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(215, 182, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    color: var(--color-secondary);
    background-color: rgba(215, 182, 53, 0.08);
    border: 1px solid rgba(215, 182, 53, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.green-pulse {
    width: 7px;
    height: 7px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.green-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #10b981;
    border-radius: 50%;
    left: 0;
    top: 0;
    animation: pulse-green 1.8s infinite ease-in-out;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.cta-heading {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-transform: uppercase;
}

.cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 340px;
}

.btn-cta-box {
    width: 100%;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #b8971f 100%);
    border-radius: 14px;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 18px 30px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(215, 182, 53, 0.25);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-box:hover {
    background: linear-gradient(135deg, #e9cb55 0%, var(--color-secondary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(215, 182, 53, 0.35);
    color: var(--color-primary);
}

.btn-cta-box svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-cta-box:hover svg {
    transform: scale(1.15) rotate(-10deg);
}

.cta-or {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
    margin: 20px 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 15px;
}

.cta-or::before, .cta-or::after {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    max-width: 50px;
}

.btn-cta-callback {
    width: 100%;
    padding: 16px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-radius: 14px;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-cta-callback:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(215, 182, 53, 0.3);
}

/* Zusatzleistungen / Secondary Service Cards Redesign */
.services-section-secondary {
    background-color: #ffffff;
    position: relative;
}

.card-secondary {
    border-top: none !important;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.04);
    border: 1px solid rgba(15, 32, 66, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-secondary .card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--color-primary);
}

.card-secondary .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-secondary:hover .card-img {
    transform: scale(1.08) rotate(1deg);
}

.card-secondary .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.4) 0%, transparent 100%);
    transition: background 0.4s ease;
}

.card-secondary:hover .card-overlay {
    background: linear-gradient(to top, rgba(215, 182, 53, 0.25) 0%, transparent 100%);
}

.card-secondary .card-content {
    padding: 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-secondary .card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.card-secondary:hover .card-title {
    color: var(--color-secondary);
}

.card-secondary .card-text {
    font-size: 14.5px;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.card-secondary .btn-card {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.card-secondary .btn-card .arrow {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-secondary:hover .btn-card {
    color: var(--color-secondary);
}

.card-secondary:hover .btn-card .arrow {
    transform: translateX(6px);
}

/* Category Glass Badge on Image */
.card-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 17, 40, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.card-secondary:hover .card-category-badge {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* ==========================================
   Steps Section (Glassmorphism & Large Numbers)
   ========================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 28px; /* Slightly rounder for a softer luxury look */
    padding: 55px 40px; /* More breathing room */
    border: 1px solid rgba(16, 29, 49, 0.12); /* More prominent default border */
    box-shadow: 0 12px 35px rgba(16, 29, 49, 0.035); /* More prominent default shadow */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

/* Subtle corner gradient glow */
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(215, 182, 53, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

/* Modern top-accent gold-gradient bar that expands on hover */
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), #e9cb55);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.step-card:hover {
    border-color: var(--color-secondary); /* Premium gold border transition */
    transform: translateY(-12px) scale(1.02); /* Sleek vertical lift and scale */
    box-shadow: 0 30px 60px rgba(16, 29, 49, 0.09), 0 10px 30px rgba(215, 182, 53, 0.06); /* Premium gold glowing shadow */
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover::after {
    transform: scaleX(1);
}

/* Ultra premium circular squircle icon wrapper */
.step-icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(215, 182, 53, 0.05);
    border: 1px solid rgba(215, 182, 53, 0.18);
    border-radius: 50%; /* Pure circle looks much more premium */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 35px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 6px 15px rgba(215, 182, 53, 0.03);
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 26px;
    height: 26px;
    stroke-width: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-icon-wrapper {
    background: var(--color-secondary);
    color: var(--color-primary); /* Navy contrast on hover */
    border-color: var(--color-secondary);
    box-shadow: 0 10px 25px rgba(215, 182, 53, 0.3);
    transform: scale(1.08) rotate(5deg);
}

.step-card:hover .step-icon {
    transform: scale(1.05);
}

/* Large display number in background: clean sans-serif display */
.step-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 110px; /* Massive luxury size */
    line-height: 1;
    position: absolute;
    top: -15px; /* Offset overflow for modern editorial look */
    right: 25px;
    font-style: normal; /* Non-italic looks way cleaner */
    letter-spacing: -4px;
    -webkit-text-stroke: 1.5px rgba(16, 29, 49, 0.035);
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

.step-card:hover .step-number {
    -webkit-text-stroke: 1.5px var(--color-secondary);
    -webkit-text-fill-color: rgba(215, 182, 53, 0.05); /* Fills with a very soft premium gold tint */
    transform: translateY(8px) scale(1.05);
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: var(--color-primary); /* Stay classy navy */
}

.step-text {
    font-size: 15.5px;
    color: var(--color-text-main); /* High readability */
    line-height: 1.8;
}

/* ==========================================
   New Luxury Section: Key Stats
   ========================================== */
.stats-section {
    background-color: var(--color-primary);
    background-image: radial-gradient(circle at 50% 50%, rgba(215, 182, 53, 0.08) 0%, transparent 80%),
                      radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    color: #ffffff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section .container {
    max-width: 1400px; /* Wider container to allow the stat cards/boxes to expand horizontally */
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 45px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-secondary);
    box-shadow: 0 25px 50px rgba(215, 182, 53, 0.15);
}

.stat-icon-wrapper {
    width: 76px;
    height: 76px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, rgba(215, 182, 53, 0.15) 0%, rgba(215, 182, 53, 0.03) 100%);
    border: 1px solid rgba(215, 182, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(215, 182, 53, 0.1);
}

.stat-icon {
    width: 32px;
    height: 32px;
    stroke-width: 1.75;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover .stat-icon-wrapper {
    background: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-secondary);
    box-shadow: 0 10px 25px rgba(215, 182, 53, 0.4);
    transform: scale(1.05);
}

.stat-item:hover .stat-icon {
    transform: rotate(8deg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-title {
    color: #ffffff;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-item {
        padding: 35px 25px;
    }
    .stat-number {
        font-size: 44px;
    }
}


/* ==========================================
   New Luxury Section: Reviews (Testimonials)
   ========================================== */
/* ==========================================
   New Luxury Section: Reviews (Testimonials)
   ========================================== */
.reviews-section {
    position: relative;
    background-color: var(--color-bg-light);
    padding: 70px 0;
    overflow: hidden;
}

.reviews-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
    flex-wrap: wrap;
}

.reviews-header-wrapper .section-title-wrapper {
    margin-bottom: 0;
    flex: 1 1 auto;
}

/* Google Trust Badge Summary */
.google-rating-summary {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(16, 29, 49, 0.06);
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(16, 29, 49, 0.02);
    min-width: 250px;
}

.google-logo-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.google-logo-inline .rating-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-primary);
    letter-spacing: -0.2px;
}

.rating-score-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-score-wrapper .score-num {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-primary);
}

.stars-gold {
    color: #fbbc05; /* Official Google Star Yellow */
    font-size: 15px;
    letter-spacing: 1px;
}

.rating-score-wrapper .count-text {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Swiper Nav Buttons at Header */
.slider-nav-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.slider-nav-buttons .swiper-button-prev,
.slider-nav-buttons .swiper-button-next {
    position: static; /* Reset absolute swiper defaults */
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border: 1px solid rgba(16, 29, 49, 0.08);
    border-radius: 50%;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(16, 29, 49, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.slider-nav-buttons .swiper-button-prev::after,
.slider-nav-buttons .swiper-button-next::after {
    font-size: 16px;
    font-weight: 900;
}

.slider-nav-buttons .swiper-button-prev:hover,
.slider-nav-buttons .swiper-button-next:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(215, 182, 53, 0.3);
    transform: translateY(-2px);
}

/* Reviews Swiper Area */
.reviews-swiper {
    width: 100%;
    padding: 20px 5px 60px 5px !important; /* Bottom padding for swiper pagination */
    overflow: visible !important; /* Allow cards to show shadows when sliding */
}

/* Google-style Review Card */
.review-card.google-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(16, 29, 49, 0.02);
    border: 1px solid rgba(16, 29, 49, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.review-card.google-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(16, 29, 49, 0.06), 0 10px 30px rgba(215, 182, 53, 0.02);
    border-color: rgba(215, 182, 53, 0.15);
}

.google-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    width: 100%;
}

.google-card-header .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(16, 29, 49, 0.05);
}

.google-card-header .author-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.google-card-header .author-name {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.google-card-header .author-meta {
    display: flex;
    align-items: center;
    font-size: 11.5px;
    color: var(--color-text-muted);
}

.google-card-header .local-guide {
    color: #e37400; /* Google Local Guide Orange */
    font-weight: 600;
}

.google-card-header .meta-separator {
    margin: 0 5px;
}

.google-card-header .google-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.google-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.google-card-rating .review-date {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.review-card.google-card .review-text {
    font-size: 14.5px;
    color: var(--color-text-main);
    line-height: 1.75;
    margin-bottom: 25px;
    font-style: italic; /* Elegant quote feel */
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limit card text height to align grid cards */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Verified footer */
.google-verified-row {
    display: flex;
    align-items: center;
    margin-top: auto;
    font-size: 11.5px;
    color: #34a853; /* Active Google Green */
    font-weight: 600;
    border-top: 1px solid rgba(16, 29, 49, 0.05);
    padding-top: 15px;
}

.google-verified-row svg {
    flex-shrink: 0;
}

/* Custom Swiper Pagination styling */
.reviews-section .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.15;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.reviews-section .swiper-pagination-bullet-active {
    background: var(--color-secondary);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .reviews-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .google-rating-summary {
        width: 100%;
    }
    
    .slider-nav-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ==========================================
   Footer & Callback Form Styling
   ========================================== */
.site-footer {
    background: linear-gradient(180deg, #020913 0%, #00040a 100%);
    color: #94a3b8;
    padding: 90px 0 50px;
    border-top: 3px solid var(--color-secondary);
    box-shadow: inset 0 10px 30px -10px rgba(0,0,0,0.8);
    font-family: var(--font-body);
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
}

.footer-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    margin-top: 15px;
    margin-bottom: 25px;
}

.copyright-text {
    font-size: 13px;
    color: #64748b;
    margin-top: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-legal-links a {
    font-size: 13px;
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--color-secondary);
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.1);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links-list a::before {
    content: "›";
    color: var(--color-secondary);
    display: inline-block;
    width: 0;
    opacity: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: width 0.3s ease, opacity 0.3s ease, margin-right 0.3s ease;
}

.footer-links-list a:hover::before {
    width: 10px;
    opacity: 1;
    margin-right: 6px;
}

.footer-links-list a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.form-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
}

.callback-footer-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group-row {
    display: block;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(215, 182, 53, 0.15);
}

.form-input::placeholder {
    color: #475569;
}

.form-input[type="datetime-local"] {
    color-scheme: dark;
    cursor: pointer;
}

.datetime-group .input-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consent-group {
    margin: 5px 0;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #94a3b8;
    user-select: none;
    line-height: 1.4;
}

.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.03);
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-checkbox::before {
    content: "";
    width: 8px;
    height: 8px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--color-secondary);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.form-checkbox:checked {
    border-color: var(--color-secondary);
    background-color: rgba(215, 182, 53, 0.1);
}

.form-checkbox:checked::before {
    transform: scale(1);
}

.site-footer .btn-primary {
    width: 100%;
    background-color: var(--color-secondary);
    color: var(--color-primary) !important;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(215, 182, 53, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 5px;
}

.site-footer .btn-primary:hover {
    background-color: #e5c33f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 182, 53, 0.3);
}

.site-footer .btn-primary:active {
    transform: translateY(0);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-col.brand-col {
        grid-column: span 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .logo-animation-container-footer {
        margin-left: 0 !important; /* Reset margin to align with centered content */
    }
    .footer-legal-links {
        justify-content: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-col.brand-col {
        grid-column: span 1;
    }
    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-links-list {
        align-items: center;
    }
    .footer-links-list a:hover {
        transform: translateY(-2px);
    }
    .footer-links-list a::before {
        display: none !important;
    }
    .footer-links-list a:hover {
        padding-left: 0;
    }
    .callback-footer-form {
        width: 100%;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

/* ==========================================
   Apple Split Scroll Steps Section
   ========================================== */
.apple-split-scroll-section {
    background-color: var(--color-bg-light);
    padding: 90px 0;
    position: relative;
    overflow: visible;
}

.split-scroll-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
}

.split-scroll-left {
    position: relative;
    height: 100%;
    z-index: 5;
}

.sticky-image-container {
    position: sticky;
    top: 140px;
    width: 100%;
    height: 75vh;
    max-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 32, 66, 0.08);
    background-color: var(--color-primary);
}

.split-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.95);
    z-index: 1;
}

.split-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.split-scroll-right {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
}

.split-header-wrapper {
    margin-bottom: 60px;
}

.split-eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: inline-block;
    background-color: rgba(215, 182, 53, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(215, 182, 53, 0.15);
}

.split-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.split-step {
    margin-bottom: 100px;
    padding: 25px 0 25px 35px;
    border-left: 3px solid rgba(16, 29, 49, 0.08);
    opacity: 0.45;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-step.active {
    opacity: 1;
    border-left-color: var(--color-secondary);
}

.split-step:hover {
    opacity: 0.75;
    border-left-color: rgba(215, 182, 53, 0.3);
}

.step-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 18px;
    background-color: rgba(215, 182, 53, 0.06);
    border: 1px solid rgba(215, 182, 53, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
}

.step-heading {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.step-desc {
    font-size: 16px;
    color: var(--color-text-main);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .apple-split-scroll-section {
        padding: 50px 0;
    }
    .split-scroll-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .split-scroll-left {
        display: none;
    }
    .mobile-step-image {
        display: block !important;
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 20px;
        margin: 20px 0 25px;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(15, 32, 66, 0.08);
    }
    .split-step {
        opacity: 1 !important;
        transform: none !important;
        margin-bottom: 50px !important;
        padding: 20px 0 !important;
        border-left: none !important;
        padding-left: 0 !important;
    }
}

/* ==========================================
   Apple Horizontal Scroll Section
   ========================================== */
.apple-horizontal-section {
    background-color: var(--color-bg-light);
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
    will-change: transform;
}

.horizontal-scroll-viewport {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding-left: 10%;
    will-change: transform;
}

.horizontal-header-col {
    min-width: 450px;
    padding-right: 80px;
    flex-shrink: 0;
    position: relative;
    background-color: var(--color-bg-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 60px; /* Nudge content slightly up to align with cards */
    z-index: 15;
}

.horizontal-header-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, var(--color-bg-light), transparent);
    pointer-events: none;
    z-index: 20;
}

.horizontal-eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(215, 182, 53, 0.06);
    border: 1px solid rgba(215, 182, 53, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
    width: fit-content;
}

.eyebrow-icon {
    width: 14px;
    height: 14px;
    color: var(--color-secondary);
}

.horizontal-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.horizontal-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-top: 20px;
    max-width: 360px;
}

.header-blur {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(215, 182, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.horizontal-title span {
    display: block;
    color: var(--color-secondary);
}

.horizontal-cards-wrapper {
    overflow: hidden;
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
}

.horizontal-cards-container {
    display: flex;
    flex-shrink: 0;
    gap: 40px;
    padding-left: 60px;
    padding-right: 150px;
    height: 520px;
    align-items: center;
    z-index: 5;
    will-change: transform;
}

.horizontal-card {
    min-width: 350px;
    width: 350px;
    height: 470px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 32, 66, 0.05);
    box-shadow: 0 15px 45px rgba(10, 17, 40, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    position: relative;
}

.horizontal-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(10, 17, 40, 0.08);
    border-color: rgba(215, 182, 53, 0.3);
}

.horizontal-card .card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--color-primary);
}

.horizontal-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizontal-card:hover .card-img {
    transform: scale(1.08);
}

.card-icon-overlay {
    position: absolute;
    top: 194px;
    right: 25px;
    z-index: 5;
}

.card-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e9cb55 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(215, 182, 53, 0.3);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.horizontal-card:hover .card-icon-box {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(215, 182, 53, 0.4);
}

.card-icon-box svg {
    width: 24px;
    height: 24px;
}

.horizontal-card-body {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.horizontal-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.horizontal-card-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: 0;
}

@media (max-width: 992px) {
    .apple-horizontal-section {
        height: auto;
        padding: 100px 0;
    }
    .horizontal-scroll-viewport {
        flex-direction: column;
        height: auto;
        padding: 0 30px;
        align-items: flex-start;
    }
    .horizontal-header-col {
        min-width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
        height: auto;
        background-color: transparent;
    }
    .horizontal-header-col::after {
        display: none;
    }
    .horizontal-title {
        font-size: 38px;
    }
    .horizontal-cards-wrapper {
        display: block;
        overflow: visible;
        width: 100%;
        height: auto;
    }
    .horizontal-cards-container {
        flex-direction: column;
        height: auto;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        gap: 30px;
    }
    .horizontal-card {
        width: 100%;
        min-width: 100%;
        height: auto;
        min-height: 280px;
    }
}

/* ==========================================
   Inner Page Styling - Ultra Luxury Design
   ========================================== */
.inner-hero-section {
    position: relative;
    background-color: var(--color-bg-dark);
    padding: 130px 0 80px;
    text-align: center;
    overflow: hidden;
    z-index: 10;
}

.inner-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(215, 182, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.inner-hero-container {
    position: relative;
    z-index: 2;
}

.inner-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.inner-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.breadcrumbs {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.breadcrumbs a {
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.breadcrumbs span.separator {
    margin: 0 10px;
    opacity: 0.5;
}

/* Bento Grid Key Features */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.bento-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 32, 66, 0.05);
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.02);
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 17, 40, 0.06);
    border-color: rgba(215, 182, 53, 0.2);
}

.bento-card-large {
    grid-column: span 2;
    background: linear-gradient(135deg, #101D31 0%, #1c2e4a 100%);
    color: #ffffff;
}

.bento-card-large .bento-title {
    color: #ffffff;
}

.bento-card-large .bento-text {
    color: #cbd5e1;
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: rgba(215, 182, 53, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 25px;
}

.bento-card-large .bento-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
}

.bento-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.bento-text {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Service Details Two Column Layout */
.service-details-section {
    padding: 70px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 60px;
}

.details-content h3 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.details-content p {
    font-size: 16px;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 25px;
}

.details-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.details-content li {
    font-size: 15.5px;
    color: #334155;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.details-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 16px;
}

/* Details Sidebar Form */
.details-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 32, 66, 0.05);
    box-shadow: 0 15px 45px rgba(10, 17, 40, 0.04);
    padding: 40px 30px;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.sidebar-text {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 25px;
}

.sidebar-info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    background: var(--color-bg-light);
    border: 1px solid rgba(15, 32, 66, 0.02);
}

.sidebar-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--color-secondary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-info-icon svg {
    width: 20px;
    height: 20px;
}

.sidebar-info-meta span {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sidebar-info-meta a, .sidebar-info-meta strong {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 700;
}

/* Premium Pricing Cards */
.pricing-section {
    padding: 70px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(15, 32, 66, 0.05);
    box-shadow: 0 10px 40px rgba(10, 17, 40, 0.03);
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card-featured {
    background: linear-gradient(135deg, #101D31 0%, #1c2e4a 100%);
    color: #ffffff;
    border-color: var(--color-secondary);
    transform: scale(1.03);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10, 17, 40, 0.08);
}

.pricing-card-featured:hover {
    transform: translateY(-10px) scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--color-secondary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-plan-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pricing-card-featured .pricing-plan-title {
    color: #ffffff;
}

.pricing-price-wrapper {
    display: flex;
    align-items: baseline;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-right: 5px;
}

.pricing-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.pricing-card-featured .pricing-amount {
    color: #ffffff;
}

.pricing-period {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-left: 10px;
}

.pricing-card-featured .pricing-period {
    color: #94a3b8;
}

.pricing-features {
    list-style: none;
    margin: 30px 0 40px;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
}

.pricing-card-featured .pricing-features li {
    color: #cbd5e1;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* Contact Grid */
.contact-section {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 32, 66, 0.04);
    box-shadow: 0 8px 30px rgba(10, 17, 40, 0.02);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateX(8px);
    border-color: rgba(215, 182, 53, 0.2);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(215, 182, 53, 0.08);
    border-radius: 14px;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-meta span {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-card-meta strong, .contact-card-meta a {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid rgba(15, 32, 66, 0.05);
    box-shadow: 0 20px 50px rgba(10, 17, 40, 0.04);
    padding: 50px 40px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* Legal Content Layout */
.legal-section {
    padding: 70px 0;
    background-color: var(--color-bg-light);
}

.legal-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 32, 66, 0.04);
    box-shadow: 0 10px 40px rgba(10, 17, 40, 0.02);
    padding: 60px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h1 {
    font-size: 38px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(15, 32, 66, 0.06);
    padding-bottom: 15px;
}

.legal-card h2 {
    font-size: 22px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin: 40px 0 20px;
}

.legal-card p, .legal-card li {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .details-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-grid, .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card-large {
        grid-column: span 1;
    }
    .inner-hero-title {
        font-size: 34px;
    }
    .legal-card {
        padding: 40px 25px;
    }
}

/* --- Gradient Headings for White Background Sections --- */
.services-section .section-title,
.services-section-secondary .section-title,
.steps-section .section-title,
.reviews-section .section-title {
    background: linear-gradient(135deg, #D7B635 0%, #101D31 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================
   Ultra-Luxury Mobile UI/UX Styling Fixes
   ========================================== */

/* Tablet & Mobile Grid Fixes (under 992px) */
@media (max-width: 992px) {
    /* Free Besichtigung Section Two-Column Grid Fix */
    .besichtigung-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Process Steps Section Three-Column Grid Fix */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 40px !important;
    }
}

/* Mobile Specific Fixes (under 768px) */
@media (max-width: 768px) {
    /* Title Font Size Scaling */
    .section-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .section-title-wrapper {
        margin-bottom: 30px !important;
        text-align: center !important;
    }

    /* Center Hero buttons on Mobile */
    .hero-buttons {
        justify-content: center !important;
    }

    /* Free Besichtigung Card Inner Padding */
    .besichtigung-cta-box {
        padding: 40px 25px !important;
        border-radius: 24px !important;
    }

    /* Process Step Card Padding Reduction */
    .step-card {
        padding: 40px 25px !important;
        border-radius: 20px !important;
    }
}

/* ==========================================
   Privatumzug Page Custom Ultra-Luxury Styles
   ========================================== */

/* Trust Strip Section */
.trust-strip-section {
    background: #101D31;
    border-bottom: 1px solid rgba(215, 182, 53, 0.15);
    padding: 24px 0;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(215, 182, 53, 0.08);
    border-color: rgba(215, 182, 53, 0.3);
    transform: translateY(-2px);
}

.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(215, 182, 53, 0.12);
    color: #D7B635;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.trust-text span {
    color: #94a3b8;
    font-size: 12px;
}

/* Hero Modifications */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}

.inner-hero-lead {
    font-size: 17px;
    color: #cbd5e1;
    max-width: 720px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* Overview Section Grid */
.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.overview-content .lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.highlight-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #101D31;
}

.highlight-badge svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 3px;
}

/* Glass Feature Card */
.glass-feature-card {
    background: linear-gradient(145deg, #101D31 0%, #1c2e4a 100%);
    border: 1px solid rgba(215, 182, 53, 0.25);
    border-radius: 24px;
    padding: 36px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(16, 29, 49, 0.2);
    position: relative;
    overflow: hidden;
}

.glass-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(215, 182, 53, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.glass-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-icon-circle {
    width: 52px;
    height: 52px;
    background: var(--color-secondary);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(215, 182, 53, 0.3);
}

.glass-icon-circle svg {
    width: 26px;
    height: 26px;
}

.glass-card-header h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 0;
}

.glass-card-header .subtext {
    font-size: 13px;
    color: #94a3b8;
}

.glass-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.glass-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #e2e8f0;
}

.glass-check-list li svg {
    width: 18px;
    height: 18px;
    color: #D7B635;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Bento Card Badge Tag */
.bento-tag {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 14px;
    background: rgba(215, 182, 53, 0.1);
    border: 1px solid rgba(215, 182, 53, 0.25);
    color: #D7B635;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

/* Besichtigung Steps Grid */
.section-besichtigung {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-lead-desc {
    font-size: 16.5px;
    color: #64748b;
    margin-top: 15px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.besichtigung-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.step-card {
    background: #ffffff;
    border: 1px solid rgba(16, 29, 49, 0.08);
    border-radius: 20px;
    padding: 36px 24px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(16, 29, 49, 0.03);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 29, 49, 0.08);
    border-color: rgba(215, 182, 53, 0.4);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: rgba(16, 29, 49, 0.08);
    line-height: 1;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: rgba(215, 182, 53, 0.1);
    border: 1px solid rgba(215, 182, 53, 0.2);
    color: #D7B635;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: #D7B635;
    color: #ffffff;
    transform: scale(1.05) rotate(-3deg);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-card h3 {
    font-size: 18px;
    color: #101D31;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Callout Banner */
.besichtigung-callout-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, #101D31 0%, #1c2e4a 100%);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(215, 182, 53, 0.3);
    box-shadow: 0 20px 50px rgba(10, 17, 40, 0.15);
}

.callout-text h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.callout-text p {
    color: #cbd5e1;
    font-size: 15px;
    margin: 0;
    max-width: 680px;
}

/* Other Services Grid */
.section-title-md {
    font-size: 28px;
    margin-bottom: 12px;
}

.section-desc {
    color: #64748b;
    font-size: 15.5px;
    margin-bottom: 30px;
}

.other-services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-mini-card {
    background: #ffffff;
    border: 1px solid rgba(16, 29, 49, 0.08);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-mini-card:hover {
    transform: translateX(6px);
    border-color: rgba(215, 182, 53, 0.4);
    box-shadow: 0 10px 30px rgba(16, 29, 49, 0.06);
}

.service-mini-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 29, 49, 0.04);
    border-radius: 12px;
    color: #101D31;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-mini-card:hover .service-mini-icon {
    background: #D7B635;
    color: #ffffff;
}

.service-mini-icon svg {
    width: 22px;
    height: 22px;
}

.service-mini-body h3 {
    font-size: 18px;
    color: #101D31;
    margin-bottom: 6px;
}

.service-mini-body p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #D7B635;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Sidebar Callback & Feature Cards */
.callback-card {
    background: linear-gradient(145deg, #101D31 0%, #1c2e4a 100%) !important;
    border: 1px solid rgba(215, 182, 53, 0.25) !important;
    color: #ffffff !important;
}

.callback-card .sidebar-title {
    color: #ffffff !important;
}

.callback-card .sidebar-text {
    color: #cbd5e1 !important;
}

.sidebar-callback-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.sidebar-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.sidebar-input::placeholder {
    color: #94a3b8;
}

.sidebar-input:focus {
    border-color: #D7B635;
    background: rgba(255, 255, 255, 0.12);
}

.summary-features-card {
    background: #f8fafc !important;
    border: 1px solid rgba(16, 29, 49, 0.08) !important;
}

.sidebar-feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
}

.sidebar-feature-list li svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* Responsive Media Queries for Privatumzug */
@media (max-width: 1100px) {
    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .besichtigung-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .besichtigung-callout-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .callout-action {
        width: 100%;
    }
    .callout-action .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .trust-strip-grid {
        grid-template-columns: 1fr;
    }
    .besichtigung-steps-grid {
        grid-template-columns: 1fr;
    }
    .glass-feature-card {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   Montage & Demontage Ultra Luxury Styles
   ========================================================================== */
.montage-page-wrapper {
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
}

/* Hero Section */
.montage-hero {
    background: linear-gradient(135deg, #101d31 0%, #0a1220 100%);
    padding: 100px 0 90px;
    position: relative;
    color: #ffffff;
}

.montage-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.montage-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215, 182, 53, 0.15);
    border: 1px solid rgba(215, 182, 53, 0.3);
    color: #d7b635;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.montage-hero .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d7b635;
    box-shadow: 0 0 10px #d7b635;
}

.montage-hero .hero-title {
    font-family: var(--font-heading, "Noto Sans", sans-serif);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}

.montage-hero .hero-title .text-gold {
    color: #d7b635;
    background: linear-gradient(135deg, #f5cf47 0%, #c4a226 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.montage-hero .hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.montage-hero .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.montage-hero .hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.montage-hero .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
}

.montage-hero .trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(215, 182, 53, 0.15);
    color: #d7b635;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.montage-hero .trust-icon svg {
    width: 16px;
    height: 16px;
}

/* Bento Features Grid */
.montage-bento-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
}

.section-title-center .sub-heading {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #d7b635;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title-center .main-heading {
    font-family: var(--font-heading, "Noto Sans", sans-serif);
    font-size: 36px;
    font-weight: 800;
    color: #101d31;
    margin-bottom: 16px;
}

.section-title-center .section-desc {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.7;
}

.montage-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-item {
    background: #f8fafc;
    border: 2px solid #101d31;
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 29, 49, 0.04);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(16, 29, 49, 0.12);
}

.bento-item.item-large {
    grid-column: span 2;
    background: linear-gradient(145deg, #101d31 0%, #0a1220 100%);
    border: 2px solid #D7B635;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(10, 17, 40, 0.2), 0 0 15px rgba(215, 182, 53, 0.1);
}

.bento-item.item-large:hover {
    border-color: #e5c43d;
    box-shadow: 0 20px 45px rgba(215, 182, 53, 0.25);
}

.bento-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(215, 182, 53, 0.15);
    border: 1px solid rgba(215, 182, 53, 0.3);
    color: #d7b635;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.bento-icon-box svg {
    width: 26px;
    height: 26px;
}

.bento-item h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #101d31;
}

.bento-item.item-large h3 {
    color: #ffffff;
}

.bento-item p {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

.bento-item.item-large p {
    color: #cbd5e1;
}

.bento-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bento-list li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #d7b635;
}

/* Montage Showcase Grid */
.montage-services-showcase {
    padding: 90px 0;
    background-color: #f1f5f9;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.showcase-card {
    background: #ffffff;
    border: 2px solid #101d31;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(16, 29, 49, 0.04);
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 29, 49, 0.1);
}

.sc-header {
    margin-bottom: 18px;
}

.sc-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #d7b635;
    background: rgba(215, 182, 53, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
}

.sc-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #101d31;
    margin: 0;
}

.sc-body p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
}

.sc-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #101d31;
}

.sc-features svg {
    width: 18px;
    height: 18px;
    color: #d7b635;
}

/* Montage 4-Step Process */
.montage-process-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step-card {
    background: #ffffff;
    border: 2px solid #101d31;
    border-radius: 20px;
    padding: 30px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(16, 29, 49, 0.1);
}

.step-num {
    font-family: var(--font-heading, "Noto Sans", sans-serif);
    font-size: 36px;
    font-weight: 900;
    color: #d7b635;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #101d31;
    margin-bottom: 10px;
}

.process-step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Montage Contact Strip */
.montage-contact-strip {
    padding: 60px 0;
    background: linear-gradient(135deg, #101d31 0%, #0a1220 100%);
    color: #ffffff;
    border-top: 2px solid #D7B635;
    border-bottom: 2px solid #D7B635;
}

.contact-strip-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.strip-left h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.strip-left p {
    font-size: 15px;
    color: #cbd5e1;
    margin: 0;
    max-width: 500px;
}

.strip-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.strip-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.strip-contact-card:hover {
    background: rgba(215, 182, 53, 0.15);
    border-color: #d7b635;
    transform: translateY(-2px);
}

.scc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(215, 182, 53, 0.2);
    color: #d7b635;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scc-icon svg {
    width: 20px;
    height: 20px;
}

.scc-info {
    display: flex;
    flex-direction: column;
}

.scc-info span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94a3b8;
}

.scc-info strong {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

/* Related Services Section */
.related-services-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.related-card {
    background: #f8fafc;
    border: 2px solid #101d31;
    border-radius: 18px;
    padding: 24px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(16, 29, 49, 0.1);
    border-color: #d7b635;
}

.rc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(215, 182, 53, 0.12);
    color: #d7b635;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.rc-icon svg {
    width: 22px;
    height: 22px;
}

.related-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #101d31;
    margin-bottom: 8px;
}

.related-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
}

.rc-link {
    font-size: 13px;
    font-weight: 800;
    color: #d7b635;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .montage-bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item.item-large {
        grid-column: span 1;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .montage-hero .hero-title {
        font-size: 34px;
    }
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
}

