/* === RESET & BASE === */

:root {
    --global-palette2: #10b981;
    /* Theme Green Override */
}

html {
    scroll-behavior: smooth;
}

#top {
    position: absolute;
    top: 0;
}

/* Scoped Resets to prevent breaking theme/WP styles */
#debouchage-express-landing,
.debouchage-dashboard-app,
.login-gate-container {
    box-sizing: border-box;
}

#debouchage-express-landing *,
#debouchage-express-landing *::before,
#debouchage-express-landing *::after,
.debouchage-dashboard-app *,
.debouchage-dashboard-app *::before,
.debouchage-dashboard-app *::after,
.login-gate-container *,
.login-gate-container *::before,
.login-gate-container *::after {
    box-sizing: inherit;
    margin: 0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

#debouchage-express-landing {
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    background: #ffffff;
}

/* === HEADER === */

.header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: translateX(4px);
}

.logo-image {
    height: 70px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.header-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.capsule-visual-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    overflow: hidden;
    padding: 2px;
}

.company-name {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.4rem 1.2rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.capsule-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #064e3b;
    /* Dark emerald background */
}

.capsule-shape {
    position: absolute;
    filter: blur(8px);
    opacity: 0.7;
}

.shape-1 {
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 35%;
    top: -10px;
    left: -10px;
    animation: rotate-float 10s infinite linear;
}

.shape-2 {
    width: 50px;
    height: 50px;
    background: #059669;
    border-radius: 50%;
    bottom: -20px;
    right: -10px;
    animation: rotate-float 15s infinite linear reverse;
}

.shape-3 {
    width: 30px;
    height: 30px;
    background: #34d399;
    border-radius: 20%;
    top: 50%;
    left: 40%;
    animation: pulse-float 8s infinite ease-in-out;
}

@keyframes rotate-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10px, 5px) rotate(120deg);
    }

    66% {
        transform: translate(-5px, 10px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes pulse-float {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2) translate(5px, -5px);
        opacity: 0.8;
    }
}

.company-tagline {
    font-size: 12px;
    color: #4b5563;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Mobile responsiveness for header */

@media (max-width: 768px) {
    .header {
        padding: 6px 0;
    }

    .header-container {
        padding: 0 15px;
        margin: 0;
        max-width: none;
        justify-content: space-between;
        width: 100%;
    }

    .header-logo {
        gap: 10px;
        flex: none;
    }

    .logo-image {
        height: 60px !important;
    }

    .company-name {
        font-size: 16px;
    }

    .company-tagline {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 5px 0;
    }

    .header-container {
        padding: 0 10px;
        margin: 0;
        max-width: none;
        justify-content: space-between;
        width: 100%;
    }

    .header-logo {
        gap: 8px;
        flex: none;
    }

    .logo-image {
        height: 50px !important;
    }

    .company-name {
        font-size: 15px;
    }

    .company-tagline {
        font-size: 8px;
    }
}

/* === MAIN WRAPPER === */

.main-wrapper {
    min-height: 100vh;
    width: 100%;
}

/* === HERO SECTION === */

/* === HERO SECTION (TIRO STYLE) === */

.hero-section.tiro-style {
    background: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    color: #1a1a1a;
}

.hero-section.split-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: stretch;
}

.hero-form-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.hero-form-half::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: #022c22;
    /* Blurred Green blobs only */
    background-image:
        radial-gradient(circle at 50% 50%, rgba(2, 44, 34, 1) 0%, transparent 60%),
        /* Light Green blobs - Blurred */
        radial-gradient(circle at 35% 35%, rgba(52, 211, 153, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 65% 65%, rgba(220, 252, 231, 0.5) 0%, transparent 50%),
        /* Dark Green blobs - Blurred */
        radial-gradient(circle at 20% 50%, rgba(26, 119, 51, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(25, 119, 51, 0.6) 0%, transparent 40%);
    animation: vortex-spin 3s infinite linear;
    z-index: -2;
    filter: blur(60px);
    /* Greens remain blurred */
}

.hero-form-half::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    /* Dark Sharp Orange blobs - High visibility, NO BLUR */
    background-image:
        /* Darker Orange blobs - Sharp edges */
        radial-gradient(circle at 65% 35%, rgba(234, 88, 12, 0.9) 0%, transparent 30%),
        radial-gradient(circle at 35% 65%, rgba(194, 65, 12, 0.9) 0%, transparent 25%),
        /* Extra small sharp orange accent */
        radial-gradient(circle at 50% 80%, rgba(249, 142, 52, 1) 0%, transparent 15%);
    animation: vortex-spin 3s infinite linear;
    z-index: -1;
    filter: none;
    /* No blur for orange blobs */
    pointer-events: none;
}

@keyframes vortex-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Form Background Animated Shapes */
.form-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.form-bg-shape {
    position: absolute;
    filter: blur(40px);
    opacity: 0.25;
    /* Increased opacity */
    background: #064e3b;
    border-radius: 50%;
}

.form-bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -100px;
    background: #10b981;
    /* Brighter emerald */
    animation: float-slow 20s infinite alternate ease-in-out;
}

.form-bg-shape.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -80px;
    background: #1a7733;
    /* New deep green */
    animation: float-slow 25s infinite alternate-reverse ease-in-out;
}

.form-bg-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 10%;
    background: #34d399;
    /* Even brighter green */
    animation: rotate-float-large 18s infinite linear;
}

.form-bg-shape.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    background: #f98e34;
    /* New orange shape */
    animation: float-slow 22s infinite alternate ease-in-out;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.1);
    }

    100% {
        transform: translate(-10px, 15px) scale(0.95);
    }
}

@keyframes rotate-float-large {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    50% {
        transform: rotate(180deg) translate(30px, 50px);
    }

    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}



