/* Reset and Base Styles - Scoped to VOYE pages only */
/* Use .voye_cs_page as wrapper class on your page content to avoid conflicts */
.voye_cs_page,
.voye_cs_page *,
.voye_cs_page *::before,
.voye_cs_page *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.voye_cs_page {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

.voye_cs_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables - Prefixed with voye- to avoid conflicts with Bootstrap/existing site */
:root {
    --voye-cs-midnight-blue: #020035;
    --voye-cs-golden: #d99a28;
    --voye-cs-white: #ffffff;
    --voye-cs-midnight-blue-light: #041257;
    --voye-cs-golden-light: #f4b942;
    --voye-cs-text-dark: #020035;
    --voye-cs-text-light: #5a5a5a;
    --voye-cs-light-bg: #fefefe;
    --voye-cs-lighter-bg: #f9f9f9;
    --voye-cs-section-vertical: 70px;
    /* default vertical spacing between sections */
}

/* Typography */
.voye_cs_highlight {
    color: #020035 !important;
    font-weight: 900 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    /* border: 2px solid #d99a28 !important; */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(217, 154, 40, 0.3) !important;
}

.voye_cs_highlight-contact {
    color: #d99a28;
    font-weight: 700;
}

/* Hero Banner */
.voye_cs_hero-banner {
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    background: url('../images/Banner Image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.voye_cs_hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 0, 53, 0.6), rgba(217, 154, 40, 0.3));
    backdrop-filter: blur(1px);
    z-index: 1;
}

.voye_cs_hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.voye_cs_hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(2, 0, 53, 0.3);
    animation: fadeInUp 1s ease-out;
}

    /* Specific styling for highlight text in hero title */
    .voye_cs_hero-title .voye_cs_highlight {
        color: #020035 !important;
        /* Deep navy-blue text */
        font-weight: 900 !important;
        /* Extra bold text */
        background: rgba(255, 255, 255, 0.98) !important;
        /* Light white background */
        padding: 8px 16px !important;
        /* Consistent spacing */
        border-radius: 10px !important;
        /* Smooth rounded corners */
        border: none !important;
        /* No border */
        text-shadow: none !important;
        /* Flat text look */
        display: inline-block !important;
        /* Keep inline element styling */
        box-shadow: 0 6px 20px rgba(2, 0, 53, 0.15) !important;
        /* Soft blue shadow for depth */
        margin: 0 4px !important;
        /* Even spacing */
    }

.voye_cs_hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 200;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.voye_cs_cta-button {
    background: var(--voye-cs-midnight-blue);
    color: white;
    /* padding: 20px 40px; */
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

    .voye_cs_cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .voye_cs_cta-button:hover::before {
        left: 100%;
    }

    .voye_cs_cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(2, 0, 53, 0.6), 0 0 50px rgba(2, 0, 53, 0.3);
        background: var(--voye-cs-midnight-blue-light);
    }

    .voye_cs_cta-button i {
        transition: transform 0.3s ease;
    }

    .voye_cs_cta-button:hover i {
        transform: translateX(5px);
    }

/* Banner border and partner CTA padding adjustments */
.voye_cs_hero-banner {
    /* subtle golden border to separate the banner from the rest of the page */
    border-bottom: 6px solid rgba(217, 154, 40, 0.10);
    /* slight outer shadow to lift the banner visually */
    box-shadow: 0 8px 30px rgba(2, 0, 53, 0.06);
}

    .voye_cs_hero-banner .voye_cs_cta-button {
        /* slightly larger touch target inside the banner */
        padding: 22px 48px;
        /* light subtle border to make the CTA stand out on the image */
        border: 2px solid rgba(255, 255, 255, 0.08);
    }

        /* If needed, target a more specific partner CTA when present (add class="partner" to the button)
   to give it a more pronounced golden outline */
        .voye_cs_hero-banner .voye_cs_cta-button.partner {
            padding: 24px 52px;
            border: 2px solid var(--voye-cs-golden);
        }

/* Section Header */
.voye_cs_section-header {
    text-align: center;
    margin-bottom: 40px;
    /* reduced gap between header and content */
}

    .voye_cs_section-header h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--voye-cs-text-dark);
    }

    .voye_cs_section-header p {
        font-size: 1.2rem;
        color: var(--voye-cs-text-light);
        /*        max-width: 600px;*/
        margin: 20px auto !important;
    }

/* Achievements Section */
.voye_cs_achievements {
    padding: 120px 0;
    background: var(--voye-cs-light-bg);
}

.voye_cs_achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.voye_cs_achievement-card {
    background: var(--voye-cs-white);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.voye_cs_card-purple {
    border-color: rgba(2, 0, 53, 0.3);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_cs_card-blue {
    border-color: rgba(217, 154, 40, 0.3);
    box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
}

.voye_cs_card-pink {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_cs_achievement-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.voye_cs_card-purple:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--voye-cs-midnight-blue);
}

.voye_cs_card-blue:hover {
    box-shadow: 0 20px 60px rgba(217, 154, 40, 0.3);
    border-color: var(--voye-cs-golden);
}

.voye_cs_card-pink:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--voye-cs-midnight-blue);
}

.voye_cs_achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.voye_cs_card-purple .voye_cs_achievement-icon {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-midnight-blue-light));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_card-blue .voye_cs_achievement-icon {
    background: linear-gradient(45deg, var(--voye-cs-golden), var(--voye-cs-golden-light));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

.voye_cs_card-pink .voye_cs_achievement-icon {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-golden));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--voye-cs-text-dark);
    margin-bottom: 10px;
}

.voye_cs_achievement-label {
    font-size: 1.2rem;
    color: var(--voye-cs-text-light);
    font-weight: 500;
    margin-bottom: 20px;
}

.voye_cs_achievement-glow {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 0, 53, 0.05) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

/* Services Section */
.voye_cs_services {
    padding: 120px 0;
    background: var(--voye-cs-white);
}

.voye_cs_services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.voye_cs_service-card {
    background: var(--voye-cs-white);
    padding: 40px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.voye_cs_neon-card-1 {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_cs_neon-card-2 {
    border-color: rgba(217, 154, 40, 0.2);
    box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
}

.voye_cs_neon-card-3 {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_cs_neon-card-4 {
    border-color: rgba(217, 154, 40, 0.2);
    box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
}

.voye_cs_neon-card-5 {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_cs_neon-card-6 {
    border-color: rgba(217, 154, 40, 0.2);
    box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
}

.voye_cs_service-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.voye_cs_neon-card-1:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--voye-cs-midnight-blue);
}

.voye_cs_neon-card-2:hover {
    box-shadow: 0 20px 60px rgba(217, 154, 40, 0.3);
    border-color: var(--voye-cs-golden);
}

.voye_cs_neon-card-3:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--voye-cs-midnight-blue);
}

.voye_cs_neon-card-4:hover {
    box-shadow: 0 20px 60px rgba(217, 154, 40, 0.3);
    border-color: var(--voye-cs-golden);
}

.voye_cs_neon-card-5:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--voye-cs-midnight-blue);
}

.voye_cs_neon-card-6:hover {
    box-shadow: 0 20px 60px rgba(217, 154, 40, 0.3);
    border-color: var(--voye-cs-golden);
}

.voye_cs_service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.voye_cs_neon-card-1 .voye_cs_service-icon {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-midnight-blue-light));
    box-shadow: 0 0 20px rgba(2, 0, 53, 0.4);
}

.voye_cs_neon-card-2 .voye_cs_service-icon {
    background: linear-gradient(45deg, var(--voye-cs-golden), var(--voye-cs-golden-light));
    box-shadow: 0 0 20px rgba(217, 154, 40, 0.4);
}

.voye_cs_neon-card-3 .voye_cs_service-icon {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-golden));
    box-shadow: 0 0 20px rgba(2, 0, 53, 0.4);
}

.voye_cs_neon-card-4 .voye_cs_service-icon {
    background: linear-gradient(45deg, var(--voye-cs-golden), var(--voye-cs-midnight-blue));
    box-shadow: 0 0 20px rgba(217, 154, 40, 0.4);
}

.voye_cs_neon-card-5 .voye_cs_service-icon {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-golden-light));
    box-shadow: 0 0 20px rgba(2, 0, 53, 0.4);
}

.voye_cs_neon-card-6 .voye_cs_service-icon {
    background: linear-gradient(45deg, var(--voye-cs-golden), var(--voye-cs-midnight-blue-light));
    box-shadow: 0 0 20px rgba(217, 154, 40, 0.4);
}

.voye_cs_service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--voye-cs-text-dark);
}

.voye_cs_service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.voye_cs_neon-card-1 .voye_cs_service-glow {
    background: radial-gradient(circle, rgba(2, 0, 53, 0.08) 0%, transparent 70%);
}

.voye_cs_neon-card-2 .voye_cs_service-glow {
    background: radial-gradient(circle, rgba(217, 154, 40, 0.08) 0%, transparent 70%);
}

.voye_cs_neon-card-3 .voye_cs_service-glow {
    background: radial-gradient(circle, rgba(2, 0, 53, 0.08) 0%, transparent 70%);
}

.voye_cs_neon-card-4 .voye_cs_service-glow {
    background: radial-gradient(circle, rgba(217, 154, 40, 0.08) 0%, transparent 70%);
}

.voye_cs_neon-card-5 .voye_cs_service-glow {
    background: radial-gradient(circle, rgba(2, 0, 53, 0.08) 0%, transparent 70%);
}

.voye_cs_neon-card-6 .voye_cs_service-glow {
    background: radial-gradient(circle, rgba(217, 154, 40, 0.08) 0%, transparent 70%);
}

.voye_cs_service-card:hover .voye_cs_service-glow {
    opacity: 1;
    animation: rotate 8s linear infinite;
}

/* Brand Partnerships */
.voye_cs_brand-partnerships {
    padding: 120px 0;
    background: var(--voye-cs-lighter-bg);
}

.voye_cs_brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.voye_cs_brand-card {
    background: var(--voye-cs-white);
    padding: 15px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .voye_cs_brand-card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 25px 50px rgba(2, 0, 53, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
        border-color: var(--voye-cs-midnight-blue);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 255, 1) 100%);
    }

    .voye_cs_brand-card img {
        max-width: 90%;
        width: auto;
        height: 100%;
        max-height: 120px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        transition: all 0.4s ease;
        filter: brightness(1.1) contrast(1.1) saturate(1.1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        border-radius: 10px;
    }

    .voye_cs_brand-card:hover img {
        transform: scale(1.08);
        filter: brightness(1.3) contrast(1.2) saturate(1.2) drop-shadow(0 8px 25px rgba(2, 0, 53, 0.3));
    }

.voye_cs_brand-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 0, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 12s linear infinite;
}

.voye_cs_brand-card:hover .voye_cs_brand-glow {
    opacity: 1;
}

/* Platform Management */
.voye_cs_platform-management {
    padding: 120px 0;
    background: var(--voye-cs-white);
}

.voye_cs_platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 20px 0;
}

.voye_cs_platform-card {
    background: var(--voye-cs-white);
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
}

    .voye_cs_platform-card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 25px 50px rgba(2, 0, 53, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
        border-color: var(--voye-cs-midnight-blue);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 255, 1) 100%);
    }

    .voye_cs_platform-card img {
        width: auto;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        transition: all 0.4s ease;
        filter: brightness(1.1) contrast(1.1) saturate(1.1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }

    .voye_cs_platform-card:hover img {
        transform: scale(1.08);
        filter: brightness(1.3) contrast(1.2) saturate(1.2) drop-shadow(0 8px 25px rgba(2, 0, 53, 0.3));
    }

.voye_cs_platform-name {
    font-weight: 600;
    color: var(--voye-cs-text-dark);
    font-size: 1rem;
}

.voye_cs_platform-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(2, 0, 53, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.voye_cs_platform-card:hover .voye_cs_platform-shine {
    top: -150%;
    left: -150%;
    opacity: 1;
    animation: shine 1s ease-in-out;
}

/* Client Success Stories Section */
.voye_cs_client-success-stories {
    padding: 120px 0;
    background: var(--voye-cs-white);
}

.voye_cs_success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.voye_cs_success-story-card {
    background: var(--voye-cs-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(2, 0, 53, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .voye_cs_success-story-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(2, 0, 53, 0.2);
    }

.voye_cs_story-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .voye_cs_story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.voye_cs_success-story-card:hover .voye_cs_story-image img {
    transform: scale(1.05);
}

.voye_cs_story-content {
    padding: 30px;
}

    .voye_cs_story-content p {
        color: var(--voye-cs-text-dark);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
        font-style: italic;
        position: relative;
    }

        .voye_cs_story-content p::before {
            content: '"';
            font-size: 3rem;
            color: var(--voye-cs-golden);
            position: absolute;
            top: -15px;
            left: -15px;
            font-family: serif;
            opacity: 0.4;
            line-height: 1;
        }

.voye_cs_client-attribution {
    border-top: 2px solid var(--voye-cs-lighter-bg);
    padding-top: 20px;
}

    .voye_cs_client-attribution h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--voye-cs-midnight-blue);
        margin: 0 0 5px 0;
    }

    .voye_cs_client-attribution span {
        color: var(--voye-cs-text-light);
        font-size: 0.95rem;
        font-weight: 400;
    }

/* FAQ Section */

/* Client Testimonials Section */
.voye_cs_client-testimonials {
    padding: 120px 0;
    background: var(--voye-cs-lighter-bg);
}

.voye_cs_testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.voye_cs_testimonials-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.voye_cs_testimonial-card {
    min-width: 100%;
    display: flex;
    background: var(--voye-cs-white);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

    .voye_cs_testimonial-card.active {
        opacity: 1;
    }

.voye_cs_property-image {
    width: 50%;
    min-height: 400px;
    overflow: hidden;
}

    .voye_cs_property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.voye_cs_testimonial-card:hover .voye_cs_property-image img {
    transform: scale(1.05);
}

.voye_cs_testimonial-content {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .voye_cs_testimonial-content p {
        color: var(--voye-cs-text-dark);
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 40px;
        font-style: italic;
        position: relative;
        flex-grow: 1;
        display: flex;
        align-items: center;
    }

        .voye_cs_testimonial-content p::before {
            content: '"';
            font-size: 5rem;
            color: var(--voye-cs-golden);
            position: absolute;
            top: -30px;
            left: -20px;
            font-family: serif;
            opacity: 0.3;
            line-height: 1;
        }

.voye_cs_client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid var(--voye-cs-golden);
    margin-top: auto;
}

.voye_cs_client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--voye-cs-golden);
    flex-shrink: 0;
}

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

.voye_cs_client-details h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--voye-cs-midnight-blue);
    margin: 0 0 8px 0;
}

.voye_cs_client-details span {
    color: var(--voye-cs-text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.voye_cs_carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 0;
}

.voye_cs_indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(2, 0, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .voye_cs_indicator.active {
        background: var(--voye-cs-midnight-blue);
        transform: scale(1.2);
    }

    .voye_cs_indicator:hover {
        background: var(--voye-cs-golden);
    }

/* Testimonials Slider Section (keep for backward compatibility) */
.voye_cs_testimonials-slider {
    padding: 120px 0;
    background: var(--voye-cs-white);
}

.voye_cs_testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.voye_cs_testimonial-slide {
    min-width: 100%;
    display: flex;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

    .voye_cs_testimonial-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

.voye_cs_testimonial-image {
    width: 33.33%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

    .voye_cs_testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.voye_cs_testimonial-text {
    width: 66.67%;
    padding: 50px;
    background: var(--voye-cs-white);
    border: 1px solid rgba(2, 0, 53, 0.1);
    border-left: none;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

    .voye_cs_testimonial-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--voye-cs-text-dark);
        margin-bottom: 30px;
        font-style: italic;
        position: relative;
    }

        .voye_cs_testimonial-text p::before {
            content: '"';
            font-size: 4rem;
            color: var(--voye-cs-golden);
            position: absolute;
            top: -25px;
            left: -20px;
            font-family: serif;
            opacity: 0.3;
        }

.voye_cs_testimonial-author h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--voye-cs-midnight-blue);
    margin: 0 0 5px 0;
}

.voye_cs_testimonial-author span {
    color: var(--voye-cs-text-light);
    font-size: 1rem;
    font-weight: 400;
}

.voye_cs_slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.voye_cs_slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--voye-cs-midnight-blue);
    background: var(--voye-cs-white);
    color: var(--voye-cs-midnight-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .voye_cs_slider-btn:hover {
        background: var(--voye-cs-midnight-blue);
        color: var(--voye-cs-white);
        transform: scale(1.1);
    }

.voye_cs_slider-indicators {
    display: flex;
    gap: 15px;
}

    .voye_cs_slider-indicators .voye_cs_indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(2, 0, 53, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .voye_cs_slider-indicators .voye_cs_indicator.active {
            background: var(--voye-cs-midnight-blue);
            transform: scale(1.2);
        }

        .voye_cs_slider-indicators .voye_cs_indicator:hover {
            background: var(--voye-cs-golden);
        }

/* FAQ Section */
.voye_cs_faq {
    padding: 120px 0;
    background: var(--voye-cs-lighter-bg);
}

.voye_cs_faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.voye_cs_faq-item {
    background: var(--voye-cs-white);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .voye_cs_faq-item:hover {
        border-color: var(--voye-cs-midnight-blue);
        box-shadow: 0 15px 40px rgba(2, 0, 53, 0.15);
        transform: translateY(-5px);
    }

.voye_cs_faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, transparent, rgba(2, 0, 53, 0.02));
}

    .voye_cs_faq-question:hover {
        background: linear-gradient(45deg, rgba(2, 0, 53, 0.05), rgba(217, 154, 40, 0.02));
    }

    .voye_cs_faq-question h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--voye-cs-text-dark);
        margin: 0;
        flex: 1;
    }

    .voye_cs_faq-question i {
        font-size: 1.2rem;
        color: var(--voye-cs-midnight-blue);
        transition: transform 0.3s ease;
        margin-left: 20px;
    }

.voye_cs_faq-item.active .voye_cs_faq-question i {
    transform: rotate(180deg);
    color: var(--voye-cs-golden);
}

.voye_cs_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--voye-cs-white);
}

.voye_cs_faq-item.active .voye_cs_faq-answer {
    max-height: 200px;
}