.hero-content-half {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 2rem 4rem 5%;
    position: relative;
    background-image: url('../img/hero-bg-v2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.glass-content-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.glass-content-box .hero-title .title-main,
.glass-content-box .hero-title .title-sub,
.glass-content-box .hero-description,
.glass-content-box .hero-description strong,
.glass-content-box .rating-text {
    color: #ffffff !important;
}

.glass-content-box .hero-description {
    opacity: 0.95;
}

.hero-container {
    max-width: 700px;
    /* Reduced since it's only half width now */
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

/* --- Left Column: Content --- */

.hero-content-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.rating-stars {
    color: #10b981;
    letter-spacing: 2px;
}

.rating-text {
    color: #4b5563;
}

.hero-section.tiro-style .hero-title {
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-section.tiro-style .title-main {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.hero-section.tiro-style .title-sub {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: #4b5563;
    font-weight: 500;
}

.hero-section.tiro-style .hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-pill {
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid transparent;
}

.btn-outline:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Hero Form Container --- */

.hero-form-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 4rem 5% 4rem 2rem;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.contact-form-hero .form-field input,
.contact-form-hero .form-field select,
.contact-form-hero .form-field textarea {
    width: 100%;
    box-sizing: border-box !important;
    line-height: normal !important;
    text-align: left !important;
    direction: ltr !important;
    margin: 0 !important;
    padding: 1rem 1.25rem !important;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #000000;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.contact-form-hero .form-field input::placeholder,
.contact-form-hero .form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-hero .form-field input:focus,
.contact-form-hero .form-field select:focus,
.contact-form-hero .form-field textarea:focus {
    outline: none;
    border-color: #10b981;
    background: #050505;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.form-field.full-width {
    grid-column: span 2;
}

.contact-form-hero textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

.hero-form-disclaimer {
    font-size: 0.875rem;
    color: #ffffff;
    text-align: center;
    margin: 0.5rem 0 0;
}


/* --- Right Column: Visual in Split --- */

.hero-visual-col {
    position: relative;
    height: 350px;
    width: 100%;
    margin: 0;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-half .hero-visual-col {
    margin: 2rem 0 0 0;
}

.mesh-gradient-visual {
    width: 90%;
    height: 90%;
    border-radius: 32px;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-wrapper {
    position: relative;
    width: 80%;
    height: 80%;
}

/* --- Floating Cards --- */

.floating-card-wrapper.single-card-layout {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-profile-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-profile-card:hover {
    transform: scale(1.02) translateY(-10px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.card-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.profile-location {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

.contact-actions-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-action-pill {
    flex: 1;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-action-pill:hover {
    background: #ffffff;
    border-color: #10b981;
    transform: translateY(-2px);
}

.phone-number-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.action-circle-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111827;
    transition: all 0.3s ease;
}

.action-circle-btn:hover {
    background: #ffffff;
    border-color: #10b981;
    transform: translateY(-2px);
    color: #10b981;
}

.card-profile-footer {
    display: flex;
    justify-content: center;
}

.matching-contacts-pill {
    background: #ffffff;
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    width: 100%;
}

.avatar-stack-mini {
    position: relative;
    width: 40px;
    height: 40px;
}

.mini-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.spark-icon-mini {
    position: absolute;
    top: -5px;
    left: -10px;
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid #ffffff;
}

.matching-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}





@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -20px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-15px, -15px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, 20px);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 10px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- Hero Form Adjustments --- */
.hero-form-section {
    background: #ffffff;
    padding-bottom: 4rem;
}

.hero-form-section .hero-content-wrapper {
    padding-top: 0;
}

/* --- Mobile Styling --- */
@media (max-width: 1024px) {
    .hero-section.split-layout {
        flex-direction: column;
        /* Stacks Form on top of Content */
    }

    .hero-form-half,
    .hero-content-half {
        width: 100%;
        padding: 2rem 5%;
        justify-content: center;
    }

    .hero-container {
        text-align: center;
    }

    .hero-content-col {
        align-items: center;
    }

    .hero-section.tiro-style .hero-title,
    .hero-section.tiro-style .hero-description {
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-content-half .hero-visual-col {
        height: 300px;
    }
}


.image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    min-width: 200px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.badge-logo {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #056532 0%, #66b935 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.badge-provider {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.025em;
}

.badge-content {
    padding: 1rem;
    text-align: center;
}

.badge-stars {
    color: #f59e0b;
    font-size: 1.125rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(245, 158, 11, 0.3);
}

.badge-rating {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-reviews {
    font-size: 0.6875rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.2;
}

.badge-footer {
    padding: 0.5rem 1rem 0.75rem;
    border-top: 1px solid #e2e8f0;
    background: rgba(5, 101, 50, 0.05);
}

.badge-verified {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #66b935;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.badge-verified::before {
    content: "✓";
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #056532 0%, #66b935 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
}

/* === HERO CONTENT === */

.hero-content-wrapper {
    flex: 1;
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 5;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* === BRAND LABEL === */

.brand-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #056532, #66b935);
}

.brand-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* === HERO TITLE === */

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: #056532;
    line-height: 1.2;
}

/* === HERO DESCRIPTION === */

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* === TRUST POINTS === */

.trust-points {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: #056532;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* === DESKTOP ONLY ELEMENTS === */

.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }
}

/* === HEADER PHONE === */

.eb-header-phone-container {
    margin-left: auto;
    overflow: hidden;
}

.eb-header-phone-container p,
.services-cta-buttons p,
.services-cta-buttons br,
.why-choose-cta-buttons p,
.why-choose-cta-buttons br,
.faq-cta p,
.faq-cta br,
.cta-highlight p,
.cta-highlight br,
.form-submit-inline p,
.form-submit-inline br,
.form-submit p,
.form-submit br,
.image-badge p,
.image-badge br {
    display: none !important;
}

.eb-header-phone-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    border-radius: 999px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px -5px rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.eb-header-phone-btn:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 15px 30px -10px rgba(5, 150, 105, 0.5);
    color: #ffffff;
}

.eb-header-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.eb-header-phone-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.eb-header-phone-content {
    display: flex;
    flex-direction: column;
}

.eb-header-phone-number {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.2px;
}

.footer-watermark {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(10rem, 25vw, 25rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.services-cta-buttons,
.why-choose-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {

    .services-cta-buttons,
    .why-choose-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.services-phone-button,
.why-choose-phone-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #056532;
    background: white;
    border: 2px solid #056532;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.services-phone-button:hover,
.why-choose-phone-button:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: #000000;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.phone-number {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.phone-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1;
}

/* === CONTACT FORM SECTION === */

.contact-form-section {
    margin-top: 2rem;
    width: 100%;
}

.contact-form-inline {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-form-inline:hover {
    border-color: #056532;
    box-shadow: 0 8px 20px rgba(5, 101, 50, 0.1);
}

.contact-form-inline .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-field {
    margin-bottom: 0;
}

.contact-form-inline .form-field {
    margin-bottom: 1.5rem;
}

.contact-form-inline .form-row .form-field {
    margin-bottom: 0;
}

.contact-form-inline .form-field input,
.contact-form-inline .form-field select,
.contact-form-inline .form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #ffffff;
}

.contact-form-inline .form-field input:focus,
.contact-form-inline .form-field select:focus,
.contact-form-inline .form-field textarea:focus {
    outline: none;
    border-color: #056532;
    box-shadow: 0 0 0 3px rgba(5, 101, 50, 0.1);
}

.contact-form-inline .form-field textarea {
    resize: vertical;
    margin-bottom: 1.5rem;
}

.form-submit-inline {
    width: 100%;
    background: linear-gradient(135deg, #056532 0%, #2e8b57 50%, #66b935 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px rgba(5, 101, 50, 0.15);
}

.form-submit-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    background: #000000;
}

.form-submit-inline .submit-arrow {
    transition: transform 0.3s ease;
}

.form-submit-inline:hover .submit-arrow {
    transform: translateX(4px);
}

.form-disclaimer-inline {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* === FLOATING CALL BUTTON === */

.floating-call-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #1a8b5e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    border-radius: 50%;
    display: none;
    /* Controlled by JS */
    box-shadow: 0 4px 20px rgba(26, 139, 94, 0.4);
    z-index: 10000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Radiating Pulse Rings */
.floating-call-button::before,
.floating-call-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    z-index: -1;
    animation: pulse-ring 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.floating-call-button::after {
    animation-delay: 1.25s;
}

/* Wiggle Attention Grabber */
#floatingCallBtn {
    animation: attention-wiggle 6s ease-in-out infinite;
    animation-delay: 3s;
}

.floating-call-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #000000;
}

.floating-call-button:active {
    transform: scale(0.95);
}

.call-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.call-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF !important;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes attention-wiggle {

    0%,
    90%,
    100% {
        transform: rotate(0);
    }

    92% {
        transform: rotate(-15deg) scale(1.1);
    }

    94% {
        transform: rotate(15deg) scale(1.1);
    }

    96% {
        transform: rotate(-15deg) scale(1.1);
    }

    98% {
        transform: rotate(15deg) scale(1.1);
    }
}

.call-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(5, 101, 50, 0.4);
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Show floating button on mobile only */

@media (max-width: 767px) {
    .floating-call-button {
        display: block;
    }
}

/* === WHY CHOOSE SECTION === */

.why-choose-section {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.why-choose-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.why-choose-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.why-choose-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.why-choose-description {
    font-size: 1.15rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-description strong {
    color: #1a8b5e;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

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

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

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(26, 139, 94, 0.15);
    border-color: rgba(26, 139, 94, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a8b5e 0%, #10b981 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 24px rgba(26, 139, 94, 0.25);
    transform: rotate(-5deg);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(26, 139, 94, 0.35);
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
    stroke-width: 2.5;
}

.benefit-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.why-choose-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 3.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.why-choose-cta-text {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.why-choose-cta-button {
    background: linear-gradient(135deg, #1a8b5e 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(26, 139, 94, 0.25);
}

.why-choose-cta-button:hover {
    background: #000000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-choose-cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

.why-choose-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* === WHY CHOOSE RESPONSIVE === */

@media (max-width: 767px) {
    .why-choose-section {
        padding: 3rem 0;
    }

    .why-choose-container {
        padding: 0 1.5rem;
    }

    .why-choose-header {
        margin-bottom: 3rem;
    }

    .why-choose-title {
        font-size: 2.25rem;
    }

    .why-choose-description {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    .benefit-title {
        font-size: 1.125rem;
    }

    .why-choose-cta {
        padding: 2rem 1.5rem;
    }

    .why-choose-cta-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === HOW IT WORKS SECTION === */

.how-it-works-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.how-it-works-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.how-it-works-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    position: relative;
}

@media (min-width: 1024px) {
    .process-steps {
        flex-wrap: nowrap;
        gap: 0;
    }
}

.process-step {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .process-step {
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .process-step::after {
        content: "";
        position: absolute;
        top: 65px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #10b981 0%, transparent 100%);
        z-index: -1;
        opacity: 0.3;
    }

    .process-step:last-child::after {
        display: none;
    }
}

.process-step:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(26, 139, 94, 0.15);
}

.step-number {
    font-size: 0.875rem;
    font-weight: 800;
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 1px;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1a8b5e 0%, #10b981 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 25px rgba(26, 139, 94, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1.75rem;
    position: relative;
    transform: rotate(-5deg);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(26, 139, 94, 0.4);
}

.step-icon svg {
    width: 42px;
    height: 42px;
    color: #ffffff;
    stroke-width: 2;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.step-description {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin: 0;
    max-width: 220px;
}

.step-arrow {
    display: none;
    /* Replaced by line connectors or not needed in grid */
}

.how-it-works-cta {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 40px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(26, 139, 94, 0.1);
    border-color: rgba(26, 139, 94, 0.2);
}

.cta-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

.cta-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a8b5e 0%, #10b981 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(26, 139, 94, 0.3);
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #10b981;
    border-radius: 24px;
    z-index: 1;
    animation: cta-pulse-ring 2s infinite;
    opacity: 0.5;
}

@keyframes cta-pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.cta-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    stroke-width: 2.5;
}

.cta-text {
    text-align: center;
}

.cta-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtext {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.cta-features span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a8b5e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 139, 94, 0.08);
    padding: 6px 16px;
    border-radius: 99px;
}

.cta-features .check-icon {
    font-style: normal;
    font-weight: 900;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    justify-content: center;
}

@media (max-width: 640px) {
    .cta-actions {
        flex-direction: column;
        padding: 0 1rem;
    }
}

.cta-button {
    padding: 1.25rem 2.5rem;
    border-radius: 99px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #1a8b5e 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 25px rgba(26, 139, 94, 0.25);
    flex: 1;
    max-width: 350px;
}

.cta-button.primary:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #1a8b5e;
    border: 2px solid #1a8b5e;
    box-shadow: 0 5px 15px rgba(26, 139, 94, 0.1);
    flex: 1;
    max-width: 350px;
}

.cta-button.secondary:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* === HOW IT WORKS RESPONSIVE === */

@media (max-width: 767px) {
    .how-it-works-section {
        padding: 3rem 0;
    }

    .how-it-works-container {
        padding: 0 1.5rem;
    }

    .how-it-works-title {
        font-size: 2rem;
    }

    .how-it-works-description {
        font-size: 1rem;
    }

    .how-it-works-header {
        margin-bottom: 3rem;
    }

    .process-steps {
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
        top: 0.75rem;
        left: 1.5rem;
    }

    .step-icon {
        width: 64px;
        height: 64px;
    }

    .step-icon svg {
        width: 32px;
        height: 32px;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .process-step:hover .step-arrow {
        transform: rotate(90deg) translateX(0) translateY(8px);
    }

    .cta-highlight {
        padding: 3rem 1.5rem;
        gap: 1.5rem;
        border-radius: 32px;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }

    .cta-subtext {
        font-size: 1rem;
    }

    .cta-features {
        gap: 0.75rem;
    }

    .cta-features span {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .cta-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .cta-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .process-step {
        padding: 2rem;
    }

    .step-icon {
        width: 72px;
        height: 72px;
    }

    .step-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 1024px) {
    .process-steps {
        gap: 3rem;
    }

    .process-step {
        padding: 3rem;
    }
}

/* === SERVICES SECTION === */

.services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.services-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(26, 139, 94, 0.15);
    border-color: rgba(26, 139, 94, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(26, 139, 94, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card .service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #1a8b5e;
}

.service-card .service-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-features li {
    font-size: 0.875rem;
    color: #444444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    border: none;
}

.service-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.services-cta {
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.services-cta-text {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.services-cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.services-cta-button:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

.services-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* === SERVICES RESPONSIVE === */

@media (max-width: 767px) {
    .services-section {
        padding: 3rem 0;
    }

    .services-container {
        padding: 0 1.5rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-cta {
        padding: 2rem 1.5rem;
    }

    .services-cta-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1300px;
    }
}

/* === REVIEWS SECTION === */

.reviews-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.reviews-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.reviews-description {
    font-size: 1.15rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(26, 139, 94, 0.15);
    border-color: rgba(26, 139, 94, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a8b5e 0%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(26, 139, 94, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.avatar-initials {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.review-location {
    font-size: 0.875rem;
    color: #1a8b5e;
    font-weight: 700;
    background: rgba(26, 139, 94, 0.08);
    padding: 2px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-text {
    font-size: 1rem;
    color: #444444;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.review-date {
    font-size: 0.875rem;
    color: #888888;
    text-align: right;
    font-weight: 600;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 3.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1a8b5e;
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.1rem;
    color: #555555;
    font-weight: 700;
}


/* === REVIEWS RESPONSIVE === */

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

@media (max-width: 767px) {
    .reviews-title {
        font-size: 2.25rem;
    }

    .reviews-container {
        padding: 0 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }


}

/* === FAQ SECTION === */

/* --- Premium FAQ Section (Theme Aligned) --- */
.faq-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    /* Subtle mesh gradient background */
    background-image:
        radial-gradient(at 0% 0%, rgba(249, 115, 22, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.03) 0px, transparent 50%);
}

.faq-container {
    max-width: 900px;
    /* Focused width for readability */
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-description {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
    /* Premium shadow on hover */
    border-color: rgba(249, 115, 22, 0.3);
    /* Subtle orange border hint */
}

.faq-item.active {
    border-color: #f97316;
    /* Theme Orange */
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.15);
    /* Orange glow shadow */
    background: #fff;
    transform: scale(1.01);
    /* Slight pop */
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2.5rem;
    /* Spacious padding */
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 2rem;
}

.question-text {
    font-size: 1.25rem;
    font-weight: 800;
    /* Bold premium text */
    color: #1e293b;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.faq-item:hover .question-text {
    color: #f97316;
}

.faq-item.active .question-text {
    color: #f97316;
}

.question-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: #f1f5f9;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.question-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 3;
}

.faq-item.active .question-icon {
    transform: rotate(180deg);
    background: #f97316;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer-inner {
    padding: 0 2.5rem 2.5rem;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s ease;
}

.faq-item.active .answer-inner {
    opacity: 1;
    transform: translateY(0);
}

.answer-inner strong {
    color: #f97316;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-question {
        padding: 1.5rem;
        gap: 1rem;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .answer-inner {
        padding: 0 1.5rem 1.5rem;
    }
}


/* --- FAQ CTA --- */
.faq-cta {
    margin-top: 6rem;
    width: 100%;
    display: flex !important;
    justify-content: center;
    position: relative;
    z-index: 10;
    clear: both;
}

.faq-cta-glass {
    background: #ffffff;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 40px;
    padding: 4.5rem 4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    position: relative;
    max-width: 1000px;
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a !important;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    display: block !important;
}

.faq-cta-text {
    font-size: 1.35rem;
    color: #444444 !important;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: block !important;
}

.faq-cta-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.faq-cta-button {
    background: linear-gradient(135deg, #1a8b5e 0%, #10b981 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 20px;
    padding: 1.6rem 5rem;
    font-size: 1.45rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(26, 139, 94, 0.3);
    display: inline-flex !important;
    align-items: center;
    gap: 1.25rem;
}

.faq-cta-button:hover {
    background: #000000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.faq-cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

.faq-cta-button:hover .cta-arrow {
    transform: translateX(6px);
}

/* === FAQ RESPONSIVE === */

@media (max-width: 1199px) {
    .faq-title {
        font-size: 2.75rem;
    }

    .faq-split-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 1023px) {
    .faq-split-wrapper {
        flex-direction: column;
        gap: 4rem;
    }

    .faq-header-col {
        position: static;
        flex: none;
        width: 100%;
        text-align: center;
    }

    .faq-header {
        text-align: center;
    }

    .faq-description {
        margin: 0 auto;
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-container {
        padding: 0 1.5rem;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1.15rem;
        gap: 1rem;
    }

    .question-jewel {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .question-jewel svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer {
        padding-left: 4.5rem;
        padding-right: 1.5rem;
    }

    .faq-cta-glass {
        padding: 3rem 1.5rem;
        border-radius: 30px;
    }

    .faq-cta-title {
        font-size: 1.85rem !important;
    }

    .faq-cta-text {
        font-size: 1.15rem !important;
        margin-bottom: 2.5rem !important;
    }

    .faq-cta-button {
        padding: 1.25rem 3rem !important;
        font-size: 1.2rem !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

/* === FOOTER === */

/* === THE GLASS MONOLITH FOOTER === */
.footer {
    background: #050a14;
    padding: 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Background Glows for Depth */
.footer-bg-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.glow-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

/* Monolith Header Section */
.footer-monolith-header {
    padding: 8rem 0 6rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.monolith-line {
    width: 60px;
    height: 4px;
    background: #10b981;
    margin: 0 auto 2.5rem;
    border-radius: 99px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.monolith-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.monolith-subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

.monolith-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: #ffffff;
    color: #050a14;
    padding: 1.5rem 4rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.monolith-btn-main .btn-icon {
    font-size: 1.6rem;
}

.monolith-btn-main:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2);
    background: #10b981;
    color: #ffffff;
}

/* Main Grid Area */
.footer-main-monolithic {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 6rem;
    padding: 6rem 0;
}

/* Brand Column */
.monolithic-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.monolithic-brand .brand-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.05em;
    margin-bottom: 0.25rem;
}

.monolithic-brand .brand-status {
    font-size: 0.85rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.brand-manifesto {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 350px;
}

.social-monolith-group {
    display: flex;
    gap: 1rem;
}

.monolith-social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.4s ease;
}

.monolith-social-link:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: #10b981;
    transform: translateY(-5px);
}

/* Nav Column */
.monolith-title-small {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.monolith-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.monolith-nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.monolith-nav a span {
    color: #10b981;
    opacity: 0;
    transition: all 0.3s ease;
}

.monolith-nav a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.monolith-nav a:hover span {
    opacity: 1;
}

/* Contact Column */
.monolith-contact-tablet {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.tablet-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.tablet-icon svg {
    width: 24px;
    height: 24px;
}

.tablet-content {
    display: flex;
    flex-direction: column;
}

.tablet-label {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.tablet-link,
.tablet-value {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.tablet-link:hover {
    color: #10b981;
}

.monolith-contact-tablet:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(10px);
}

/* Bottom Bar */
.footer-monolith-bottom {
    padding: 3rem 0 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.copyright {
    font-size: 1rem;
    color: #334155;
    font-weight: 700;
}

.divider {
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
}

.tagline {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bottom-legal {
    display: flex;
    gap: 3rem;
}

.bottom-legal a {
    text-decoration: none;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.bottom-legal a:hover {
    color: #ffffff;
}

/* Giant Watermark */
.footer-watermark {
    position: absolute;
    bottom: -5rem;
    right: -2rem;
    font-size: 18rem;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    line-height: 1;
    letter-spacing: -0.05em;
    z-index: 2;
}

/* === MONOLITH RESPONSIVE === */
@media (max-width: 1100px) {
    .footer-main-monolithic {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .brand-info-col {
        grid-column: 1 / -1;
        text-align: center;
    }

    .brand-manifesto {
        margin: 0 auto 2.5rem;
    }

    .social-monolith-group {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .monolith-title {
        font-size: 2.25rem;
    }

    .monolith-subtitle {
        font-size: 1.1rem;
    }

    .monolith-btn-main {
        width: 100%;
        padding: 1.25rem;
    }

    .footer-main-monolithic {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .monolith-nav a {
        justify-content: center;
    }

    .monolith-contact-tablet {
        justify-content: center;
        text-align: left;
    }

    .footer-monolith-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .bottom-legal {
        gap: 1.5rem;
    }

    .footer-watermark {
        font-size: 10rem;
    }
}



/* === IMPRESSUM SECTION === */

.impressum-section {
    padding: 4rem 0;
    background: #ffffff;
    min-height: 80vh;
}

.impressum-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.impressum-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impressum-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.impressum-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.impressum-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #056532;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    font-weight: 600;
    color: #374151;
}

.info-item span {
    color: #1a1a1a;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.services-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    border-left: 3px solid #056532;
    background: #fef2f2;
    border-radius: 0 8px 8px 0;
    color: #374151;
    position: relative;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: #056532;
    font-weight: bold;
}

.legal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #056532;
}

.legal-item strong {
    display: block;
    font-weight: 600;
    color: #056532;
    margin-bottom: 0.5rem;
}

.legal-item p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.disclaimer h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem;
}

.disclaimer h3:first-child {
    margin-top: 0;
}

.disclaimer p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.consumer-info p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid #e5e7eb;
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.contact-cta p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-cta .cta-button {
    background: linear-gradient(135deg, #056532 0%, #66b935 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(5, 101, 50, 0.3);
}

.contact-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 101, 50, 0.4);
    text-decoration: none;
}

.contact-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.contact-cta .cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* === IMPRESSUM RESPONSIVE === */

@media (max-width: 767px) {
    .impressum-section {
        padding: 3rem 0;
    }

    .impressum-container {
        padding: 0 1.5rem;
    }

    .impressum-title {
        font-size: 2.5rem;
    }

    .impressum-description {
        font-size: 1rem;
    }

    .impressum-content {
        gap: 2rem;
    }

    .info-section {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.25rem;
    }

    .info-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .services-list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 0.95rem;
    }

    .legal-item {
        padding: 1rem;
    }

    .contact-cta {
        padding: 2rem 1.5rem;
    }

    .contact-cta h3 {
        font-size: 1.25rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .impressum-title {
        font-size: 2.75rem;
    }

    .info-item {
        grid-template-columns: 180px 1fr;
    }
}

/* === SUCCESS PAGE === */

.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem 0;
}

.success-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.success-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #056532;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(5, 101, 50, 0.3);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    stroke-width: 2;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.success-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-info {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.success-info h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.success-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-info li {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
}

.success-info li:last-child {
    border-bottom: none;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-button {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.success-button.primary {
    background: linear-gradient(135deg, #056532 0%, #66b935 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(5, 101, 50, 0.3);
}

.success-button.primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.success-button.secondary {
    background: #ffffff;
    color: #056532;
    border: 2px solid #056532;
}

.success-button.secondary:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    text-decoration: none;
}

/* === SUCCESS RESPONSIVE === */

@media (max-width: 767px) {
    .success-container {
        padding: 0 1.5rem;
    }

    .success-content {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        width: 64px;
        height: 64px;
    }

    .success-icon svg {
        width: 32px;
        height: 32px;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-description {
        font-size: 1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-button {
        width: 100%;
        justify-content: center;
    }
}

/* === MODAL === */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1a1a1a;
}

/* === CONTACT FORM === */

.contact-form {
    padding: 1rem 2rem 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-field {
    margin-bottom: 0;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.875rem 1.15rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #000000;
    color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #10b981;
    background: #050505;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #056532 0%, #2e8b57 50%, #66b935 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(5, 101, 50, 0.2);
}

.form-submit:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

/* === TABLET STYLES === */

@media (min-width: 768px) {
    .hero-content-wrapper {
        padding: 3rem 2rem;
    }

    .title-main {
        font-size: 2.75rem;
    }

    .title-sub {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .trust-points {
        gap: 2rem;
    }

    .trust-point {
        font-size: 1rem;
    }

    .contact-form-inline {
        padding: 2.5rem;
    }

    .form-submit-inline {
        font-size: 1.125rem;
        padding: 1.25rem;
    }

    .image-badge {
        bottom: 2rem;
        right: 2rem;
        min-width: 220px;
    }

    .badge-content {
        padding: 1.25rem;
    }

    .badge-stars {
        font-size: 1.25rem;
        letter-spacing: 3px;
    }

    .badge-rating {
        font-size: 1.75rem;
    }

    .badge-reviews {
        font-size: 0.75rem;
    }
}

/* === DESKTOP STYLES === */

@media (min-width: 1024px) {
    .hero-section {
        flex-direction: row;
        min-height: 100vh;
        align-items: stretch;
    }

    .hero-image-wrapper {
        width: 50%;
        height: 100vh;
        min-height: 100vh;
        display: flex;
        position: relative;
        overflow: hidden;
    }

    .hero-overlay-content {
        padding: 5rem 3rem;
    }


    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        border-radius: 0;
        margin: 0;
    }

    .hero-content-wrapper {
        width: 50%;
        background: transparent;
        padding: 4rem 3rem;
        display: flex;
        align-items: center;
    }

    .hero-content {
        text-align: left;
        max-width: none;
        width: 100%;
    }

    .brand-label {
        justify-content: flex-start;
    }

    .trust-points {
        justify-content: flex-start;
    }

    .contact-form-section {
        margin-top: 2.5rem;
    }

    .title-main {
        font-size: 3.5rem;
    }

    .title-sub {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1.25rem;
        margin-left: 0;
        margin-right: 0;
        max-width: 450px;
    }
}

/* === LARGE DESKTOP === */

@media (min-width: 1200px) {
    .hero-content-wrapper {
        padding: 5rem 4rem;
    }

    .title-main {
        font-size: 4.5rem;
    }

    .title-sub {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.375rem;
        max-width: 1200px;
    }

    .contact-form-inline {
        padding: 3rem;
    }

    .form-submit-inline {
        font-size: 1.25rem;
        padding: 1.5rem;
    }
}

/* === FORM STATES === */

.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-loading .form-submit {
    background: #9ca3af;
}

.form-success {
    border-color: #056532;
    background: #f0fdf4;
}

.form-error input,
.form-error select,
.form-error textarea {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* === ACCESSIBILITY === */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #056532;
    outline-offset: 2px;
}

/* === MOBILE FORM ADJUSTMENTS === */

@media (max-width: 767px) {
    .contact-form-inline .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-inline {
        padding: 1.5rem;
        margin-bottom: 100px;
        /* Space for floating button */
    }

    .image-badge {
        min-width: 180px;
        bottom: 1rem;
        right: 1rem;
    }

    .badge-content {
        padding: 0.875rem;
    }

    .badge-stars {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .badge-rating {
        font-size: 1.25rem;
    }

    .badge-reviews {
        font-size: 0.625rem;
    }
}

/* === LEADS DASHBOARD === */
:root {
    /* Dark Theme (Default) */
    --db-bg: #06090f;
    --db-sidebar-bg: rgba(255, 255, 255, 0.01);
    --db-card-bg: rgba(255, 255, 255, 0.02);
    --db-card-hover: rgba(255, 255, 255, 0.04);
    --db-border: rgba(255, 255, 255, 0.05);
    --db-text-main: #ffffff;
    --db-text-sub: rgba(255, 255, 255, 0.4);
    --db-text-dim: rgba(255, 255, 255, 0.3);
    --db-input-bg: #000000;
    --db-shadow: rgba(0, 0, 0, 0.3);
}

.debouchage-dashboard-app.light-mode {
    /* Light Theme Overrides */
    --db-bg: #f8fafc;
    --db-sidebar-bg: #ffffff;
    --db-card-bg: #ffffff;
    --db-card-hover: #f1f5f9;
    --db-border: #e2e8f0;
    --db-text-main: #0f172a;
    --db-text-sub: #475569;
    --db-text-dim: #94a3b8;
    --db-input-bg: #f1f5f9;
    --db-shadow: rgba(0, 0, 0, 0.05);
}

/* === ADVANCED LEADS DASHBOARD APP === */
.debouchage-dashboard-app {
    display: grid;
    grid-template-columns: 240px 1fr;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999998;
    background: var(--db-bg);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--db-text-main);
    margin: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.premium-glass {
    background: var(--db-card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--db-border);
    border-radius: 20px;
}

/* Sidebar Styling */
.dashboard-sidebar {
    background: var(--db-sidebar-bg);
    border-right: 1px solid var(--db-border);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}

.brand-capsule {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    margin-bottom: 2rem;
}

.sidebar-nav {
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--db-text-sub);
    text-decoration: none !important;
    border-radius: 14px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.nav-item svg {
    width: 20px;
    height: 20px;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.sidebar-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--db-border);
    font-size: 0.8rem;
    color: var(--db-text-dim);
}

/* Main Content Area */
.dashboard-main {
    padding: 1.5rem 2rem;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.03), transparent);
    overflow-y: auto;
    color: var(--db-text-main);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.main-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--db-text-main);
}

.main-subtitle {
    color: var(--db-text-sub);
    font-size: 1rem;
}

.btn-refresh {
    background: var(--db-card-bg);
    border: 1px solid var(--db-border);
    color: var(--db-text-main);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    user-select: none;
}

.btn-refresh svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.btn-refresh:hover {
    background: var(--db-card-hover);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--db-text-sub);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Controls Bar */
.controls-bar {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2px;
    background: var(--db-input-bg);
    border-radius: 12px;
    flex-grow: 1;
    border: 1px solid var(--db-border);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.search-box svg {
    color: var(--db-text-sub);
    width: 20px;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.search-box:focus-within svg {
    color: #10b981;
}

.search-box input {
    background: var(--db-input-bg);
    border: none;
    color: var(--db-text-main);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem 0.75rem 0;
    border-radius: 0 10px 10px 0;
}

.filters {
    display: flex;
    gap: 1rem;
}

.filter-select {
    background: var(--db-card-bg);
    border: 1px solid var(--db-border);
    color: var(--db-text-main);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    outline: none;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Leads Table V2 */
.leads-section {
    padding: 1.5rem;
}

.leads-table-v2 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.leads-table-v2 th {
    padding: 0 1.5rem 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--db-text-dim);
    text-transform: uppercase;
}

.lead-row {
    background: var(--db-card-bg);
    transition: all 0.3s ease;
}

.lead-row:hover {
    background: var(--db-card-hover);
}

.lead-row td:first-child {
    border-radius: 14px 0 0 14px;
}

.lead-row td:last-child {
    border-radius: 0 14px 14px 0;
}

.lead-row td {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.client-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-name {
    font-weight: 600;
    font-size: 1rem;
}

.client-address {
    font-size: 0.75rem;
    color: var(--db-text-sub);
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-link {
    color: #10b981;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link svg {
    width: 14px;
    height: 14px;
}

.location-badge {
    font-size: 0.75rem;
    color: var(--db-text-sub);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.location-badge svg {
    width: 12px;
    height: 12px;
}

.service-pill {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.message-text {
    font-size: 0.85rem;
    color: var(--db-text-sub);
    max-width: 180px;
    display: inline-block;
    cursor: help;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.message-text:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--db-text-main);
}

.date-text {
    font-size: 0.85rem;
    color: var(--db-text-sub);
}

.status-dropdown {
    background: var(--db-card-bg);
    border: 1px solid var(--db-border);
    color: var(--db-text-main);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
}

.status-dropdown.status-new {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.status-dropdown.status-processing {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

.status-dropdown.status-completed {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.status-dropdown.status-cancelled {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.status-dropdown option {
    background: var(--db-bg);
    color: var(--db-text-main);
}

.text-right {
    text-align: right;
}

.text-right {
    text-align: right;
}

.empty-state {
    text-align: center;
    padding: 4rem !important;
    color: var(--db-text-dim);
}

@media (max-width: 1024px) {
    .debouchage-dashboard-app {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }
}

/* === DASHBOARD VIEWS === */
.dashboard-view {
    display: none;
}

.dashboard-view.active {
    display: block;
}

/* Updated Stats Container */
.stats-container-v2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
}

.stats-card-v2 {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.stats-card-v2.full-width {
    width: 100%;
}

.stats-card-v2 h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--db-text-main);
}

/* Success Rate Circle */
.success-rate-container {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.circular-progress {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(closest-side, var(--db-bg) 79%, transparent 80% 100%),
        conic-gradient(#10b981 calc(var(--val) * 1%), rgba(16, 185, 129, 0.1) 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.rate-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #10b981;
}

.rate-label {
    font-size: 0.7rem;
    color: var(--db-text-sub);
    text-transform: uppercase;
}

.print-only-status {
    display: none;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.city-stat-card {
    background: var(--db-card-bg);
    border: 1px solid var(--db-border);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.city-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.city-count {
    font-size: 0.85rem;
    color: var(--db-text-sub);
}

.city-count span {
    color: #10b981;
    font-weight: 600;
}

/* Weekly Trend */
.weekly-trend {
    height: 300px;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    padding: 2rem 0;
}

.trend-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trend-bar {
    width: 100%;
    background: linear-gradient(to top, rgba(16, 185, 129, 0.2), #10b981);
    border-radius: 8px 8px 0 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.trend-bar span {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.8;
}

.trend-label {
    font-size: 0.75rem;
    color: var(--db-text-sub);
}

/* Utility */
.nav-spacer {
    flex-grow: 1;
}

.nav-exit {
    margin-top: auto;
    color: rgba(239, 68, 68, 0.6) !important;
}

.nav-exit:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
}

@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
    }
}

/* Chart Simple List */
.chart-simple-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.chart-label span {
    color: #10b981;
    font-weight: 700;
}

.chart-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: #10b981;
    border-radius: 4px;
    transition: width 1s ease;
}

/* === DASHBOARD MODAL === */
.dashboard-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.dashboard-modal {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10000001;
}

.dashboard-modal-overlay.active .dashboard-modal {
    transform: translateY(0);
}

/* === LUXURY GLASSMORPHE MODAL redesign === */
.dashboard-modal.luxury-modal {
    max-width: 500px;
    width: 95%;
    max-height: 85vh;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    animation: luxury-modal-entry 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
    /* Ensure centering in flex box if needed */
}

@keyframes luxury-modal-entry {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.modal-header-luxury {
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.header-main-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.luxury-icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.luxury-icon-box svg {
    width: 22px;
    height: 22px;
}

.title-wrap h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.title-wrap span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-top: 2px;
}

.btn-close-modal-luxury {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.btn-close-modal-luxury svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.btn-close-modal-luxury:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}

.modal-body-luxury {
    padding: 1.5rem;
    overflow-y: auto;
    flex-grow: 1;
}

/* Custom Luxury Scrollbar for Modal Body */
.modal-body-luxury::-webkit-scrollbar {
    width: 5px;
}

.modal-body-luxury::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body-luxury::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-body-luxury::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.3);
}

.debouchage-dashboard-app.light-mode .modal-body-luxury::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
}

.debouchage-dashboard-app.light-mode .modal-body-luxury::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.2);
}

.luxury-form-section {
    margin-bottom: 1.75rem;
}

.luxury-form-section:last-child {
    margin-bottom: 0;
}

.section-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-badge::after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.15), transparent);
}

.form-row-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group-luxury {
    margin-bottom: 1.25rem;
}

.input-group-luxury.full-width {
    grid-column: span 2;
}

.input-group-luxury label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    padding-left: 4px;
}

.input-group-luxury input,
.input-group-luxury select,
.input-group-luxury textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-group-luxury input:hover,
.input-group-luxury select:hover,
.input-group-luxury textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.input-group-luxury input:focus,
.input-group-luxury select:focus,
.input-group-luxury textarea:focus {
    outline: none;
    background: #000000 !important;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-actions-luxury {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-cancel-luxury {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel-luxury:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.btn-save-luxury {
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-save-luxury:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px rgba(16, 185, 129, 0.35);
}

.btn-save-luxury:active {
    transform: translateY(0) scale(1);
}

.btn-save-luxury svg {
    width: 20px;
    height: 20px;
}

/* --- LIGHT MODE COMPATIBILITY --- */
.debouchage-dashboard-app.light-mode .dashboard-modal.luxury-modal {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.debouchage-dashboard-app.light-mode .modal-header-luxury {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.debouchage-dashboard-app.light-mode .title-wrap h2 {
    color: #0f172a;
}

.debouchage-dashboard-app.light-mode .title-wrap span {
    color: #64748b;
}

.debouchage-dashboard-app.light-mode .modal-actions-luxury {
    border-top-color: rgba(0, 0, 0, 0.05);
}

.debouchage-dashboard-app.light-mode .input-group-luxury label {
    color: #475569;
}

.debouchage-dashboard-app.light-mode .input-group-luxury input,
.debouchage-dashboard-app.light-mode .input-group-luxury select,
.debouchage-dashboard-app.light-mode .input-group-luxury textarea {
    background: #f8fafc !important;
    border-color: #e2e8f0;
    color: #0f172a;
    box-shadow: none;
}

.debouchage-dashboard-app.light-mode .input-group-luxury input:focus,
.debouchage-dashboard-app.light-mode .input-group-luxury select:focus,
.debouchage-dashboard-app.light-mode .input-group-luxury textarea:focus {
    background: #ffffff !important;
    border-color: #10b981;
}

.debouchage-dashboard-app.light-mode .btn-cancel-luxury {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #475569;
}

.debouchage-dashboard-app.light-mode .btn-cancel-luxury:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.debouchage-dashboard-app.light-mode .section-badge {
    color: #059669;
}

.debouchage-dashboard-app.light-mode .section-badge::after {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.1), transparent);
}

.debouchage-dashboard-app.light-mode .luxury-icon-box {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.15);
}

.debouchage-dashboard-app.light-mode .btn-close-modal-luxury {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #64748b;
}

/* Specific Add Modal Layout Adjustments */
.form-row-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row-luxury {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Light Mode Button Hover Overrides (Black Hover) */
.debouchage-dashboard-app.light-mode .btn-refresh:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.debouchage-dashboard-app.light-mode .btn-refresh:hover svg {
    stroke: #ffffff;
}

.debouchage-dashboard-app.light-mode .btn-save-luxury:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.debouchage-dashboard-app.light-mode .btn-cancel-luxury:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.debouchage-dashboard-app.light-mode .btn-close-modal-luxury:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: rotate(90deg);
}

.debouchage-dashboard-app.light-mode .btn-cancel-delete-luxury:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.debouchage-dashboard-app.light-mode .btn-confirm-delete-luxury:hover {
    background: #000000;
    color: #ffffff;
}

.luxury-icon-box.warning-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-radius: 14px;
}

.luxury-icon-box.warning-icon svg {
    width: 22px;
    height: 22px;
}

.delete-warning-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.75rem;
}

.delete-warning-text strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: block;
    margin-top: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.btn-cancel-delete-luxury {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel-delete-luxury:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-confirm-delete-luxury {
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-confirm-delete-luxury svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff !important;
}

.btn-confirm-delete-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.3);
}

.btn-close-delete-modal-luxury {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.btn-close-delete-modal-luxury svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.btn-close-delete-modal-luxury:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Light mode support for delete modal */
.debouchage-dashboard-app.light-mode .delete-warning-text {
    color: #475569;
}

.debouchage-dashboard-app.light-mode .delete-warning-text strong {
    color: #0f172a;
}

.debouchage-dashboard-app.light-mode .btn-cancel-delete-luxury {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #64748b;
}

.debouchage-dashboard-app.light-mode .btn-cancel-delete-luxury:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.debouchage-dashboard-app.light-mode .btn-close-delete-modal-luxury {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #64748b;
}

/* Cleanup: Removed old redundant modal definitions */

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--db-border);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--db-text-main);
}

.btn-close-modal {
    background: none;
    border: none;
    color: var(--db-text-sub);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.btn-close-modal:hover {
    color: #ef4444;
}

.modal-body {
    padding-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field.full-width {
    grid-column: span 2;
}

.form-field label {
    display: block;
    margin-bottom: 0.625rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--db-text-sub);
    letter-spacing: 0.3px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: var(--db-input-bg) !important;
    border: 1px solid var(--db-border);
    border-radius: 12px;
    padding: 0.875rem 1.125rem;
    color: var(--db-text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    background: #000000 !important;
}

.debouchage-dashboard-app.light-mode .form-field input:focus,
.debouchage-dashboard-app.light-mode .form-field select:focus,
.debouchage-dashboard-app.light-mode .form-field textarea:focus {
    background: #ffffff !important;
}

.modal-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--db-border);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-primary-v2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.btn-primary-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary-v2:active {
    transform: translateY(0);
}

/* Action Buttons in Table */
.action-buttons {
    display: flex;
    gap: 0.875rem;
    justify-content: flex-end;
}

.btn-edit-lead {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
}

.action-btn {
    appearance: none;
    -webkit-appearance: none;
    border: none !important;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    margin: 0;
}

.action-btn::after {
    content: attr(data-label);
    position: absolute;
    font-size: 10px;
    font-weight: 800;
    bottom: -15px;
    opacity: 0.5;
}

.action-btn svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    stroke-width: 2 !important;
    stroke: currentColor !important;
    fill: none !important;
    pointer-events: none;
}

.btn-edit-lead {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
}

.btn-edit-lead svg {
    stroke: #10b981 !important;
}

.btn-delete-v2 {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
}

.btn-delete-v2 svg {
    stroke: #ef4444 !important;
}

.btn-edit-lead:hover {
    background: #10b981 !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-edit-lead:hover svg {
    stroke: white !important;
}

.btn-delete-v2:hover {
    background: #ef4444 !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-delete-v2:hover svg {
    stroke: white !important;
}

/* Luxury Checkbox Styles */
.luxury-checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 20px;
    width: 20px;
    z-index: 2;
}

.luxury-checkbox-wrapper label {
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.luxury-checkbox:checked+label {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.luxury-checkbox-wrapper label:after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.luxury-checkbox:checked+label:after {
    display: block;
}

.debouchage-dashboard-app.light-mode .luxury-checkbox-wrapper label {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.debouchage-dashboard-app.light-mode .luxury-checkbox:checked+label {
    background: #10b981;
    border-color: #10b981;
}

/* Print Styles */
/* Professional Print Layout */
.print-header-luxury {
    display: none;
}

@media print {

    /* Hide non-printable elements */
    .dashboard-sidebar,
    .main-header,
    .stats-grid,
    .controls-bar,
    .dashboard-modal-overlay,
    .action-circle-btn,
    .luxury-checkbox-wrapper,
    .sidebar-footer {
        display: none !important;
    }

    /* Reset background and layout for print */
    body {
        background: white !important;
        color: black !important;
        margin: 1.5cm !important;
        padding: 0 !important;
    }

    .debouchage-dashboard-app {
        display: block !important;
        background: white !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
    }

    .dashboard-main {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .dashboard-view.active {
        display: block !important;
    }

    /* Show and Style Print Header */
    .print-header-luxury {
        display: block !important;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 2px solid #10b981;
    }

    .print-header-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 10px;
    }

    .print-brand .brand-main {
        display: block;
        font-size: 28px;
        font-weight: 800;
        color: #10b981 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .print-brand .brand-sub {
        font-size: 12px;
        color: #64748b !important;
    }

    .print-meta {
        text-align: right;
        font-size: 11px;
        line-height: 1.6;
        color: #475569 !important;
    }

    .print-meta span {
        font-weight: 700;
        color: #1e293b !important;
    }

    /* Table Styling for Print */
    .leads-section {
        background: white !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .table-responsive {
        overflow: visible !important;
    }

    .leads-table-v2 {
        width: 100% !important;
        border-collapse: collapse !important;
        border: 1px solid #e2e8f0 !important;
    }

    .leads-table-v2 th {
        background: #f8fafc !important;
        color: #0f172a !important;
        border-bottom: 2px solid #cbd5e1 !important;
        padding: 12px 10px !important;
        font-size: 11px !important;
        text-align: left !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
    }

    .leads-table-v2 td {
        border-bottom: 1px solid #e2e8f0 !important;
        padding: 12px 10px !important;
        font-size: 11px !important;
        vertical-align: middle !important;
        color: #1e293b !important;
    }

    /* Column Visibility */
    .leads-table-v2 th:first-child,
    .leads-table-v2 td:first-child,
    .leads-table-v2 th:last-child,
    .leads-table-v2 td:last-child {
        display: none !important;
    }

    .lead-row {
        display: none;
    }

    .lead-row.is-selected {
        display: table-row !important;
    }

    tr {
        page-break-inside: avoid !important;
    }

    /* Component Refinements for Print */
    .client-name {
        font-weight: 700 !important;
        font-size: 12px !important;
    }

    .location-badge,
    .service-pill {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        font-weight: 600 !important;
        color: #334155 !important;
    }

    .status-badge {
        padding: 4px 8px !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 4px !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        background: transparent !important;
    }

    .client-avatar {
        display: none !important;
    }
}

/* Luxury Toast Notification System */
.luxury-toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 20000000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.luxury-toast {
    pointer-events: auto;
    min-width: 300px;
    max-width: 400px;
    padding: 1rem 1.25rem;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    animation: toast-entry 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
}

.luxury-toast.exit {
    opacity: 0;
    transform: translateX(30px);
}

@keyframes toast-entry {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.luxury-toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.luxury-toast-message {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Toast States */
.luxury-toast.success .luxury-toast-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.luxury-toast.success {
    border-left: 3px solid #10b981;
}

.luxury-toast.error .luxury-toast-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.luxury-toast.error {
    border-left: 3px solid #ef4444;
}

.luxury-toast.warning .luxury-toast-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.luxury-toast.warning {
    border-left: 3px solid #f59e0b;
}

/* Light Mode Support */
.debouchage-dashboard-app.light-mode+.luxury-toast-container .luxury-toast,
body.light-mode-toast .luxury-toast {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Luxury Login Gate - WOW Redesign V2 */
.login-gate-container.full-page-takeover {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #04060b;
    font-family: 'Inter', sans-serif;
}

.login-gate-visual-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    filter: blur(100px);
    animation: mesh-drift 15s infinite alternate ease-in-out;
}

@keyframes mesh-drift {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1) translate(20px, 20px);
    }
}

.geometric-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    opacity: 0.5;
}

.login-card-luxury-v2 {
    width: 90%;
    max-width: 480px;
    padding: 4rem 3.5rem;
    border-radius: 20px;
    background: rgba(10, 15, 25, 0.65);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
}

/* Floating Glow Border */
.login-card-luxury-v2::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), transparent 50%, rgba(59, 130, 246, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.login-header-v2 {
    text-align: center;
    margin-bottom: 3.5rem;
}

.brand-top {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    font-weight: 900;
    font-size: 0.8rem;
}

.gold-text {
    color: #10b981;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.gate-title {
    color: rgba(255, 255, 255, 0.4);
}

.login-header-v2 h1 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    margin-bottom: 0.75rem;
}

.subtitle-v2 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 5px;
    font-weight: 600;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.login-gate-container .luxury-input-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    margin-left: 2px;
}

.login-gate-container .input-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.login-gate-container .input-wrapper:focus-within {
    background: rgba(16, 185, 129, 0.03);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.05);
}

.login-gate-container .input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

.login-gate-container .input-wrapper:focus-within .input-icon {
    color: #10b981;
}

.login-gate-container .input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.1rem 48px 1.1rem 1.2rem;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    letter-spacing: 0.5px;
}

.btn-login-luxury {
    margin-top: 1rem;
    height: 54px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.btn-login-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    filter: brightness(1.1);
}

.btn-login-luxury:active {
    transform: translateY(0) scale(0.98);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-login-luxury:hover .btn-icon {
    transform: translateX(5px);
}

/* Success Transition */
.login-gate-container.login-success .login-card-luxury-v2 {
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(10px);
}

.login-gate-container.login-success .mesh-gradient {
    transform: scale(1.5);
    opacity: 0.3;
    transition: all 1.2s ease;
}

.login-options {
    margin-top: 0.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.remember-me:hover {
    color: rgba(255, 255, 255, 0.4);
}

.remember-me input {
    accent-color: #10b981;
}

.login-footer {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.back-to-site {
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.back-to-site:hover {
    color: #ffffff !important;
}

.back-to-site svg {
    width: 16px;
    height: 16px;
}

.v-tag {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* loading state */
.login-gate-container.loading .login-card-luxury-v2 {
    pointer-events: none;
}

.login-gate-container.loading .login-card-luxury-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    z-index: 20;
    border-radius: 20px;
}

/* Access Denied V2 */
.access-denied-state {
    text-align: center;
    padding: 1rem 0;
}

.warning-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
}

.warning-icon-box svg {
    width: 30px;
    height: 30px;
}

.access-denied-state h2 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.access-denied-state p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-logout-luxury {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.btn-logout-luxury:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444 !important;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.1);
}

/* === CORPORATE PROFESSIONAL MODAL === */
.eb-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    /* Slate backdrop */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.eb-modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.eb-modal-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.eb-modal-content {
    max-height: 85vh;
    padding: 30px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.eb-modal-content::-webkit-scrollbar {
    display: none;
}

.eb-modal-backdrop.active .eb-modal-container {
    transform: translateY(0);
}

/* Close Button Professional */
.eb-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1e293b;
    transition: all 0.2s ease;
    z-index: 100;
}

.eb-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #dc2626;
    transform: scale(1.1);
}

.eb-modal-close svg {
    width: 20px;
    height: 20px;
    display: block;
    overflow: visible;
}

.eb-modal-close svg path {
    stroke: #1e293b;
    stroke-width: 3;
    opacity: 1;
}

.eb-modal-close:hover svg path {
    stroke: #ffffff;
}

/* Modal Header Clean */
.eb-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.eb-professional-badge {
    background: #ecfdf5;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    border: 1px solid #d1fae5;
}

.eb-modal-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.eb-modal-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 auto;
}

/* Form Corporate Layout */
.eb-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

.eb-modal-form input,
.eb-modal-form select,
.eb-modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.2s ease;
}

.eb-modal-form input:focus,
.eb-modal-form select:focus,
.eb-modal-form textarea:focus {
    outline: none;
    border-color: #10b981;
    background: #f8fafc;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Professional Submit Button */
.eb-modal-submit-btn {
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    margin-top: 5px;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2);
}

.eb-modal-submit-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.eb-modal-submit-btn.loading {
    background: #059669;
    opacity: 0.8;
    pointer-events: none;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.eb-modal-submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Trust Section */
.eb-modal-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.trust-item {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item svg {
    width: 14px;
    height: 14px;
    color: #10b981;
}

@media (max-width: 640px) {
    .eb-modal-container {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .eb-form-grid {
        grid-template-columns: 1fr;
    }

    .eb-modal-title {
        font-size: 1.5rem;
    }

    .eb-modal-trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* === COVERAGE SECTION & INTERACTIVE MAP === */

.coverage-section {
    padding: 100px 40px;
    background: #f8fafc;
    position: relative;
    z-index: 5;
}

.coverage-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.coverage-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.coverage-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

.coverage-subtitle strong {
    color: #10b981;
}

.map-interactive-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.map-viz-wrapper {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.12);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: visible;
}

.map-svg {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
}

.map-bg {
    transition: all 0.5s ease;
}

/* Pulsing Animation - Fading from bold to transparent */
@keyframes mapPulse {
    0% {
        transform: scale(0.4);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes mapGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.5));
        opacity: 0.7;
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(249, 115, 22, 1));
        opacity: 1;
    }
}

.coverage-pulse {
    transform-origin: 300px 300px;
    animation: mapPulse 3s infinite cubic-bezier(0.21, 0.61, 0.35, 1);
}

.ring-1 {
    animation-delay: 0s;
}

.ring-2 {
    animation-delay: 1s;
}

.ring-3 {
    animation-delay: 2s;
}

.marker-core {
    animation: mapGlow 2s infinite ease-in-out;
}

/* Marker Animations */
@keyframes markerPing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.marker-ping {
    transform-origin: 580px 220px;
    animation: markerPing 2s infinite cubic-bezier(0, 0, 0.2, 1);
}

.marker-label {
    font-weight: 800;
    font-size: 18px;
    fill: #064e3b;
    font-family: 'Inter', sans-serif;
}

.city-label {
    font-size: 14px;
    font-weight: 500;
    fill: #94a3b8;
    font-family: 'Inter', sans-serif;
}

/* Overlay Card */
.map-overlay-card {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.overlay-stat {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.overlay-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Responsive Map */
@media (max-width: 768px) {
    .coverage-section {
        padding: 60px 20px;
    }

    .coverage-title {
        font-size: 2rem;
    }

    .map-viz-wrapper {
        padding: 30px;
        border-radius: 30px;
    }

    .map-overlay-card {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        right: 15px;
        bottom: -15px;
        width: calc(100% - 30px);
        align-items: center;
        text-align: center;
    }

    .overlay-divider {
        width: 60%;
        height: 1px;
    }
}

/* === DEVIS STATUS BUTTONS === */
.devis-status-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: inline-block;
    line-height: normal;
    text-transform: capitalize;
}

.devis-status-dropdown:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.devis-status-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 0 0 4px currentColor;
}

/* Status Colors */
.devis-status-dropdown.status-new {
    background-color: #e0f2fe;
    /* Sky 100 */
    color: #0369a1;
    /* Sky 700 */
}

.devis-status-dropdown.status-processing {
    background-color: #ffedd5;
    /* Orange 100 */
    color: #c2410c;
    /* Orange 700 */
}

.devis-status-dropdown.status-completed {
    background-color: #d1fae5;
    /* Emerald 100 */
    color: #047857;
    /* Emerald 700 */
}

.devis-status-dropdown.status-cancelled {
    background-color: #fee2e2;
    /* Red 100 */
    color: #b91c1c;
    /* Red 700 */
}

/* === MOBILE OPTIMIZATION & POLISH === */
@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
    }

    /* Prevent iOS zoom on inputs */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Better Hero Stacking order if needed (Content first, Form second is default, adjusting spacing) */
    .hero-section.split-layout {
        gap: 2rem;
    }

    /* Ensure Forms don't touch edges */
    .hero-form-container {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    /* Map Overlay adjustments */
    .map-real-container {
        height: 400px !important;
    }

    /* Floating button adjust */
    .floating-call-button {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    /* Modal adjustments */
    .eb-modal-container {
        width: 95% !important;
        margin: 0 auto;
    }
}

/* === MOBILE HEADER CUSTOMIZATION === */
@media (max-width: 768px) {

    /* Hide call button container */
    .header-right {
        display: none !important;
    }

    /* Center the logo since call button is gone */
    .header-container {
        justify-content: center !important;
    }

    /* Slightly adjust logo size for better balance */
    .logo-image {
        height: 55px !important;
    }
}

@media (max-width: 768px) {

    /* Hide Company Text Name/Tagline for cleaner logo-only look */
    .header-title {
        display: none !important;
    }
}

/* FORCE LOGO CENTERING ON MOBILE */
@media (max-width: 768px) {
    .header-left {
        width: 100% !important;
        justify-content: center !important;
        flex: 1;
    }

    .header-logo {
        justify-content: center !important;
        width: 100%;
    }
}

/* FORCE HERO CONTENT CENTERING ON MOBILE */
@media (max-width: 768px) {

    /* Center the rating stars container */
    .hero-rating {
        justify-content: center !important;
        width: 100%;
    }

    /* Ensure specific text elements are centered */
    .hero-title,
    .hero-description {
        text-align: center !important;
        width: 100%;
    }

    /* Ensure the glass box doesn't constrain centering */
    .glass-content-box {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center the CTA group */
    .hero-cta-group {
        justify-content: center !important;
        width: 100%;
    }
}

/* === POLISH FROM SCREENSHOT === */
@media (max-width: 768px) {

    /* Reduce Title Size on Mobile */
    .hero-section.tiro-style .title-main {
        font-size: 2.5rem !important;
        /* Reduced from 3rem min */
        line-height: 1.1;
    }

    /* Prevent floating button from covering content */
    .hero-content-half {
        padding-bottom: 80px !important;
        /* Extra space for floating button */
    }

    /* Adjust Floating Button Position to avoid overlapping text if possible */
    .floating-call-button {
        z-index: 10000;
        /* Ensure it stays on top but check overlap */
        /* It is already bottom: 20px right: 20px */
    }

    /* Ensure text wrapping is nice */
    .hero-description {
        padding: 0 10px;
    }
}

/* === FINAL HEADER LAYOUT FIX (STRICT CENTERING) === */
@media (max-width: 768px) {
    .header-container {
        justify-content: center !important;
        align-items: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .header-left {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        justify-content: center !important;
        flex: 1 1 100% !important;
        gap: 0 !important;
    }

    .header-logo {
        width: auto !important;
        margin: 0 auto !important;
        justify-content: center !important;
        gap: 0 !important;
        transform: none !important;
        /* Disable hover shift on mobile */
    }

    .logo-image {
        margin: 0 !important;
        display: block !important;
        /* Ensure no inline-block spacing issues */
    }
}

/* === MAP OVERLAY MOBILE FIXES === */
@media (max-width: 768px) {

    /* Scale down the overlay card significantly */
    .map-overlay-card {
        padding: 10px 15px !important;
        bottom: 15px !important;
        right: 15px !important;
        left: 15px !important;
        /* Stretch to fill width minus margin */
        width: auto !important;
        /* Override calculation */
        gap: 10px !important;
        flex-direction: row !important;
        /* Keep row layout if possible to save height */
        justify-content: space-around;
        background: rgba(255, 255, 255, 0.95) !important;
    }

    /* Reduce font sizes inside the card */
    .map-overlay-card .stat-value {
        font-size: 1.2rem !important;
    }

    .map-overlay-card .stat-label {
        font-size: 0.7rem !important;
    }

    /* Shrink the divider */
    .map-overlay-card .overlay-divider {
        height: 30px !important;
        width: 1px !important;
        /* Restore vertical divider */
    }

    /* Adjust the Strasbourg Label */
    .map-real-container div[style*="top: 20px"] {
        top: 10px !important;
        left: 10px !important;
        padding: 8px 15px !important;
    }

    .map-real-container div[style*="top: 20px"] span:first-child {
        font-size: 1rem !important;
    }

    .map-real-container div[style*="top: 20px"] span:last-child {
        font-size: 0.7rem !important;
    }
}

/* === MAP OVERLAY FULL WIDTH TWEAK === */
@media (max-width: 768px) {
    .map-overlay-card {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        padding: 15px 10px !important;
        justify-content: space-evenly !important;
    }
}

/* === MOVE STRASBOURG LABEL TO BOTTOM (MOBILE) === */
@media (max-width: 768px) {
    .map-real-container div[style*="top: 20px"] {
        top: auto !important;
        left: 50% !important;
        bottom: 85px !important;
        /* Sit above the stats card */
        transform: translateX(-50%) !important;
        padding: 10px 20px !important;
        align-items: center !important;
        text-align: center !important;
        background: rgba(6, 78, 59, 0.95) !important;
        /* Slight transparency */
    }
}

/* === MAP FLOAT LABEL STYLING (NEW) === */
.map-float-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #064e3b;
    color: #fff;
    padding: 15px 25px;
    border-radius: 18px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    white-space: nowrap;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    pointer-events: auto;
}

.map-float-label .label-city {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.map-float-label .label-subtitle {
    font-size: 0.85rem;
    color: #f97316;
    font-weight: 700;
    opacity: 0.95;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .map-float-label {
        top: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        align-items: center !important;
        /* Ensure centered flex items */
        width: auto;
        min-width: 200px;
        bottom: auto !important;
        /* Override previous bottom fix */
    }
}

/* === HOW IT WORKS CTA BUTTONS MOBILE FIX === */
@media (max-width: 768px) {
    .cta-button {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        min-height: 40px !important;
        border-width: 1px !important;
        /* Thinner border for secondary */
    }

    .cta-actions {
        gap: 10px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    /* Ensure icon inside button scales too */
    .cta-button svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* === EQUAL SIZE PROCESS STEPS ON MOBILE === */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column !important;
        /* Force stack */
        display: flex !important;
        align-items: stretch !important;
        /* Stretch children to full width */
        gap: 20px !important;
    }

    .process-step {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        /* Disable flex shrinking/growing logic */
        min-height: auto !important;
        /* Let content dictate height, or fix if needed */
        margin: 0 !important;
        box-sizing: border-box !important;
        /* Ensure visual consistency */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
}

/* === MOBILE SIZING FOR WHY CHOOSE CTA === */
@media (max-width: 768px) {
    .why-choose-cta-button {
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
        width: auto !important;
        /* Prevent it from being too wide if it was set so */
        max-width: 100%;
        display: inline-flex !important;
        white-space: nowrap;
        /* Keep text on one line if possible */
    }
}

/* === MONOLITH BUTTON MOBILE FIX === */
@media (max-width: 768px) {
    .monolith-actions {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
    }

    .monolith-btn-main {
        width: auto !important;
        display: inline-flex !important;
        padding: 12px 30px !important;
        font-size: 1rem !important;
        border-radius: 50px !important;
        /* Pill shape */
        gap: 10px !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    }

    .monolith-btn-main .btn-icon {
        font-size: 1.2rem !important;
    }
}

/* === FOOTER CENTERING FOR MOBILE === */
@media (max-width: 768px) {
    .footer-monolith-bottom {
        flex-direction: column !important;
        align-items: center !important;
        /* Force center alignment of children */
        text-align: center !important;
        gap: 1.5rem !important;
    }

    .bottom-branding {
        flex-direction: column !important;
        /* Stack copyright and tagline */
        gap: 0.5rem !important;
        justify-content: center !important;
    }

    .bottom-legal {
        flex-direction: column !important;
        /* Stack links */
        align-items: center !important;
        gap: 1rem !important;
        text-align: center !important;
    }

    /* Force contact info (address, phone) to center */
    .monolith-contact-tablet {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .monolith-contact-tablet .contact-item {
        justify-content: center !important;
    }

    /* Ensure social links are centered */
    .social-monolith-group {
        justify-content: center !important;
    }
}

/* === REDUCE FOOTER BOTTOM SPACE MOBILE === */
@media (max-width: 768px) {
    .footer-monolith-bottom {
        padding-bottom: 2rem !important;
        /* Reduce from 5rem */
    }

    .footer-watermark {
        bottom: -2rem !important;
        /* Move it up slightly or hide overflow */
        font-size: 6rem !important;
        /* Smaller on mobile */
    }

    .footer {
        padding-bottom: 0 !important;
    }
}

/* === FINAL FOOTER SPACE FIX === */
@media (max-width: 768px) {

    /* Completely hide watermark to rule it out */
    .footer-watermark {
        display: none !important;
    }

    /* Force no margin/padding on body/html */
    html,
    body {
        height: auto !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        overflow-x: hidden !important;
    }

    /* Force footer to stick to bottom */
    .footer {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        height: auto !important;
    }

    /* Ensure no other element pushes bottom */
    #contactModal {
        display: none;
        /* Hide unless active */
    }

    #contactModal.active {
        display: flex;
        /* Restore flex when active */
    }
}

/* === AGGRESSIVE FOOTER COMPACTION FOR MOBILE === */
@media (max-width: 768px) {

    /* Reduce Header Padding */
    .footer-monolith-header {
        padding: 3rem 0 2rem !important;
        /* Was 8rem 0 6rem */
        border-bottom: none !important;
        /* Remove separator to save space if needed, or keep minimal */
    }

    /* Reduce Main Section Padding */
    .footer-main-monolithic {
        padding: 2rem 0 !important;
        /* Was 6rem 0 */
        gap: 3rem !important;
        /* Reduce gap between columns */
    }

    /* Reduce Bottom Bar Padding */
    .footer-monolith-bottom {
        padding: 1.5rem 0 1rem !important;
        /* Was 3rem 0 5rem */
        margin-top: 0 !important;
    }

    /* Adjust Title/Subtitle margins */
    .monolith-title {
        margin-bottom: 1rem !important;
        font-size: 2rem !important;
    }

    .monolith-subtitle {
        margin-bottom: 2rem !important;
    }

    .monolith-line {
        margin-bottom: 1.5rem !important;
    }

    /* Ensure wrapper doesn't have extra bottom space */
    #debouchage-express-landing {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* === ULTIMATE FOOTER/WRAPPER FIX === */
@media (max-width: 768px) {

    /* Reset the full-width breakout on mobile */
    #debouchage-express-landing {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        left: 0 !important;
        right: auto !important;
        position: relative !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        padding-bottom: 0 !important;
    }

    /* Double insurance on body/html */
    html,
    body {
        width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer {
        width: 100% !important;
    }

    /* Ensure no floating button causes vertical scroll */
    .floating-call-button {
        bottom: 2rem !important;
        /* Keep it safe */
    }
}

/* === PREVENT WPAUTOP EMPTY PARAGRAPHS === */
p:empty,
p>a.floating-call-button:only-child,
p:has(> a.floating-call-button:only-child) {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
}

/* Hide paragraphs that only contain a comment or space (heuristic) */
#debouchage-express-landing>p:last-child {
    display: none !important;
    margin: 0 !important;
}

/* === SERVICES CTA BUTTON MOBILE FIX === */
@media (max-width: 768px) {
    .services-cta-button {
        padding: 12px 24px !important;
        font-size: 0.75rem !important;
        width: auto !important;
        max-width: 100%;
        display: inline-flex !important;
        white-space: nowrap;
    }
}

/* === GALLERY SECTION === */

.gallery-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.gallery-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gallery-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.gallery-item.video-item {
    aspect-ratio: 4 / 5;
}

.gallery-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 185, 129, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.zoom-icon,
.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

.zoom-icon svg,
.play-icon svg {
    width: 30px;
    height: 30px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.video-item .play-icon {
    background: rgba(16, 185, 129, 0.9);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

/* === LIGHTBOX === */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(16, 185, 129, 0.8);
    border-color: #10b981;
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

.lightbox-nav svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 1400px) {
    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
    }

    .lightbox-overlay {
        padding: 20px;
    }

    .lightbox-close {
        top: 0;
        right: 10px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
    }
}

/* === PRICING SECTION === */

.pricing-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

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

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.pricing-table-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table th {
    text-align: left;
    padding: 20px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
}

.pricing-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-table tr:hover td {
    background: #f8fafc;
    color: #0f172a;
}

.pricing-table .price {
    text-align: right;
    color: #10b981;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-table .price small {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 4px;
}

.pricing-disclaimer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #fffbeb;
    border-radius: 16px;
    border: 1px solid #fef3c7;
    color: #92400e;
    font-size: 0.9375rem;
    font-weight: 500;
}

.disclaimer-icon {
    width: 24px;
    height: 24px;
    color: #f59e0b;
    flex-shrink: 0;
}

.pricing-cta {
    margin-top: 50px;
    text-align: center;
}

.pricing-cta-btn {
    position: relative;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    background-size: 200% auto;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 1.25rem 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.3);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pricing-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: none;
}

.pricing-cta-btn:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.4);
    background-image: linear-gradient(135deg, #10b981 0%, #000000 100%);
}

.pricing-cta-btn .mobile-text {
    display: none;
}

.pricing-cta-btn:hover::before {
    left: 100%;
    transition: all 0.8s ease;
}

.pricing-cta-btn .cta-arrow {
    font-size: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-cta-btn:hover .cta-arrow {
    transform: translateX(8px) scale(1.1);
}

.pricing-cta-btn:active {
    transform: translateY(-2px) scale(0.98);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-table-container {
        padding: 20px;
        border-radius: 24px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .pricing-table .price {
        font-size: 0.9rem;
    }

    .pricing-cta-btn {
        padding: 1rem 1.25rem;
        font-size: 0.8125rem;
        width: auto;
        max-width: 100%;
        white-space: nowrap;
        letter-spacing: 0;
    }

    .pricing-cta-btn .desktop-text {
        display: none;
    }

    .pricing-cta-btn .mobile-text {
        display: inline;
    }

    .pricing-cta-btn .cta-arrow {
        font-size: 1.1rem;
    }
}

/* === TERMS & CONDITIONS SECTION === */
.terms-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.hours-card {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hours-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.pulse-icon {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.hours-item.featured {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.02);
}

.day-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.time-range {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.time-complex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.surcharge {
    font-size: 0.75rem;
    font-weight: 800;
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 99px;
    text-transform: uppercase;
}

.hours-extra {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
}

.extra-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    border-radius: 18px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.pill-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pill-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pill-value {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 700;
}

.extra-pill:hover {
    transform: translateY(-2px);
    border-color: #10b981;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.1);
}

.extra-pill.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.green {
    background: #10b981;
}

.dot.orange {
    background: #f59e0b;
}

.dot.light-green {
    background: #34d399;
}

/* Conditions Styling */
.conditions-container {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.conditions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.conditions-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.warranty-badge {
    background: #0f172a;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.condition-item {
    display: flex;
    gap: 20px;
}

.condition-number {
    font-size: 0.75rem;
    font-weight: 900;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.condition-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.conditions-footer-note {
    margin-top: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

/* Legal Footer */
.legal-micro-info {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.legal-micro-info p {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.legal-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.dot-sep {
    font-weight: 900;
    color: #cbd5e1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms-section {
        padding: 40px 0;
    }

    .hours-card {
        padding: 24px;
        border-radius: 24px;
        margin-bottom: 40px;
    }

    .hours-header h3 {
        font-size: 1.25rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .hours-item {
        padding: 20px;
    }

    .time-range {
        font-size: 1.125rem;
    }

    .hours-extra {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .extra-pill {
        width: 100%;
        padding: 15px;
        white-space: normal;
        justify-content: flex-start;
    }

    .pill-label {
        font-size: 0.65rem;
    }

    .pill-value {
        font-size: 0.8125rem;
    }

    .conditions-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .conditions-header h2 {
        font-size: 1.75rem;
    }

    .warranty-badge {
        width: 100%;
        text-align: center;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legal-dots {
        flex-direction: column;
        gap: 10px;
    }

    .dot-sep {
        display: none;
    }
}

/* === MULTI-SELECT COMPONENT === */
.eb-multi-select-container {
    position: relative;
    width: 100%;
}

.eb-multi-select-trigger {
    width: 100%;
    min-height: 50px;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    color: #1e293b;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: #ffffff;
}

.eb-multi-select-trigger:hover {
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.1);
}

.eb-multi-select-container.active .eb-multi-select-trigger {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.eb-multi-select-trigger .placeholder {
    color: #64748b;
    pointer-events: none;
}

.eb-multi-select-trigger.has-selection .placeholder {
    display: none;
}

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.eb-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: tagIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes tagIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.eb-tag .remove-tag {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.eb-tag .remove-tag:hover {
    opacity: 1;
}

.select-chevron {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #64748b;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.eb-multi-select-container.active .select-chevron {
    transform: translateY(-50%) rotate(180deg);
}

.eb-multi-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 10px 15px -10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 250px;
    overflow-y: auto;
    padding: 8px;
}

.eb-multi-select-container.active .eb-multi-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.eb-multi-select-option {
    padding: 12px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #1e293b;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.eb-multi-select-option:hover {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
}

.eb-multi-select-option.selected {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-weight: 600;
}

.eb-multi-select-option.selected::after {
    content: "✓";
    font-weight: 800;
}
/* === DIRECTORY LINKS === */
.footer-directory-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.dir-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dir-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dir-link.gmaps:hover { border-color: #4285F4; }
.dir-link.pjaunes:hover { border-color: #FFDE00; }
.dir-link.mappy:hover { border-color: #e60000; }
.dir-link.pappers:hover { border-color: #00bcd4; }

@media (max-width: 768px) {
    .footer-directory-links {
        justify-content: center;
    }
}
.dir-link.linkedin:hover { border-color: #0077b5; }