.voye_cs_faq-answer p {
    padding: 0 30px 30px;
    color: var(--voye-cs-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Awards Section */
.voye_cs_awards {
    padding: 120px 0;
    background: var(--voye-cs-white);
}

.voye_cs_awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.voye_cs_award-card {
    background: var(--voye-cs-white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .voye_cs_award-card:nth-child(1) {
        border-color: rgba(217, 154, 40, 0.2);
        box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
    }

    .voye_cs_award-card:nth-child(2) {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_cs_award-card:nth-child(3) {
        border-color: rgba(217, 154, 40, 0.2);
        box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
    }

    .voye_cs_award-card:nth-child(4) {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_cs_award-card:nth-child(5) {
        border-color: rgba(217, 154, 40, 0.2);
        box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
    }

    .voye_cs_award-card:nth-child(6) {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_cs_award-card:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .voye_cs_award-card:nth-child(1):hover {
        box-shadow: 0 25px 60px rgba(217, 154, 40, 0.3);
        border-color: var(--voye-cs-golden);
    }

    .voye_cs_award-card:nth-child(2):hover {
        box-shadow: 0 25px 60px rgba(2, 0, 53, 0.3);
        border-color: var(--voye-cs-midnight-blue);
    }

    .voye_cs_award-card:nth-child(3):hover {
        box-shadow: 0 25px 60px rgba(217, 154, 40, 0.3);
        border-color: var(--voye-cs-golden);
    }

    .voye_cs_award-card:nth-child(4):hover {
        box-shadow: 0 25px 60px rgba(2, 0, 53, 0.3);
        border-color: var(--voye-cs-midnight-blue);
    }

    .voye_cs_award-card:nth-child(5):hover {
        box-shadow: 0 25px 60px rgba(217, 154, 40, 0.3);
        border-color: var(--voye-cs-golden);
    }

    .voye_cs_award-card:nth-child(6):hover {
        box-shadow: 0 25px 60px rgba(2, 0, 53, 0.3);
        border-color: var(--voye-cs-midnight-blue);
    }

.voye_cs_award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.voye_cs_award-card:nth-child(1) .voye_cs_award-icon {
    background: linear-gradient(45deg, var(--voye-cs-golden), var(--voye-cs-golden-light));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

.voye_cs_award-card:nth-child(2) .voye_cs_award-icon {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-midnight-blue-light));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_award-card:nth-child(3) .voye_cs_award-icon {
    background: linear-gradient(45deg, var(--voye-cs-golden), var(--voye-cs-golden-light));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

.voye_cs_award-card:nth-child(4) .voye_cs_award-icon {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-midnight-blue-light));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_award-card:nth-child(5) .voye_cs_award-icon {
    background: linear-gradient(45deg, var(--voye-cs-golden), var(--voye-cs-midnight-blue));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

.voye_cs_award-card:nth-child(6) .voye_cs_award-icon {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-golden));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_award-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--voye-cs-text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.voye_cs_award-card p {
    color: var(--voye-cs-text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.voye_cs_award-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-golden));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(2, 0, 53, 0.3);
}

/* Contact Section */
.voye_cs_contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--voye-cs-midnight-blue) 0%, var(--voye-cs-midnight-blue) 70%, var(--voye-cs-golden) 100%);
    color: white;
}

.voye_cs_contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.voye_cs_contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.voye_cs_contact-info p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.voye_cs_contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voye_cs_feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

    .voye_cs_feature-item i {
        color: var(--voye-cs-white);
        font-size: 1.2rem;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

.voye_cs_contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.voye_cs_form-group {
    margin-bottom: 25px;
}

    .voye_cs_form-group input,
    .voye_cs_form-group textarea {
        width: 100%;
        padding: 18px 25px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .voye_cs_form-group input::placeholder,
        .voye_cs_form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .voye_cs_form-group input:focus,
        .voye_cs_form-group textarea:focus {
            outline: none;
            border-color: var(--voye-cs-white);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

.voye_cs_submit-btn {
    width: 100%;
    background: var(--voye-cs-midnight-blue);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

    .voye_cs_submit-btn:hover {
        background: var(--voye-cs-midnight-blue-light);
        transform: translateY(-3px);
        box-shadow: 0 0 50px rgba(2, 0, 53, 0.6);
    }

    .voye_cs_submit-btn i {
        transition: transform 0.3s ease;
    }

    .voye_cs_submit-btn:hover i {
        transform: translateX(5px);
    }

/* Office Address Section */
.voye_cs_office-address {
    padding: 80px 0;
    background: var(--voye-cs-white);
}

.voye_cs_office-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.voye_cs_addresses-grid {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.voye_cs_address-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(217, 154, 40, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .voye_cs_address-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .voye_cs_address-card h3 {
        font-size: 1.5rem;
        color: var(--voye-cs-midnight-blue);
        margin-bottom: 15px;
    }

    .voye_cs_address-card p {
        color: var(--voye-cs-text-light);
        font-size: 1rem;
        line-height: 1.5;
    }

/* Modal Styles */
.voye_cs_modal-overlay {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

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

.voye_cs_modal-content {
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.voye_cs_modal-overlay.active .voye_cs_modal-content {
    transform: scale(1);
}

.voye_cs_modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: none;
}

    .voye_cs_modal-header h2 {
        color: midnightblue;
        font-size: 1.4rem;
        font-weight: 600;
        margin: 0;
        text-align: center;
        flex: 1;
    }

.voye_cs_modal-close {
    background: none;
    border: none;
    color: midnightblue;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

    .voye_cs_modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* Service Modal Styles - Vibrant Design */
.voye_cs_service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .voye_cs_service-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.voye_cs_service-modal-content {
    background: var(--voye-cs-white);
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.voye_cs_service-modal-overlay.active .voye_cs_service-modal-content {
    transform: scale(1);
}

.voye_cs_service-modal-header {
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-golden));
    color: white;
    padding: 30px 40px;
    border-radius: 25px 25px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .voye_cs_service-modal-header h2 {
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0;
        text-align: center;
        flex: 1;
    }

.voye_cs_service-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .voye_cs_service-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

.voye_cs_modal-form {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

    .voye_cs_modal-form .voye_cs_form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .voye_cs_modal-form input,
    .voye_cs_modal-form textarea {
        padding: 12px 15px;
        border: none;
        border-radius: 6px;
        font-size: 0.95rem;
        background: rgba(57, 82, 223, 0.15);
        color: var(--voye-cs-midnight-blue-light);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
        border: 1px solid rgba(7, 44, 206, 0.2);
        width: 100%;
        box-sizing: border-box;
    }

        .voye_cs_modal-form input::placeholder,
        .voye_cs_modal-form textarea::placeholder {
            color: var(--voye-cs-midnight-blue-light);
            font-weight: 400;
        }

        .voye_cs_modal-form input:focus,
        .voye_cs_modal-form textarea:focus {
            outline: none;
            background: white;
            border-color: var(--voye-cs-golden);
        }

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

.voye_cs_modal-submit-btn {
    background: var(--voye-cs-midnight-blue);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

/* Make FAQ answers scrollable on small screens when expanded so long answers are readable */
@media (max-width: 768px) {
    .voye_cs_faq-answer {
        transition: max-height 0.35s ease;
    }

    .voye_cs_faq-item.active .voye_cs_faq-answer {
        /* Allow the answer area to grow to most of the viewport and scroll internally */
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
        /* keep a small bottom gap */
    }

    /* Reduce inner padding inside the expanded answer for tighter mobile layout */
    .voye_cs_faq-answer p {
        padding: 0 16px 14px;
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .voye_cs_faq-question h3 {
        font-size: 1.05rem;
    }
}

/* Mobile-specific tweaks for hero banner and success-stories carousel behavior */
@media (max-width: 768px) {

    /* Make hero more compact on phones and avoid forced word-breaks */
    .voye_cs_hero-banner {
        height: auto;
        padding: 60px 0;
        background-position: center top;
    }

    .voye_cs_hero-content {
        max-width: 92%;
        padding: 0 12px;
    }

    .voye_cs_hero-title {
        font-size: 2rem;
        /* slightly smaller for narrow viewports */
        line-height: 1.15;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }

        /* Keep the highlighted word together unless it must wrap */
        .voye_cs_hero-title .voye_cs_highlight {
            display: inline-block;
            white-space: nowrap;
        }

    /* Make success-stories act like a single-item carousel on mobile */
    .voye_cs_success-stories-grid {
        display: flex;
        overflow: hidden;
        gap: 16px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .voye_cs_success-story-card {
        min-width: 100%;
        flex: 0 0 100%;
        scroll-snap-align: center;
        margin: 0;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

        .voye_cs_success-story-card .voye_cs_story-image {
            height: 180px;
        }

    /* Navigation buttons (JS can use these if a carousel is added) */
    .voye_cs_success-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #ffffff;
        border: 2px solid var(--voye-cs-golden);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        color: var(--voye-cs-golden);
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

        .voye_cs_success-nav:hover {
            background: var(--voye-cs-golden);
            color: #fff;
            transform: translateY(-50%) scale(1.05);
        }

    .voye_cs_success-nav-prev {
        left: 10px;
    }

    .voye_cs_success-nav-next {
        right: 10px;
    }

    .voye_cs_success-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .voye_cs_success-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.18);
    }

        .voye_cs_success-dot.active {
            background: var(--voye-cs-golden);
            transform: scale(1.15);
        }
}

.voye_cs_modal-submit-btn:hover {
    background: var(--voye-cs-midnight-blue-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(2, 0, 53, 0.4);
}

.voye_cs_service-modal-body {
    padding: 40px;
    text-align: left;
    color: var(--voye-cs-text-dark);
}

    .voye_cs_service-modal-body h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.voye_cs_service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--voye-cs-midnight-blue), var(--voye-cs-golden));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 40px rgba(2, 0, 53, 0.4);
}

.voye_cs_service-modal-header h2 {
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes gradientShift {

    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Responsive Design */
/* Tablet Landscape Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .voye_cs_hero-banner {
        height: 80vh;
        min-height: 500px;
        max-height: 650px;
    }

    .voye_cs_hero-content {
        padding: 0 40px;
    }

    .voye_cs_hero-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .voye_cs_hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .voye_cs_cta-button {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
}

/* Specific iPad Landscape (1024x768) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) and (min-height: 700px) and (max-height: 800px) {
    .voye_cs_hero-banner {
        height: 75vh;
        min-height: 520px;
        max-height: 600px;
    }

    .voye_cs_hero-content {
        max-width: 900px;
        padding: 0 50px;
    }

    .voye_cs_hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
    }

    .voye_cs_hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Tablet Portrait Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .voye_cs_hero-banner {
        height: 70vh;
        min-height: 600px;
        max-height: 750px;
    }

    .voye_cs_hero-content {
        padding: 0 30px;
    }

    .voye_cs_hero-title {
        font-size: 3.2rem;
        line-height: 1.15;
    }

    .voye_cs_hero-subtitle {
        font-size: 1.2rem;
    }

    .voye_cs_cta-button {
        padding: 20px 40px;
        font-size: 1.15rem;
    }
}

/* General tablet fixes for common issues */
@media (min-width: 769px) and (max-width: 1024px) {
    .voye_cs_hero-banner {
        background-attachment: scroll;
        /* Better performance on tablets */
        background-size: cover;
        background-position: center center;
    }
}

/* Failsafe for all tablet-sized screens */
@media (min-width: 769px) and (max-width: 1366px) and (min-height: 500px) and (max-height: 900px) {
    .voye_cs_hero-banner {
        height: clamp(500px, 75vh, 700px);
        min-height: 500px;
        max-height: 700px;
    }

    .voye_cs_hero-content {
        padding: 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .voye_cs_platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Global spacing overrides to tighten vertical rhythm between sections */
/* Exclude the hero banner which intentionally uses full viewport height */
section:not(.voye_cs_hero-banner) {
    padding-top: calc(var(--voye-cs-section-vertical));
    padding-bottom: calc(var(--voye-cs-section-vertical));
}

/* Reduce default grid top margins used throughout the site */
.voye_cs_achievements-grid,
.voye_cs_services-grid,
.voye_cs_brands-grid,
.voye_cs_platforms-grid,
.voye_cs_awards-grid,
.voye_cs_success-stories-grid {
    margin-top: 30px;
    /* tighter than original 60px */
}

.voye_cs_testimonials-carousel,
.voye_cs_testimonials-carousel-container,
.voye_cs_review-container {
    margin-top: 30px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .voye_cs_hero-title {
        font-size: 2.5rem;
    }

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

    .voye_cs_section-header h2 {
        font-size: 1.5rem;
    }

    .voye_cs_contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .voye_cs_contact-info h2 {
        font-size: 1.5rem;
    }

    .voye_cs_services-grid,
    .voye_cs_platforms-grid {
        grid-template-columns: 1fr;
    }

    .voye_cs_testimonials-slider {
        padding: 80px 0;
    }

    .voye_cs_testimonials-carousel-container {
        margin: 40px 20px 0;
    }

    .voye_cs_testimonial-slide {
        flex-direction: column;
    }

    .voye_cs_testimonial-image {
        width: 100%;
        height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .voye_cs_testimonial-text {
        width: 100%;
        padding: 30px;
        border-radius: 0 0 20px 20px;
        border-left: 1px solid rgba(2, 0, 53, 0.1);
    }

        .voye_cs_testimonial-text p {
            font-size: 1rem;
            margin-bottom: 25px;
        }

    .voye_cs_slider-controls {
        gap: 20px;
        margin-top: 30px;
    }

    .voye_cs_slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .voye_cs_testimonials-carousel {
        margin: 40px 20px 0;
    }

    .voye_cs_testimonial-card {
        flex-direction: column;
        min-height: auto;
    }

    .voye_cs_property-image {
        width: 100%;
        min-height: 250px;
    }

    .voye_cs_testimonial-content {
        width: 100%;
        padding: 30px;
    }

        .voye_cs_testimonial-content p {
            font-size: 1rem;
            margin-bottom: 30px;
        }

    .voye_cs_client-info {
        padding-top: 20px;
        gap: 15px;
    }

    .voye_cs_client-avatar {
        width: 60px;
        height: 60px;
    }

    .voye_cs_client-details h4 {
        font-size: 1.2rem;
    }

    .voye_cs_client-details span {
        font-size: 1rem;
    }

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

    .voye_cs_modal-body-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .voye_cs_modal-content {
        max-width: 95%;
    }

    .voye_cs_modal-info h3 {
        font-size: 1.6rem;
    }

    .voye_cs_addresses-grid {
        flex-direction: column;
        gap: 20px;
    }

    .voye_cs_address-card {
        max-width: 100%;
    }
}

/* Remove decorative glow/shine circles entirely (user removed icons/logos) */
.voye_cs_brand-glow,
.voye_cs_platform-shine {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide navigation arrows while any modal is open. JS will toggle `body.modal-open`. */
body.modal-open .voye_cs_nav-arrow,
body.modal-open .voye_cs_nav-arrow-left,
body.modal-open .voye_cs_nav-arrow-right,
body.modal-open .voye_cs_property-nav-arrow,
body.modal-open .voye_cs_property-nav-prev,
body.modal-open .voye_cs_property-nav-next {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Remove dots above images in the property detail modal (details view) */
/* This hides only the modal's image indicator dots so listing-card dots remain intact. */
.modal-image-dots,
.modal-image-dot {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Property Success Stories: force left-align for Before/After overview */
/* Use high specificity and !important fallbacks to override existing rules */
.voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item,
.voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item .voye_cs_stat-details,
.voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item .voye_cs_stat-row,
.voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item .voye_cs_stat-label,
.voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item * {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

    /* If stat rows use flex, ensure children align to the start */
    .voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item .voye_cs_stat-details,
    .voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item .voye_cs_stat-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

/* Desktop: keep layout but preserve left alignment */
@media (min-width: 769px) {

    .voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item .voye_cs_stat-details,
    .voye_cs_case-studies .voye_cs_transformation-stats .voye_cs_stat-item .voye_cs_stat-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* Safety: ensure modal before/after lists in the case study modal are also left-aligned */
.modal-stat-items .modal-stat-item,
.modal-stat-items .modal-stat-item * {
    text-align: left !important;
}

/* Career CTA Button Styles */
.voye_cs_career-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #020035, #041257);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 0, 53, 0.3);
}

    .voye_cs_career-btn:hover {
        background: linear-gradient(135deg, #041257, #020035);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 0, 53, 0.4);
    }

    .voye_cs_career-btn i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .voye_cs_career-btn:hover i {
        transform: translateX(5px);
    }

/* Career CTA Section */
.voye_cs_career-cta {
    background: linear-gradient(135deg, rgba(217, 154, 40, 0.1), rgba(2, 0, 53, 0.05));
    padding: 80px 40px;
    border-radius: 20px;
    margin: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .voye_cs_career-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d99a28" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23020035" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }

    .voye_cs_career-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #020035;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .voye_cs_career-cta p {
        font-size: 1.2rem;
        color: #5a5a5a;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }

    .voye_cs_career-cta .voye_cs_container {
        position: relative;
        z-index: 1;
    }

/* Mobile Responsive for Career CTA */
@media (max-width: 768px) {
    .voye_cs_career-cta {
        padding: 60px 20px;
        border-radius: 15px;
        margin: 20px;
    }

        .voye_cs_career-cta h2 {
            font-size: 2rem;
        }

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

    .voye_cs_career-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* 
        Remove banner background image and left-align content */
.voye_cs_hero-banner {
    background: #020035 !important;
    box-shadow:
    /* 0 0 100px rgba(157, 78, 221, 0.3),
                0 0 200px rgba(255, 0, 110, 0.2), */
    0 0 300px rgba(58, 134, 255, 0.2), inset 0 0 100px rgba(58, 134, 255, 0.2);
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
}

.voye_cs_hero-content {
    text-align: left !important;
    max-width: 1200px;
    padding-left: 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}

    .voye_cs_hero-content .voye_cs_container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

.voye_cs_hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.voye_cs_hero-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(2, 0, 53, 0.3) !important;
}

    .voye_cs_hero-title .voye_cs_highlight {
        color: #d99a28 !important;
        font-weight: 900 !important;
        text-shadow: 0 0 30px rgba(217, 154, 40, 0.8) !important;
        text-decoration: none !important;
        background: none !important;
        -webkit-text-fill-color: #d99a28 !important;
        background-clip: initial !important;
        -webkit-background-clip: initial !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

.voye_cs_hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 30px !important;
    opacity: 0.8 !important;
    font-weight: 400 !important;
    color: #fff !important;
}

.voye_cs_cta-button {
    padding: 15px 30px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    background: white !important;
    border: none !important;
    border-radius: 50px !important;
    color: #020035 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    position: relative !important;
    z-index: 1000 !important;
    pointer-events: auto !important;
}

    .voye_cs_cta-button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.3) !important;
    }

.voye_cs_hero-image {
    flex: 0 0 450px;
    text-align: right;
}

    .voye_cs_hero-image img {
        max-width: 450px;
        height: auto;
        filter: drop-shadow(0 20px 40px rgba(157, 78, 221, 0.4));
    }

/* Override achievements grid for 4 cards in one row */
.voye_cs_achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1400px;
}

.voye_cs_achievement-card {
    padding: 30px 20px !important;
}

.voye_cs_achievement-number {
    font-size: 2rem !important;
}

.voye_cs_achievement-label {
    font-size: 0.9rem !important;
}

/* Failsafe for tablet-sized screens that don't match orientation queries */
@media (min-width: 769px) and (max-width: 1366px) and (min-height: 500px) and (max-height: 900px) {
    .voye_cs_hero-banner {
        height: clamp(500px, 75vh, 700px) !important;
    }
}

/* General Tablet Styles (all orientations) */
@media (min-width: 769px) and (max-width: 1024px) {
    .voye_cs_hero-banner {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .voye_cs_hero-content .voye_cs_container {
        max-width: 900px;
        padding: 0 20px;
    }
}

/* Specific iPad Landscape (1024x768) and similar */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) and (min-height: 700px) and (max-height: 800px) {
    .voye_cs_hero-banner {
        height: 70vh !important;
        min-height: 500px !important;
        max-height: 580px !important;
    }

    .voye_cs_hero-content {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .voye_cs_hero-title {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
    }

    .voye_cs_hero-subtitle {
        font-size: 1.1rem !important;
    }

    .voye_cs_cta-button {
        padding: 16px 32px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 1024px) {
    .voye_cs_achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet Landscape Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .voye_cs_hero-banner {
        height: 75vh !important;
        min-height: 500px !important;
        max-height: 650px !important;
        align-items: center !important;
    }

    .voye_cs_hero-content {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

        .voye_cs_hero-content .voye_cs_container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

    .voye_cs_hero-text {
        flex: 1;
        max-width: 500px;
        padding-right: 30px;
    }

    .voye_cs_hero-title {
        font-size: 2.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }

    .voye_cs_hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
    }

    .voye_cs_cta-button {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
    }

    .voye_cs_hero-image {
        flex: 0 0 350px;
    }

        .voye_cs_hero-image img {
            max-width: 350px;
        }
}

/* Tablet Portrait Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .voye_cs_hero-banner {
        height: 65vh !important;
        min-height: 550px !important;
        max-height: 700px !important;
    }

    .voye_cs_hero-content {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .voye_cs_hero-title {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 18px !important;
    }

    .voye_cs_hero-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 28px !important;
    }

    .voye_cs_cta-button {
        padding: 16px 32px !important;
        font-size: 1rem !important;
    }
}

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

    .voye_cs_hero-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

        .voye_cs_hero-content .voye_cs_container {
            flex-direction: column !important;
            text-align: center !important;
        }

    .voye_cs_hero-text {
        max-width: 100% !important;
        margin-bottom: 30px;
        padding-right: 0 !important;
    }

    .voye_cs_hero-image {
        flex: none !important;
        text-align: center !important;
    }

        .voye_cs_hero-image img {
            max-width: 300px !important;
        }

    /* Make the banner flexible on small screens: add vertical padding and let height grow
               so long hero titles and CTAs wrap cleanly instead of breaking out of the layout. */
    .voye_cs_hero-banner {
        height: auto !important;
        padding: 36px 0 !important;
        box-sizing: border-box !important;
        align-items: center !important;
    }

    /* Decrease title/subtitle sizes on small screens so they fit better */
    .voye_cs_hero-title {
        font-size: 1.6rem !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
        /* prevent mid-word breaks/hyphenation on small screens */
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    .voye_cs_hero-subtitle {
        font-size: 0.9rem !important;
    }

    /* Reduce all section header font sizes for mobile */
    .voye_cs_section-header h2,
    .voye_cs_reviews .voye_cs_section-header h2,
    .voye_cs_testimonials .voye_cs_section-header h2 {
        font-size: 1.8rem !important;
    }

    /* Reduce property card title sizes for mobile */
    .voye_cs_property-title {
        font-size: 1.1rem !important;
        min-height: 4.4rem !important;
    }

    /* Reduce modal title sizes for mobile */
    .voye_cs_modal-property-title {
        font-size: 1.2rem !important;
    }

    /* Reduce guest reviews title for mobile */
    .voye_cs_guest-reviews h2 {
        font-size: 1.8rem !important;
    }

    /* Reduce property subtitle and summary for mobile */
    .voye_cs_property-subtitle {
        font-size: 1rem !important;
    }

    /* Reduce testimonial and guest name sizes for mobile */
    .voye_cs_testimonial-name,
    .voye_cs_guest-name {
        font-size: 1.1rem !important;
    }

    /* Reduce h3 elements for mobile */
    h3 {
        font-size: 1.5rem !important;
    }

    .voye_cs_hero-subtitle {
        margin-bottom: 18px !important;
    }

    /* Slightly smaller, more compact CTA for mobile */
    .voye_cs_cta-button {
        padding: 12px 22px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .voye_cs_hero-title {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
    }

    .voye_cs_hero-subtitle {
        font-size: 0.8rem !important;
    }

    .voye_cs_cta-button {
        padding: 10px 18px !important;
        font-size: 0.9rem !important;
    }
}

/* Case Study Section Styles */
.voye_cs_case-studies {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
}

.voye_cs_case-study-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 120px 18px 80px 18px;
    /* Reduced padding to accommodate card margins */
}

.voye_cs_case-study-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 30px;
}

.voye_cs_case-study-card {
    min-width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(2, 0, 53, 0.1);
    transition: all 0.3s ease;
    border: 4px solid rgba(217, 154, 40, 0.3);
    padding: 0;
    margin: 12px;
    box-sizing: border-box;
}

    .voye_cs_case-study-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(2, 0, 53, 0.2);
        border: 4px solid #d99a28;
    }

/* Alternating border colors */
.voye_cs_case-study-purple,
.voye_cs_case-study-pink {
    border: 4px solid rgba(2, 0, 53, 0.3);
}

    .voye_cs_case-study-purple:hover,
    .voye_cs_case-study-pink:hover {
        border: 4px solid #020035;
    }

.voye_cs_case-study-blue,
.voye_cs_case-study-orange {
    border: 4px solid rgba(217, 154, 40, 0.3);
}

    .voye_cs_case-study-blue:hover,
    .voye_cs_case-study-orange:hover {
        border: 4px solid #d99a28;
    }

/* Individual card hover styles removed - now using unified border approach */

.voye_cs_property-image {
    position: relative;
    height: 280px;
    /* Increased from 250px for better visibility */
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.voye_cs_property-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* ensure no part of adjacent slides shows */
    box-sizing: border-box;
}

.voye_cs_property-image-slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    height: 100%;
    will-change: transform;
    transform: translateZ(0);
    /* Enable hardware acceleration */
    backface-visibility: hidden;
    /* Reduce flickering */
}

.voye_cs_property-image-slide {
    width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    padding: 0;
}

.voye_cs_property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.voye_cs_case-study-card:hover .voye_cs_property-image img {
    transform: scale(1.05);
}

.voye_cs_property-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    /* white circular background */
    border: 2px solid #f5b841;
    /* golden border */
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    opacity: 0;
    font-size: 14px;
    color: #e07a00;
    /* golden icon */
}

.voye_cs_case-study-card:hover .voye_cs_property-nav-arrow {
    opacity: 1;
}

.voye_cs_property-nav-arrow:hover {
    background: #f5b841;
    /* golden on hover */
    color: #ffffff;
    /* icon turns white */
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 18px rgba(245, 184, 65, 0.18);
    border-color: #f5b841;
}

.voye_cs_property-nav-prev {
    left: 10px;
}

.voye_cs_property-nav-next {
    right: 10px;
}

.voye_cs_property-image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.voye_cs_property-image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .voye_cs_property-image-dot.active {
        background: white;
        transform: scale(1.2);
    }

.voye_cs_property-location {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    backdrop-filter: blur(10px);
    z-index: 6;
    /* keep inside card but above image content */
}

    .voye_cs_property-location i {
        color: #020035;
    }

.voye_cs_property-content {
    padding: 20px;
}

.voye_cs_property-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #020035, #1a1a52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    /* Added for better multi-line spacing */
    min-height: 4.875rem;
    /* Reserve space for 3 lines (1.25rem * 1.3 * 3 = ~4.875rem) */
}

/* .voye_cs_property-title::after {
            content: " by VOYE HOMES";
            /* match the main title weight so both parts appear visually equal */
/* font-weight: inherit;
            font-size: 0.9em;
            background: linear-gradient(135deg, #020035, #1a1a52);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; */
/* }  */

.voye_cs_property-description {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.voye_cs_property-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #020035;
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1.4;
    min-height: 3.08rem;
}

.voye_cs_property-summary {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 7.6rem;
}

.voye_cs_read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #020035;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid #020035;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    /* Ensure Read More button shows pointer cursor */
    touch-action: manipulation;
    /* Improve mobile touch responsiveness */
}

    .voye_cs_read-more-link:hover {
        background: #020035;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(2, 0, 53, 0.3);
    }

    .voye_cs_read-more-link i {
        transition: transform 0.3s ease;
    }

    .voye_cs_read-more-link:hover i {
        transform: translateX(3px);
    }

.voye_cs_transformation-stats {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(2, 0, 53, 0.05), rgba(26, 26, 82, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(2, 0, 53, 0.1);
}

.voye_cs_stat-item {
    flex: 1;
}

.voye_cs_stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.voye_cs_stat-label {
    color: #666;
}

.voye_cs_stat-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.voye_cs_stat-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    font-size: 0.9rem;
    color: #333;
    flex-wrap: nowrap !important;
    /* Prevent wrapping to new line */
}

    .voye_cs_stat-row i {
        width: 15px;
        color: #020035;
        flex-shrink: 0;
        /* Prevent icon from shrinking */
        text-align: center;
        /* Center icon within its width */
        display: inline-block !important;
        /* Ensure icon displays inline */
    }

    .voye_cs_stat-row span {
        flex: 1;
        white-space: nowrap;
        /* Prevent text from wrapping */
    }

.voye_cs_transformation-arrow {
    margin: 0 20px;
    color: #020035;
    font-size: 1.8rem;
    font-weight: bold;
    background: rgba(2, 0, 53, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #020035;
    box-shadow: 0 5px 15px rgba(2, 0, 53, 0.3);
}

.voye_cs_property-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Navigation Arrows (white + golden styling) */
.voye_cs_nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    /* white circular background */
    border: 2px solid #f5b841;
    /* golden border */
    width: 42px;
    /* Reduced from 60px */
    height: 42px;
    /* Reduced from 60px */
    border-radius: 50%;
    color: #e07a00;
    /* golden icon color */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    /* Reduced from 1.2rem */
    box-shadow: 0 5px 20px rgba(2, 0, 53, 0.08);
}

    .voye_cs_nav-arrow:hover {
        background: #f5b841;
        /* golden on hover */
        color: #ffffff;
        /* icon turns white */
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 8px 30px rgba(245, 184, 65, 0.18);
        border-color: #f5b841;
    }

.voye_cs_nav-arrow-left {
    left: 2px;
}

/* Moved slightly inward */
.voye_cs_nav-arrow-right {
    right: 2px;
}

/* Moved inward from 38px */

/* Dots Indicator */
.voye_cs_dots-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.voye_cs_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .voye_cs_dot.active {
        background: #020035;
        transform: scale(1.2);
    }

/* Swipe hint (mobile): shows a small pill telling users to swipe the carousel */
.voye_cs_swipe-hint {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    bottom: 18px;
    background: rgba(2, 0, 53, 0.92);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    z-index: 120;
    box-shadow: 0 8px 20px rgba(2, 0, 53, 0.3);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: auto;
}

    .voye_cs_swipe-hint.voye_cs_show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .voye_cs_swipe-hint .voye_cs_swipe-icon {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 6px;
        font-size: 16px;
        line-height: 1;
    }



/* Guest Reviews Section */
.voye_cs_reviews {
    padding: 80px 0;
    background: #ffffff;
}

.voye_cs_section-header h2 {
    color: #333;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.voye_cs_reviews .voye_cs_section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .voye_cs_reviews .voye_cs_section-header h2 {
        color: #333;
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .voye_cs_reviews .voye_cs_section-header p {
        color: #666;
        font-size: 1.1em;
        /*        max-width: 600px;*/
        margin: 0 auto;
    }

.voye_cs_review-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.voye_cs_review-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.voye_cs_review-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.voye_cs_review-slide {
    min-width: 100%;
    opacity: 1;
}

.voye_cs_review-card {
    background: #f8f9fa;
    border: 2px solid #d99a28;
    border-radius: 15px;
    padding: 40px;
    margin: 0 20px;
    height: 400px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.voye_cs_review-image-wrapper {
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.voye_cs_review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.voye_cs_review-content {
    flex: 1;
    color: #333;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voye_cs_review-quote {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.voye_cs_review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.voye_cs_guest-profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e9ecef;
}

.voye_cs_guest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voye_cs_guest-details {
    flex: 1;
}

.voye_cs_guest-name {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 5px;
}

.voye_cs_guest-location {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 8px;
}

.voye_cs_review-rating {
    display: flex;
    gap: 3px;
}

    .voye_cs_review-rating .voye_cs_fas,
    .voye_cs_review-rating .voye_cs_far,
    .voye_cs_review-rating .fas,
    .voye_cs_review-rating .far,
    .voye_cs_review-rating i {
        color: #FFD700 !important;
        font-size: 0.9em;
    }

/* Review Navigation */
.voye_cs_review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #d99a28;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d99a28;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .voye_cs_review-nav:hover {
        background: #d99a28;
        color: #ffffff;
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 6px 20px rgba(217, 154, 40, 0.3);
    }

.voye_cs_review-nav-prev {
    left: 10px;
}

.voye_cs_review-nav-next {
    right: 10px;
}

.voye_cs_review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.voye_cs_review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .voye_cs_review-dot.active {
        background: #d99a28;
        transform: scale(1.2);
        border-color: rgba(217, 154, 40, 0.3);
        box-shadow: 0 0 0 4px rgba(217, 154, 40, 0.1);
    }

    .voye_cs_review-dot:hover {
        background: #d99a28;
        transform: scale(1.1);
    }

/* Improve spacing for the "What Property Owners Say" reviews on smaller screens */
@media (max-width: 900px) and (min-width: 769px) {
    .voye_cs_review-container {
        padding: 0 12px;
    }

    .voye_cs_review-carousel-wrapper {
        border-radius: 12px;
    }

    .voye_cs_review-carousel {
        /* Remove padding to prevent sneak peeking */
        padding: 10px 0;
    }

    .voye_cs_review-slide {
        /* Add padding to create gap between cards while maintaining 100% slide width */
        padding: 0 10px;
        box-sizing: border-box;
        min-width: 100%;
    }

    .voye_cs_review-card {
        padding: 20px;
        margin: 0;
        /* Gap handled by slide padding on mobile */
        height: auto;
        /* let content define height */
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .voye_cs_review-image-wrapper {
        height: 180px;
        margin-bottom: 10px;
    }

    .voye_cs_review-content {
        padding: 8px 0;
    }

    .voye_cs_review-quote {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .voye_cs_guest-profile {
        width: 52px;
        height: 52px;
    }

    .voye_cs_review-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .voye_cs_review-dots {
        margin-top: 18px;
    }

    /* Additional mobile styles for smaller screens - match Partner With Us page */
    .voye_cs_review-carousel-wrapper {
        overflow: visible !important;
        /* Hide overflow to prevent sneak peeking */
        position: relative;
        /* Ensure proper positioning for arrows */
    }

    /* Smaller arrow size on mobile while preserving look on larger screens */
    .voye_cs_review-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
        box-shadow: 0 6px 18px rgba(2, 0, 53, 0.10) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border: 2px solid rgba(217, 154, 40, 0.9) !important;
        color: rgba(217, 154, 40, 1) !important;
        padding: 0 !important;
    }

        .voye_cs_review-nav i {
            font-size: 14px !important;
        }

    /* Place arrows just outside the left/right edges of the card; slightly closer for smaller size */
    .voye_cs_review-nav-prev {
        left: -14px !important;
    }

    .voye_cs_review-nav-next {
        right: -14px !important;
    }

    /* Add a small top padding so content doesn't sit flush under a slightly overlapping arrow */
    .voye_cs_review-card {
        padding-top: 14px !important;
    }

    /* Remove decorative edge masks/gradients - arrows will sit inside the wrapper */
    .voye_cs_review-nav {
        z-index: 30 !important;
    }

    /* Make every review card the same minimum height so layout doesn't jump */
    .voye_cs_review-card {
        min-height: 340px !important;
        /* consistent height for mobile */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    .voye_cs_review-image {
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Position arrows inside the wrapper for very small screens */
    .voye_cs_review-nav-prev {
        left: 8px !important;
    }

    .voye_cs_review-nav-next {
        right: 8px !important;
    }

    .voye_cs_review-dots {
        margin-top: 10px !important;
    }
}

/* Mobile responsive styles for reviews section - make it swipeable like case studies */
@media (max-width: 768px) {
    .voye_cs_reviews {
        padding: 60px 0 !important;
    }

    .voye_cs_review-container {
        padding: 0 12px !important;
        /* Add some padding to accommodate card margins */
        position: relative !important;
    }

    .voye_cs_review-carousel-wrapper {
        overflow: hidden !important;
        /* Hide overflow for single card view */
        padding: 0 !important;
        /* Remove padding */
        margin: 0 !important;
        /* Remove margin */
        border-radius: 15px !important;
        position: relative !important;
    }

    .voye_cs_review-carousel {
        display: flex !important;
        transition: transform 0.4s ease-in-out !important;
        gap: 0 !important;
        /* Remove gap between slides since slides now have their own margins */
        padding: 0 !important;
        /* Remove all padding */
    }

    .voye_cs_review-slide {
        min-width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        flex: 0 0 calc(100% - 24px) !important;
        margin: 12px !important;
        /* Apply 12px margin on mobile for spacing between cards */
        padding: 0 !important;
        /* Remove desktop padding for mobile */
        border-radius: 20px !important;
        /* Restore border radius with margins */
        box-sizing: border-box !important;
    }

    .voye_cs_review-card {
        background: #f8f9fa !important;
        border: 2px solid #d99a28 !important;
        border-radius: 15px !important;
        padding: 30px !important;
        height: auto !important;
        min-height: 380px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        margin: 0 !important;
        /* Remove margin since it's handled by slide */
    }

    /* Add hover effects that work well with margins */
    .voye_cs_review-slide:hover {
        margin-top: 12px !important;
        /* Keep consistent margin */
        transform: translateY(-5px) !important;
        /* Reduce upward movement on mobile */
    }

    .voye_cs_review-image-wrapper {
        flex: 0 0 180px !important;
        height: 180px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        margin-bottom: 0 !important;
    }

    .voye_cs_review-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
    }

    .voye_cs_review-quote {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: #555 !important;
        font-style: italic !important;
        margin-bottom: 20px !important;
        flex: 1 !important;
    }

    .voye_cs_review-author {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: auto !important;
    }

    .voye_cs_guest-profile {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .voye_cs_guest-photo {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .voye_cs_guest-details {
        flex: 1 !important;
    }

    .voye_cs_guest-name {
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        color: #333 !important;
        margin-bottom: 5px !important;
    }

    .voye_cs_guest-location {
        font-size: 0.95rem !important;
        color: #666 !important;
        margin-bottom: 8px !important;
    }

    .voye_cs_review-rating {
        display: flex !important;
        gap: 3px !important;
    }

        .voye_cs_review-rating i {
            color: #d99a28 !important;
            font-size: 0.9rem !important;
        }

    /* Navigation arrows - similar to case study section */
    .voye_cs_review-nav {
        display: flex !important;
        position: absolute !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 12px !important;
        top: 34.5% !important;
        /* Position in the middle of card area */
        box-shadow: 0 8px 20px rgba(2, 0, 53, 0.12) !important;
        background: #ffffff !important;
        border: 2px solid #f5b841 !important;
        color: #e07a00 !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 40 !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        transform: translateY(-50%) !important;
    }

    .voye_cs_review-nav-prev {
        left: -0.8px !important;
    }

    /* Move outside the left border */
    .voye_cs_review-nav-next {
        right: -0.8px !important;
    }

    /* Move outside the right border */

    /* Dots positioning and styling */
    .voye_cs_review-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .voye_cs_review-dot {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background: rgba(217, 154, 40, 0.3) !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

        .voye_cs_review-dot.active {
            background: #020035 !important;
            transform: scale(1.2) !important;
        }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .voye_cs_case-study-container {
        padding: 0 12px;
        /* Add some padding to accommodate card margins */
    }

    .voye_cs_case-study-grid {
        gap: 0;
        /* Remove gap between cards since cards now have their own margins */
        padding-left: 0;
        /* Remove left padding */
        padding-right: 0;
        /* Remove right padding */
    }

    .voye_cs_case-study-card {
        min-width: calc(100% - 24px);
        flex: 0 0 calc(100% - 24px);
        margin: 12px;
        /* Apply 12px margin on mobile too */
        padding: 0;
        /* Remove desktop padding for mobile */
        border-radius: 20px;
        /* Restore border radius with margins */
    }

        /* Add hover effects that work well with margins */
        .voye_cs_case-study-card:hover {
            margin-top: 12px;
            /* Keep consistent margin */
            transform: translateY(-5px);
            /* Reduce upward movement on mobile */
        }

    .voye_cs_transformation-stats {
        flex-direction: column;
        gap: 15px;
    }

    .voye_cs_transformation-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    /* Show main navigation arrows on mobile as tappable buttons
               smaller than desktop, moved inward to avoid edge clipping and text overlap */
    .voye_cs_nav-arrow {
        display: flex !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 12px !important;
        top: 34.5% !important;
        /* Moved higher to avoid property name and description */
        box-shadow: 0 8px 20px rgba(2, 0, 53, 0.12) !important;
        background: #ffffff !important;
        border: 2px solid #f5b841 !important;
        color: #e07a00 !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 40 !important;
    }

    .voye_cs_nav-arrow-left {
        left: -0.8px !important;
    }

    /* Move outside the left border */
    .voye_cs_nav-arrow-right {
        right: -0.8px !important;
    }

    /* Move outside the right border */




    .voye_cs_review-nav {
        position: absolute !important;
        top: 20% !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
        box-shadow: 0 6px 18px rgba(2, 0, 53, 0.10) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border: 2px solid rgba(217, 154, 40, 0.9) !important;
        color: rgba(217, 154, 40, 1) !important;
        padding: 0 !important;
    }

        .voye_cs_review-nav i {
            font-size: 14px !important;
        }

    /* Place arrows just outside the left/right edges of the card; slightly closer for smaller size */
    .voye_cs_review-nav-prev {
        left: -14px !important;
    }

    .voye_cs_review-nav-next {
        right: -14px !important;
    }

    /* Add a small top padding so content doesn't sit flush under a slightly overlapping arrow */
    .voye_cs_review-card {
        padding-top: 14px !important;
    }

    /* Keep dots below the card content */
    .voye_cs_review-dots {
        margin-top: 10px !important;
    }










    /* Make in-image nav arrows visible on touch devices (no hover) */
    .voye_cs_case-study-card .voye_cs_property-nav-arrow {
        opacity: 1 !important;
        display: flex !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 8px 20px rgba(2, 0, 53, 0.12) !important;
    }

    /* Position arrows in the padding space, not on the image */
    .voye_cs_case-study-card .voye_cs_property-nav-prev {
        left: 2px !important;
        top: 40% !important;
        /* Position in the middle of image area */
    }

    .voye_cs_case-study-card .voye_cs_property-nav-next {
        right: 2px !important;
        top: 40% !important;
        /* Position in the middle of image area */
    }

    /* Disable image scaling on hover for mobile */
    .voye_cs_case-study-card:hover .voye_cs_property-image img {
        transform: none !important;
    }

    .voye_cs_property-content {
        padding: 20px;
    }

    /* Add padding to property success story images on mobile (similar to testimonial section) */
    .voye_cs_case-study-card .voye_cs_property-image {
        padding: 10px 10px 0px 10px !important;
        border-radius: 12px;
        overflow: hidden;
        height: 280px !important;
        /* Increase height to ensure full image visibility */
    }

    /* Ensure the carousel respects the padding */
    .voye_cs_case-study-card .voye_cs_property-image-carousel {
        border-radius: 12px;
        overflow: hidden;
        height: 100%;
    }

    /* Add extra top padding for location badge on mobile */
    .voye_cs_case-study-card .voye_cs_property-location {
        top: 25px;
        /* Adjusted for new padding */
        right: 25px;
        /* Adjusted for new padding */
    }

    /* Ensure arrows that live in .voye_cs_property-controls are visible on mobile
               (we previously moved arrows into the content area). This forces
               them to display and be large/tappable on touch devices. */
    .voye_cs_property-controls {
        display: flex !important;
        justify-content: flex-end;
        gap: 8px;
        align-items: center;
    }

        .voye_cs_property-controls .voye_cs_property-nav-arrow {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
            width: 48px !important;
            height: 48px !important;
            font-size: 18px !important;
            box-shadow: 0 8px 20px rgba(2, 0, 53, 0.12) !important;
            position: relative !important;
            z-index: 30 !important;
            /* ensure above card content */
        }

    /* Ensure Read More buttons have proper touch targets on mobile */
    .voye_cs_read-more-link {
        min-height: 44px !important;
        /* Apple's recommended minimum touch target */
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        z-index: 1000 !important;
        /* Ensure above swipe handling */
        position: relative !important;
    }
}

/* Testimonials Section Styles */
.voye_cs_testimonials {
    padding: 80px 0;
    background: #ffffff;
}

    .voye_cs_testimonials .voye_cs_section-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .voye_cs_testimonials .voye_cs_section-header h2 {
            color: #333;
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .voye_cs_testimonials .voye_cs_section-header p {
            color: #666;
            font-size: 1.1em;
            max-width: 600px;
            margin: 0 auto;
        }

.voye_cs_testimonial-container {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.voye_cs_testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: auto;
    min-height: 350px;
}

.voye_cs_testimonial-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    width: 100%;
    height: 100%;
    will-change: transform;
    transform: translateZ(0);
    /* Enable hardware acceleration */
    backface-visibility: hidden;
    /* Reduce flickering */
}

.voye_cs_testimonial-slide {
    min-width: 100%;
    /* Each slide takes full width */
    width: 100%;
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
}

.voye_cs_testimonial-card {
    background: #f8f9fa;
    border: 2px solid #d99a28;
    border-radius: 15px;
    padding: 40px;
    margin: 0 20px;
    height: 400px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.voye_cs_testimonial-image-wrapper {
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.voye_cs_testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.voye_cs_testimonial-content {
    flex: 1;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voye_cs_testimonial-quote {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.voye_cs_testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.voye_cs_author-profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e9ecef;
}

.voye_cs_author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voye_cs_author-details {
    flex: 1;
}

.voye_cs_testimonial-name {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.voye_cs_testimonial-property {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 8px;
}

.voye_cs_testimonial-rating {
    display: flex;
    gap: 3px;
}

    .voye_cs_testimonial-rating .voye_cs_fas,
    .voye_cs_testimonial-rating .voye_cs_far {
        color: #FFD700;
        font-size: 0.9em;
    }

/* Navigation Arrows */
.voye_cs_testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #d99a28;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d99a28;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .voye_cs_testimonial-nav:hover {
        background: #d99a28;
        color: #ffffff;
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 6px 20px rgba(217, 154, 40, 0.3);
    }

    .voye_cs_testimonial-nav:active {
        background: #d99a28;
        transform: translateY(-50%) scale(0.95);
    }

.voye_cs_testimonial-nav-prev {
    left: 10px;
}

.voye_cs_testimonial-nav-next {
    right: 10px;
}

.voye_cs_testimonial-nav i {
    font-size: 1.2rem;
    color: inherit;
    transition: color 0.3s ease;
}

/* Dots Indicator */
.voye_cs_testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.voye_cs_testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .voye_cs_testimonial-dot.active {
        background: #d99a28;
        transform: scale(1.2);
        border-color: rgba(217, 154, 40, 0.3);
        box-shadow: 0 0 0 4px rgba(217, 154, 40, 0.1);
    }

    .voye_cs_testimonial-dot:hover {
        background: #d99a28;
        transform: scale(1.1);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .voye_cs_testimonials {
        padding: 60px 0;
    }

    .voye_cs_testimonial-container {
        max-width: 90%;
        margin: 0 auto;
    }

    .voye_cs_testimonial-slide {
        padding: 0 10px;
    }

    .voye_cs_testimonial-card {
        flex-direction: column;
        gap: 0;
        max-width: 100%;
        /* text-align: center; */
    }

    .voye_cs_testimonial-image-wrapper {
        width: 100%;
        height: 200px;
        margin: 20px 20px 0 20px;
        border-radius: 12px 12px 0 0;
    }

    /* .voye_cs_testimonial-content {
                padding: 20px 30px 30px 30px;
            } */

    .voye_cs_testimonial-quote {
        font-size: 0.9rem;
        margin-bottom: 20px;
        text-align: left;
    }

        .voye_cs_testimonial-quote::before {
            font-size: 2rem;
            left: -10px;
        }

    .voye_cs_testimonial-author {
        text-align: center;
    }

    .voye_cs_testimonial-rating {
        justify-content: left;
    }

    .voye_cs_testimonial-nav {
        width: 40px;
        height: 40px;
        background: #020035;
        border-color: rgba(2, 0, 53, 0.2);
    }

        .voye_cs_testimonial-nav:hover {
            background: #d99a28;
            border-color: #d99a28;
        }

    .voye_cs_testimonial-nav-prev {
        left: 5px;
    }

    .voye_cs_testimonial-nav-next {
        right: 5px;
    }

    .voye_cs_testimonial-nav i {
        font-size: 1rem;
        color: white;
    }
}

@media (max-width: 480px) {
    .voye_cs_testimonial-nav {
        display: none;
    }

    .voye_cs_testimonial-container {
        max-width: 95%;
    }

    .voye_cs_testimonial-slide {
        padding: 0 5px;
    }

    .voye_cs_testimonial-card {
        margin: 0 10px;
    }

    .voye_cs_testimonial-image-wrapper {
        margin: 15px 15px 0 15px;
        height: 180px;
    }

    .voye_cs_testimonial-content {
        padding: 15px 20px 25px 20px;
    }

    .voye_cs_testimonial-quote {
        font-size: 0.8rem;
    }
}

/* Guest Reviews Styles */
.voye_cs_guest-reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.voye_cs_guest-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.voye_cs_guest-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #020035;
    margin-bottom: 20px;
    font-weight: 700;
}

.voye_cs_guest-reviews-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.voye_cs_guest-reviews-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.voye_cs_guest-reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.voye_cs_guest-review-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.voye_cs_guest-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.voye_cs_guest-review-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #d99a28;
}

    .voye_cs_guest-review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.voye_cs_guest-review-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.voye_cs_guest-review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.voye_cs_guest-review-card:hover .voye_cs_guest-review-image {
    transform: scale(1.05);
}

.voye_cs_guest-review-content {
    padding: 25px 30px 30px 30px;
}

.voye_cs_guest-review-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    font-style: italic;
}

    .voye_cs_guest-review-quote::before {
        content: '"';
        font-size: 3rem;
        color: #d99a28;
        position: absolute;
        left: -15px;
        top: -10px;
        font-family: serif;
    }

.voye_cs_guest-review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.voye_cs_guest-review-name {
    font-weight: 600;
    color: #020035;
    font-size: 0.95rem;
}

.voye_cs_guest-review-rating {
    display: flex;
    gap: 2px;
}

    .voye_cs_guest-review-rating .voye_cs_star {
        color: #d99a28;
        font-size: 0.9rem;
    }

/* Guest Reviews Navigation */
.voye_cs_guest-reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #020035;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .voye_cs_guest-reviews-nav:hover {
        background: #d99a28;
        border-color: #d99a28;
        transform: translateY(-50%) scale(1.1);
    }

.voye_cs_guest-reviews-nav-prev {
    left: 10px;
}

.voye_cs_guest-reviews-nav-next {
    right: 10px;
}

.voye_cs_guest-reviews-nav i {
    font-size: 1.2rem;
    color: white;
}

/* Guest Reviews Dots */
.voye_cs_guest-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.voye_cs_guest-review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .voye_cs_guest-review-dot.active {
        background: #d99a28;
        transform: scale(1.2);
        border-color: rgba(217, 154, 40, 0.3);
        box-shadow: 0 0 0 4px rgba(217, 154, 40, 0.1);
    }

    .voye_cs_guest-review-dot:hover {
        background: #d99a28;
        transform: scale(1.1);
    }

/* Guest Reviews Mobile Responsive */
@media (max-width: 768px) {
    .voye_cs_guest-reviews {
        padding: 60px 0;
    }

    .voye_cs_guest-review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voye_cs_guest-review-slide {
        padding: 0 10px;
    }

    .voye_cs_guest-reviews-nav {
        width: 40px;
        height: 40px;
    }

    .voye_cs_guest-reviews-nav-prev {
        left: 5px;
    }

    .voye_cs_guest-reviews-nav-next {
        right: 5px;
    }

    .voye_cs_guest-reviews-nav i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .voye_cs_guest-reviews-nav {
        display: none;
    }

    .voye_cs_guest-review-card {
        margin: 0 10px;
    }

    .voye_cs_guest-review-image-wrapper {
        height: 180px;
    }

    .voye_cs_guest-review-content {
        padding: 15px 20px 25px 20px;
    }

    .voye_cs_guest-review-quote {
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.voye_cs_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 80px;
}

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

.voye_cs_modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 1000px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.voye_cs_modal-close {
    /* Keep the close button pinned to the top-right of the modal and use brand blue
               Added extra inset so it doesn't touch the modal/card border */
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 20px;
    left: 20px;
    /* increased inset from edge */
    background: #f5b841;
    /* golden background for golden and white combination */
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    /* white icon color */
    font-size: 1.1rem;
    transition: all 0.18s ease;
    z-index: 9999;
    /* ensure it stays above other modal content */
    padding: 10px;
    /* increased inner padding so the X doesn't touch the circle edge */
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 18px rgba(2, 0, 53, 0.18);
}

    .voye_cs_modal-close:hover {
        background: #e07a00;
        /* darker golden on hover */
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(245, 184, 65, 0.25);
    }



.voye_cs_modal-close-right:hover {
    background: #0533a1;
    transform: scale(1.05);
}

/* Ensure the icon inside the circular close button has space and a controlled size */
.voye_cs_modal-close i {
    font-size: 1rem;
    /* slightly smaller than button font-size so there's breathing room */
    line-height: 1;
}

.voye_cs_modal-header {
    position: relative;
    height: auto;
    overflow: visible;
    border-radius: 20px 20px 0 0;
    width: 100%;
    margin: 0;
    padding: 0 20px 20px 20px;
}

.voye_cs_modal-image-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 15px;
}

.voye_cs_modal-image-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    position: relative;
    box-sizing: border-box;
    will-change: transform;
    margin: 0;
    padding: 0;
}

.voye_cs_modal-image-slide {
    flex: 0 0 100%;
    flex-shrink: 0;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

    .voye_cs_modal-image-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
        border-radius: 15px;
    }

.voye_cs_modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voye_cs_modal-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #f5b841;
    color: #e07a00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(2, 0, 53, 0.08);
    padding: 8px;
}

    .voye_cs_modal-nav-arrow:hover {
        background: #f5b841;
        color: #ffffff;
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 8px 30px rgba(245, 184, 65, 0.18);
        border-color: #f5b841;
    }

.voye_cs_modal-nav-left {
    left: 10px;
}

.voye_cs_modal-nav-right {
    right: 10px;
}

.modal-image-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(255, 0, 0, 0.5);
    /* Debug background */
}

.modal-image-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

    .modal-image-dot.active {
        background: #d99a28;
        transform: scale(1.2);
    }

.voye_cs_modal-property-info {
    position: static;
    background: transparent;
    color: #333;
    padding: 0 10px 0 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.voye_cs_modal-property-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    background: linear-gradient(135deg, #020035, #1a1a52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
}

.voye_cs_modal-property-location {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    color: midnightblue;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 12;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.voye_cs_modal-body {
    padding: 20px 40px 40px;
}

.voye_cs_modal-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.voye_cs_modal-stat-section {
    background: linear-gradient(135deg, rgba(2, 0, 53, 0.05), rgba(217, 154, 40, 0.05));
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(2, 0, 53, 0.1);
    width: 99%;
}

.voye_cs_modal-stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #020035;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.modal-stat-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-stat-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
    min-height: 40px;
}

/* Force right alignment with highest specificity */
.voye_cs_modal-stat-section .modal-stat-item .voye_cs_modal-stat-value {
    text-align: right !important;
}

.voye_cs_modal-stat-section .modal-stat-item .voye_cs_modal-stat-label {
    text-align: left !important;
}

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

.voye_cs_modal-stat-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
    text-align: left !important;
    flex-grow: 1;
    font-size: 1rem;
    justify-content: flex-start !important;
    margin-right: auto;
}

    .voye_cs_modal-stat-label i {
        color: #020035;
        width: 20px;
    }

.voye_cs_modal-stat-value {
    font-weight: 600;
    color: #020035;
    font-size: 1rem;
    text-align: right !important;
    flex-shrink: 0;
    max-width: 50%;
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: keep-all;
    white-space: normal;
    hyphens: none;
    line-height: 1.2;
    margin-left: auto;
    text-indent: 0 !important;
    direction: ltr !important;
}

.voye_cs_modal-description {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

    .voye_cs_modal-description h3 {
        color: #333;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .voye_cs_modal-description p {
        color: #666;
        line-height: 1.7;
        font-size: 1rem;
    }

.voye_cs_modal-challenges-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.voye_cs_modal-section {
    background: linear-gradient(135deg, rgba(2, 0, 53, 0.05), rgba(217, 154, 40, 0.05));
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(2, 0, 53, 0.1);
}

    .voye_cs_modal-section h3 {
        color: #020035;
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

.voye_cs_challenge-list,
.voye_cs_results-list,
.voye_cs_takeaways-list,
.voye_cs_approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voye_cs_challenge-item,
.voye_cs_result-item,
.voye_cs_takeaway-item,
.voye_cs_approach-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(2, 0, 53, 0.1);
}

    .voye_cs_challenge-item:last-child,
    .voye_cs_result-item:last-child,
    .voye_cs_takeaway-item:last-child,
    .voye_cs_approach-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .voye_cs_challenge-item i {
        color: #ff6b6b;
        margin-top: 2px;
    }

    .voye_cs_result-item i {
        color: #4ecdc4;
        margin-top: 2px;
    }

    .voye_cs_takeaway-item i {
        color: #020035;
        margin-top: 2px;
    }

    .voye_cs_approach-item i {
        color: #d99a28;
        margin-top: 2px;
    }

    .voye_cs_challenge-item span,
    .voye_cs_result-item span,
    .voye_cs_takeaway-item span,
    .voye_cs_approach-item span {
        color: #555;
        line-height: 1.6;
        font-size: 0.95rem;
    }

.voye_cs_modal-approach {
    background: linear-gradient(135deg, rgba(217, 154, 40, 0.05), rgba(2, 0, 53, 0.05));
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(217, 154, 40, 0.2);
}

    .voye_cs_modal-approach h3 {
        color: #d99a28;
        font-size: 1.3rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

.voye_cs_modal-testimonial {
    background: linear-gradient(135deg, #020035, #1a1a52);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

    .voye_cs_modal-testimonial h3 {
        color: white;
        font-size: 1.3rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .voye_cs_modal-testimonial .voye_cs_testimonial-content {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .voye_cs_modal-testimonial .voye_cs_quote-mark {
        font-size: 4rem;
        color: rgba(255, 255, 255, 0.2);
        position: absolute;
        top: -20px;
        left: -10px;
        font-family: serif;
        line-height: 1;
    }

    .voye_cs_modal-testimonial p {
        font-style: italic;
        line-height: 1.7;
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-left: 0;
        padding-right: 0;
        color: white;
        text-align: left;
        word-break: keep-all;
        overflow-wrap: break-word;
        /* hyphens: auto; */
        max-width: 100%;
        box-sizing: border-box;
    }

    .voye_cs_modal-testimonial .voye_cs_testimonial-author {
        text-align: right;
        font-weight: 600;
        opacity: 0.9;
        font-size: 0.95rem;
        padding-right: 10px;
        max-width: calc(100% - 10px);
        box-sizing: border-box;
    }

.voye_cs_modal-takeaways {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

    .voye_cs_modal-takeaways h3 {
        color: #333;
        font-size: 1.3rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

/* Modal CTA Section */
.voye_cs_modal-cta-section {
    background: linear-gradient(135deg, #020035, #1a1a52);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .voye_cs_modal-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(217, 154, 40, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(217, 154, 40, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.voye_cs_modal-cta-content {
    position: relative;
    z-index: 2;
}

.voye_cs_modal-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voye_cs_modal-cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.voye_cs_modal-cta-button {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #d99a28;
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}

    .voye_cs_modal-cta-button:hover {
        background: #e6a82e;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(217, 154, 40, 0.4);
    }

.voye_cs_voye-approach-heading {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

    .voye_cs_voye-approach-heading h3 {
        color: #020035;
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        background: linear-gradient(135deg, #020035, #1a1a52);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/* Property Overview Styling */
#modalFullDescription h4 {
    color: #020035;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.3;
}

#modalFullDescription p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Results at a Glance Styling */
.voye_cs_results-at-glance {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(2, 0, 53, 0.1);
}

    .voye_cs_results-at-glance h3 {
        color: #020035;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
    }

/* Results at a Glance Section - Match Combined Portfolio Impact styling */
.voye_cs_glance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.voye_cs_glance-stat-item {
    background: white;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 241, 246, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .voye_cs_glance-stat-item.voye_cs_positive {
        border-color: rgba(86, 171, 47, 0.2);
        box-shadow: 0 10px 30px rgba(86, 171, 47, 0.15);
    }

    .voye_cs_glance-stat-item.voye_cs_neutral {
        border-color: rgba(102, 126, 234, 0.2);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    }

    .voye_cs_glance-stat-item:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .voye_cs_glance-stat-item.voye_cs_positive:hover {
        box-shadow: 0 20px 60px rgba(86, 171, 47, 0.3);
        border-color: #56ab2f;
    }

    .voye_cs_glance-stat-item.voye_cs_neutral:hover {
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        border-color: #667eea;
    }

.voye_cs_glance-stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #020035;
    margin-bottom: 10px;
}

.voye_cs_glance-stat-label {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.voye_cs_glance-stat-glow {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.voye_cs_glance-stat-item.voye_cs_positive .voye_cs_glance-stat-glow {
    background: radial-gradient(circle, rgba(86, 171, 47, 0.1) 0%, transparent 70%);
}

@media (max-width: 1200px) {
    .voye_cs_glance-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .voye_cs_glance-stats {
        grid-template-columns: 1fr;
    }
}

.voye_cs_glance-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voye_cs_glance-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(2, 0, 53, 0.15);
}

    .voye_cs_glance-stat-item:hover::before {
        opacity: 1;
    }

.voye_cs_glance-stat-content {
    position: relative;
    z-index: 2;
}

.voye_cs_glance-stat-item:hover .voye_cs_glance-stat-value {
    transform: scale(1.05);
}

.voye_cs_glance-stat-item:hover .voye_cs_glance-stat-label {
    color: #333;
}


.voye_cs_glance-stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

    .voye_cs_glance-stat-icon i {
        font-size: 2rem;
        color: white;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

.voye_cs_glance-stat-item.voye_cs_positive .voye_cs_glance-stat-icon {
    background: linear-gradient(45deg, #050903, #020035);
    box-shadow: 0 0 30px rgb(51, 45, 216);
}

.voye_cs_glance-stat-item.voye_cs_neutral .voye_cs_glance-stat-icon {
    background: linear-gradient(45deg, #020035, #020035);
    box-shadow: 0 0 30px rgba(75, 97, 209, 0.5);
}

.voye_cs_glance-stat-item:hover .voye_cs_glance-stat-icon {
    transform: scale(1.1);
}

.voye_cs_glance-stat-item.voye_cs_positive:hover .voye_cs_glance-stat-icon {
    box-shadow: 0 0 40px rgb(72, 67, 230);
}

.voye_cs_glance-stat-item.voye_cs_neutral:hover .voye_cs_glance-stat-icon {
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.7);
}

.voye_cs_glance-stat-change {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 600;
    margin-top: 4px;
}

/* Modal Glance Section - Match Combined Portfolio Impact */
.voye_cs_modal-glance-section {
    padding: 60px 0;
    background: #f8f9ff;
    margin: 40px -40px;
    border-radius: 20px;
}

    .voye_cs_modal-glance-section .voye_cs_section-header {
        text-align: center;
        margin-bottom: 40px;
    }

        .voye_cs_modal-glance-section .voye_cs_section-header h2 {
            font-size: 2.5rem;
            color: #020035;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .voye_cs_modal-glance-section .voye_cs_section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

    .voye_cs_modal-glance-section .voye_cs_achievements-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 40px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 40px;
    }

.voye_cs_modal-glance-card {
    background: white;
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .voye_cs_modal-glance-card.voye_cs_card-purple {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_cs_modal-glance-card.voye_cs_card-blue {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_cs_modal-glance-card.voye_cs_card-green {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_cs_modal-glance-card.voye_cs_card-orange {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_cs_modal-glance-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .voye_cs_modal-glance-card.voye_cs_card-purple:hover {
        box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
        border-color: #020035;
    }

    .voye_cs_modal-glance-card.voye_cs_card-blue:hover {
        box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
        border-color: #020035;
    }

    .voye_cs_modal-glance-card.voye_cs_card-green:hover {
        box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
        border-color: #020035;
    }

    .voye_cs_modal-glance-card.voye_cs_card-orange:hover {
        box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
        border-color: #020035;
    }

.voye_cs_modal-glance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    background: #020035;
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_modal-glance-card.voye_cs_card-purple .voye_cs_modal-glance-icon {
    background: linear-gradient(45deg, #020035 0%, #020035 60%, #d99a28 100%);
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_modal-glance-card.voye_cs_card-blue .voye_cs_modal-glance-icon {
    background: linear-gradient(45deg, #020035 0%, #d99a28 40%, #020035 100%);
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_modal-glance-card.voye_cs_card-green .voye_cs_modal-glance-icon {
    background: #020035;
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_modal-glance-card.voye_cs_card-orange .voye_cs_modal-glance-icon {
    background: #020035;
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_cs_modal-glance-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #020035;
    margin-bottom: 10px;
    white-space: nowrap;
}

.voye_cs_modal-glance-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .voye_cs_modal-glance-section .voye_cs_achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .voye_cs_modal-glance-section .voye_cs_achievements-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .voye_cs_modal-glance-section {
        margin: 40px -20px;
        padding: 40px 0;
    }
}

.voye_cs_modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.voye_cs_modal-feature {
    background: white;
    border: 2px solid rgba(157, 78, 221, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

    .voye_cs_modal-feature:hover {
        border-color: #020035;
        transform: translateY(-2px);
    }

    .voye_cs_modal-feature i {
        font-size: 2rem;
        color: #020035;
        margin-bottom: 15px;
    }

    .voye_cs_modal-feature h4 {
        color: #020035;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .voye_cs_modal-feature p {
        color: #020035;
        font-size: 0.9rem;
    }

@media (max-width: 768px) {
    .voye_cs_modal-content {
        width: 95vw;
        max-height: 95vh;
    }

    .voye_cs_modal-close {
        top: 15px;
        right: 30px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .voye_cs_modal-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voye_cs_modal-stat-section {
        padding: 10px;
    }

    .modal-stat-item {
        padding: 6px 0;
    }

    .voye_cs_modal-stat-label {
        font-size: 0.9rem;
        gap: 8px;
    }

    .voye_cs_modal-stat-value {
        font-size: 0.9rem;
        max-width: 45%;
        line-height: 1.1;
    }

    .voye_cs_modal-challenges-results {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voye_cs_modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .voye_cs_modal-stat-label {
        font-size: 0.85rem;
        gap: 6px;
    }

    .voye_cs_modal-stat-value {
        font-size: 0.85rem;
        max-width: 40%;
        line-height: 1.1;
    }

    .voye_cs_modal-stat-section {
        padding: 8px;
    }

    .voye_cs_modal-property-title {
        font-size: 2rem;
    }

    .voye_cs_modal-features {
        grid-template-columns: 1fr;
    }

    .voye_cs_modal-testimonial .voye_cs_quote-mark {
        font-size: 3rem;
        top: -15px;
        left: -5px;
    }

    .voye_cs_modal-testimonial p {
        padding-left: 20px;
        font-size: 1rem;
        text-align: left;
        word-wrap: break-word;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .voye_cs_modal-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Multi-line clamp: limit long descriptive/review text to 5 lines with ellipses
           Applied to case-study page: property summaries, review quotes, guest reviews and modal paragraphs.
           Uses -webkit-line-clamp (widely supported) with overflow:hidden fallback. */
.voye_cs_property-summary,
.voye_cs_property-description p,
.voye_cs_review-quote,
.voye_cs_testimonial-quote,
.voye_cs_guest-review-quote,
.voye_cs_guest-review-quote,
.voye_cs_modal-testimonial p {
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-height: calc(1.6em * 5) !important;
    /* approx. guard based on line-height */
}

    /* Show complete review quote on hover */
    .voye_cs_review-quote:hover {
        display: block !important;
        -webkit-line-clamp: none !important;
        -webkit-box-orient: initial !important;
        overflow: visible !important;
        text-overflow: initial !important;
        max-height: none !important;
    }

    /* Show complete modal testimonial on hover */
    .voye_cs_modal-testimonial p:hover {
        display: block !important;
        -webkit-line-clamp: none !important;
        -webkit-box-orient: initial !important;
        overflow: visible !important;
        text-overflow: initial !important;
        max-height: none !important;
    }




/* Allow modal description paragraphs to display fully without truncation */
.voye_cs_modal-description p {
    display: block !important;
    -webkit-line-clamp: none !important;
    -webkit-box-orient: initial !important;
    overflow: visible !important;
    text-overflow: initial !important;
    max-height: none !important;
}

/* Mobile overrides for testimonials: remove clamp and reduce font size */
@media (max-width: 768px) {
    .voye_cs_testimonial-quote {
        display: block !important;
        -webkit-line-clamp: none !important;
        -webkit-box-orient: initial !important;
        overflow: visible !important;
        text-overflow: initial !important;
        max-height: none !important;
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .voye_cs_testimonial-quote {
        font-size: 0.7rem;
    }

    .voye_cs_section-header p {
        font-size: 0.95rem !important;
    }
}

/* Mobile modal layout adjustments */
@media (max-width: 768px) {

    /* Let the header flow vertically and shrink to content height on mobile */
    .voye_cs_modal-header {
        flex-direction: column;
        height: auto;
        /* collapse the fixed desktop height so the image fits snugly */
        padding-bottom: 0;
    }

    .voye_cs_modal-image-slider {
        position: relative;
        height: 250px;
        /* set fixed height for mobile to ensure images are visible */
        border-radius: 12px;
        overflow: hidden;
        /* add overflow hidden back for proper clipping */
    }

    /* Remove the dark gradient overlay that appears below the image on desktop
               and ensure the property info sits below the image in the normal flow */
    .voye_cs_modal-property-info {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        background: transparent !important;
        color: #333 !important;
        padding: 0 10px 0 10px !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        text-align: start;
    }

    /* Keep the location badge visible on the image but avoid adding extra bands */
    .voye_cs_modal-property-location {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.85);
        color: midnightblue;
        padding: 5px 10px;
        border-radius: 5px;
        z-index: 12;
        font-size: 14px;
    }

    .voye_cs_modal-property-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #333;
        background: linear-gradient(135deg, #020035, #1a1a52);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.3;
        margin-bottom: 10;
        text-align: center;
    }

    /* Move dots a bit closer to the image bottom on mobile so they don't create visual gaps */
    .modal-image-dots {
        bottom: 14px;
    }
}

/* Case study page specific: reduce section spacing for tighter layout */
/* Desktop: reduce from 120px to 60px */
.voye_cs_achievements,
.voye_cs_case-studies,
.voye_cs_reviews,
.voye_cs_testimonials {
    padding: 60px 0 !important;
}

/* Mobile: reduce further for compact mobile layout */
@media (max-width: 768px) {

    .voye_cs_achievements,
    .voye_cs_case-studies,
    .voye_cs_reviews,
    .voye_cs_testimonials {
        padding: 40px 0 !important;
    }
}

/* Extra small mobile: even more compact */
@media (max-width: 480px) {

    .voye_cs_achievements,
    .voye_cs_case-studies,
    .voye_cs_reviews,
    .voye_cs_testimonials {
        padding: 30px 0 !important;
    }
}

/* Case study page specific: reduce space between Property Success Stories title and cards (desktop only) */
@media (min-width: 769px) {
    .voye_cs_case-studies .voye_cs_section-header {
        margin-bottom: 0px !important;
    }

        .voye_cs_case-studies .voye_cs_section-header p {
            margin-bottom: 0px !important;
        }

    .voye_cs_case-studies .voye_cs_case-study-container {
        margin-top: 0px !important;
        padding-top: 0px !important;
    }

    .voye_cs_case-studies .voye_cs_case-study-grid {
        padding-top: 0px !important;
        margin-top: 0px !important;
    }
}

/* Case study page specific: fix review navigation arrows visibility */
/* Mobile responsiveness for arrows */
@media (max-width: 768px) {
    .voye_cs_reviews .voye_cs_review-nav-prev {
        left: 5px !important;
    }

    .voye_cs_reviews .voye_cs_review-nav-next {
        right: 5px !important;
    }

    .voye_cs_modal-overlay {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 10000;
    }
}
