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

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

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

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

/* Typography */
.voye_pws_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_pws_highlight-contact {
    color: #d99a28;
    font-weight: 700;
}

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

.voye_pws_hero-banner {
    height: 100vh; /* taller than viewport */
    max-height: none; /* remove height cap */
    min-height: 700px; /* ensures height on large screens */
}

.voye_pws_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_pws_hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.voye_pws_hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px !important;
    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_pws_hero-title .voye_pws_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_pws_hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 40px !important;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.voye_pws_cta-button {
    background: var(--voye-pws-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_pws_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_pws_cta-button:hover::before {
        left: 100%;
    }

    .voye_pws_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-pws-midnight-blue-light);
    }

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

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

/* Banner border and partner CTA padding adjustments */
.voye_pws_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_pws_hero-banner .voye_pws_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_pws_hero-banner .voye_pws_cta-button.partner {
            padding: 24px 52px;
            border: 2px solid var(--voye-pws-golden);
        }

/* Section Header */
.voye_pws_section-header {
    text-align: center;
    margin-bottom: 40px;
    /*max-width: 720px;*/ /* forces clean 2-line wrap */
    margin: 0 auto 32px auto !important;
    line-height: 1.3;
    /* reduced gap between header and content */
}

    .voye_pws_section-header h2 {
        /*                        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px !important;
        color: var(--voye-pws-text-dark);*/
        font-family: 'Poppins', sans-serif !important;
        font-size: 2.2rem !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        margin: 0 0 15px 0 !important;
        white-space: normal !important;
        word-break: normal !important;
        color: #333333 !important;
    }

    .voye_pws_section-header p {
        font-size: 1.2rem;
        color: var(--voye-pws-text-light);
        max-width: 600px;
        margin: 0 auto !important;
        font-family: 'Poppins', sans-serif !important;
        /*        font-size: 1.05rem;
        line-height: 1.6 !important;
        max-width: 560px;
        margin: 0 auto !important;*/
    }

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

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

.voye_pws_achievement-card {
    background: var(--voye-pws-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_pws_card-purple {
    border-color: rgba(2, 0, 53, 0.3);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

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

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

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

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

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

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

.voye_pws_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;
    margin-bottom: 40px;
}

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

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

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

.voye_pws_achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--voye-pws-text-dark);
    margin-bottom: 40px;
}

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

.voye_pws_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_pws_services {
    padding: 120px 0;
    background: var(--voye-pws-white);
}

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

.voye_pws_service-card {
    background: var(--voye-pws-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_pws_neon-card-1 {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

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

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

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

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

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

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

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

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

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

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

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

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

.voye_pws_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_pws_neon-card-1 .voye_pws_service-icon {
    background: linear-gradient(45deg, var(--voye-pws-midnight-blue), var(--voye-pws-midnight-blue-light));
    box-shadow: 0 0 20px rgba(2, 0, 53, 0.4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.voye_pws_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_pws_brand-card {
    background: var(--voye-pws-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_pws_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-pws-midnight-blue);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 255, 1) 100%);
    }

    .voye_pws_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_pws_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_pws_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_pws_brand-card:hover .voye_pws_brand-glow {
    opacity: 1;
}

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

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

.voye_pws_platform-card {
    background: var(--voye-pws-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_pws_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-pws-midnight-blue);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 255, 1) 100%);
    }

    .voye_pws_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_pws_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_pws_platform-name {
    font-weight: 600;
    color: var(--voye-pws-text-dark);
    font-size: 1rem;
}

.voye_pws_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_pws_platform-card:hover .voye_pws_platform-shine {
    top: -150%;
    left: -150%;
    opacity: 1;
    animation: shine 1s ease-in-out;
}

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

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

.voye_pws_success-story-card {
    background: var(--voye-pws-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_pws_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_pws_story-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.voye_pws_story-content {
    padding: 30px;
}

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

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

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

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

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

/* FAQ Section */

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

.voye_pws_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_pws_testimonials-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

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

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

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

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

.voye_pws_testimonial-card:hover .voye_pws_property-image img {
    transform: scale(1.05);
}

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

    .voye_pws_testimonial-content p {
        color: var(--voye-pws-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_pws_testimonial-content p::before {
            content: '"';
            font-size: 5rem;
            color: var(--voye-pws-golden);
            position: absolute;
            top: -30px;
            left: -20px;
            font-family: serif;
            opacity: 0.3;
            line-height: 1;
        }

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

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

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

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

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

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

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

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

    .voye_pws_indicator:hover {
        background: var(--voye-pws-golden);
    }

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

.voye_pws_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_pws_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_pws_testimonial-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

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

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

.voye_pws_testimonial-text {
    width: 66.67%;
    padding: 50px;
    background: var(--voye-pws-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_pws_testimonial-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--voye-pws-text-dark);
        margin-bottom: 30px;
        font-style: italic;
        position: relative;
    }

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

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

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

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

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

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

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

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

        .voye_pws_slider-indicators .voye_pws_indicator.active {
            background: var(--voye-pws-midnight-blue);
            transform: scale(1.2);
        }

        .voye_pws_slider-indicators .voye_pws_indicator:hover {
            background: var(--voye-pws-golden);
        }

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

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

.voye_pws_faq-item {
    background: var(--voye-pws-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_pws_faq-item:hover {
        border-color: var(--voye-pws-midnight-blue);
        box-shadow: 0 15px 40px rgba(2, 0, 53, 0.15);
        transform: translateY(-5px);
    }

.voye_pws_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_pws_faq-question:hover {
        background: linear-gradient(45deg, rgba(2, 0, 53, 0.05), rgba(217, 154, 40, 0.02));
    }

    .voye_pws_faq-question h3 {
        font-family: 'Poppins', sans-serif !important;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--voye-pws-text-dark);
        margin: 0;
        flex: 1;
    }

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

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

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

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

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

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

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

.voye_pws_award-card {
    background: var(--voye-pws-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_pws_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_pws_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_pws_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_pws_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_pws_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_pws_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_pws_award-card:hover {
        transform: translateY(-15px) scale(1.02);
    }

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

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

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

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

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

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

.voye_pws_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_pws_award-card:nth-child(1) .voye_pws_award-icon {
    background: linear-gradient(45deg, var(--voye-pws-golden), var(--voye-pws-golden-light));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

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

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

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

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

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

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

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

.voye_pws_award-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--voye-pws-midnight-blue), var(--voye-pws-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_pws_contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--voye-pws-midnight-blue) 0%, var(--voye-pws-midnight-blue) 70%, var(--voye-pws-golden) 100%);
    color: white;
}

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

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

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

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

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

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

.voye_pws_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_pws_form-group {
    margin-bottom: 25px;
}

    .voye_pws_form-group input,
    .voye_pws_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_pws_form-group input::placeholder,
        .voye_pws_form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

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

.voye_pws_submit-btn {
    width: 100%;
    background: var(--voye-pws-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_pws_submit-btn:hover {
        background: var(--voye-pws-midnight-blue-light);
        transform: translateY(-3px);
        box-shadow: 0 0 50px rgba(2, 0, 53, 0.6);
    }

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

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

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

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

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

.voye_pws_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_pws_address-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

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

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

/* Modal Styles */
.voye_pws_modal-overlay {
    position: fixed;
    top: 0;
    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_pws_modal-overlay.active {
        display: flex;
    }

.voye_pws_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_pws_modal-overlay.active .voye_pws_modal-content {
    transform: scale(1);
}

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

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

.voye_pws_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_pws_modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* Service Modal Styles - Vibrant Design */
.voye_pws_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_pws_service-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.voye_pws_service-modal-content {
    background: var(--voye-pws-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_pws_service-modal-overlay.active .voye_pws_service-modal-content {
    transform: scale(1);
}

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

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

.voye_pws_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_pws_service-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

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

    .voye_pws_modal-form .voye_pws_form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .voye_pws_modal-form input,
    .voye_pws_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-pws-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_pws_modal-form input::placeholder,
        .voye_pws_modal-form textarea::placeholder {
            color: var(--voye-pws-midnight-blue-light);
            font-weight: 400;
        }

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

    /* Modal Form Country Code Dropdown - Match modal input styling */
    .voye_pws_modal-form .voye_pws_country-code-select {
        background-color: rgba(57, 82, 223, 0.15) !important;
        border: 1px solid rgba(7, 44, 206, 0.2);
        border-radius: 6px;
        padding: 12px 28px 12px 15px;
        color: var(--voye-pws-midnight-blue-light) !important;
        font-size: 0.95rem;
        font-weight: 500;
        min-width: 105px;
        max-width: 115px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23020035' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 10px center !important;
        background-size: 12px !important;
    }

        .voye_pws_modal-form .voye_pws_country-code-select:hover {
            border-color: rgba(7, 44, 206, 0.4);
            background-color: rgba(57, 82, 223, 0.2) !important;
        }

        .voye_pws_modal-form .voye_pws_country-code-select:focus {
            outline: none;
            background-color: rgba(57, 82, 223, 0.25) !important;
            border-color: var(--voye-pws-golden);
            box-shadow: none;
        }

        /* Ensure modal country code select stays consistent after selection */
        .voye_pws_modal-form .voye_pws_country-code-select:valid,
        .voye_pws_modal-form .voye_pws_country-code-select:active,
        .voye_pws_modal-form .voye_pws_country-code-select:not(:placeholder-shown) {
            background-color: rgba(57, 82, 223, 0.15) !important;
            color: var(--voye-pws-midnight-blue-light) !important;
        }

        .voye_pws_modal-form .voye_pws_country-code-select option {
            background: white !important;
            color: var(--voye-pws-midnight-blue-light) !important;
        }

    /* Modal Form Send OTP Link - Dark text for visibility on light background */
    .voye_pws_modal-content .voye_pws_send-otp-link,
    .voye_pws_modal-form .voye_pws_send-otp-link {
        color: var(--voye-pws-midnight-blue-light) !important;
    }

        .voye_pws_modal-content .voye_pws_send-otp-link:hover,
        .voye_pws_modal-form .voye_pws_send-otp-link:hover {
            color: var(--voye-pws-midnight-blue) !important;
        }

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

.voye_pws_modal-submit-btn {
    background: var(--voye-pws-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_pws_faq-answer {
        transition: max-height 0.35s ease;
    }

    .voye_pws_faq-item.active .voye_pws_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_pws_faq-answer p {
        padding: 0 16px 14px;
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .voye_pws_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_pws_hero-banner {
        height: auto;
        padding: 60px 0;
        background-position: center top;
    }

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

    .voye_pws_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_pws_hero-title .voye_pws_highlight {
            display: inline-block;
            white-space: nowrap;
        }

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

    .voye_pws_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_pws_success-story-card .voye_pws_story-image {
            height: 180px;
        }

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

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

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

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

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

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

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

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

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

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

.voye_pws_service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--voye-pws-midnight-blue), var(--voye-pws-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_pws_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_pws_hero-banner {
        height: 80vh;
        min-height: 500px;
        max-height: 650px;
    }

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

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

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

    .voye_pws_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_pws_hero-banner {
        height: 75vh;
        min-height: 520px;
        max-height: 600px;
    }

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

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

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

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

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

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

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

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

/* General tablet fixes for common issues */
@media (min-width: 769px) and (max-width: 1024px) {
    .voye_pws_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_pws_hero-banner {
/*        height: clamp(500px, 75vh, 700px);*/
        min-height: 500px;
        max-height: 700px;
    }

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

/* Tablet styles */
@media (max-width: 1024px) {
    .voye_pws_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_pws_hero-banner) {
    padding-top: calc(var(--voye-pws-section-vertical));
    padding-bottom: calc(var(--voye-pws-section-vertical));
}

/* Reduce default grid top margins used throughout the site */
.voye_pws_achievements-grid,
.voye_pws_services-grid,
.voye_pws_brands-grid,
.voye_pws_platforms-grid,
.voye_pws_awards-grid,
.voye_pws_success-stories-grid {
    margin-top: 30px;
    /* tighter than original 60px */
}

.voye_pws_testimonials-carousel,
.voye_pws_testimonials-carousel-container,
.voye_pws_review-container {
    margin-top: 30px;
}

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

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

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

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

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

    .voye_pws_services-grid,
    .voye_pws_platforms-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Remove decorative glow/shine circles entirely (user removed icons/logos) */
.voye_pws_brand-glow,
.voye_pws_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_pws_nav-arrow,
body.modal-open .voye_pws_nav-arrow-left,
body.modal-open .voye_pws_nav-arrow-right,
body.modal-open .voye_pws_property-nav-arrow,
body.modal-open .voye_pws_property-nav-prev,
body.modal-open .voye_pws_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_pws_case-studies .voye_pws_transformation-stats .voye_pws_stat-item,
.voye_pws_case-studies .voye_pws_transformation-stats .voye_pws_stat-item .voye_pws_stat-details,
.voye_pws_case-studies .voye_pws_transformation-stats .voye_pws_stat-item .voye_pws_stat-row,
.voye_pws_case-studies .voye_pws_transformation-stats .voye_pws_stat-item .voye_pws_stat-label,
.voye_pws_case-studies .voye_pws_transformation-stats .voye_pws_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_pws_case-studies .voye_pws_transformation-stats .voye_pws_stat-item .voye_pws_stat-details,
    .voye_pws_case-studies .voye_pws_transformation-stats .voye_pws_stat-item .voye_pws_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_pws_case-studies .voye_pws_transformation-stats .voye_pws_stat-item .voye_pws_stat-details,
    .voye_pws_case-studies .voye_pws_transformation-stats .voye_pws_stat-item .voye_pws_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_pws_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_pws_career-btn:hover {
        background: linear-gradient(135deg, #041257, #020035);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 0, 53, 0.4);
    }

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

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

/* Career CTA Section */
.voye_pws_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_pws_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_pws_career-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #020035;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

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

    .voye_pws_career-cta .voye_pws_container {
        position: relative;
        z-index: 1;
    }

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

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

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

    .voye_pws_career-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Testimonials Section Styles */
.voye_pws_testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

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

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

.voye_pws_testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.voye_pws_testimonial-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.voye_pws_testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.voye_pws_testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0;
    margin: 0 auto;
    max-width: 1050px;
    min-height: 300px;
    transition: all 0.3s ease;
    border: 4px solid rgba(217, 154, 40, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

    .voye_pws_testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border: 4px solid #d99a28;
    }

.voye_pws_testimonial-image-wrapper {
    width: 350px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    flex-shrink: 0;
    margin: 20px;
}

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

.voye_pws_testimonial-card:hover .voye_pws_testimonial-image {
    transform: scale(1.02);
}

.voye_pws_testimonial-content {
    flex: 1;
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voye_pws_testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding: 0;
}

    .voye_pws_testimonial-quote::before {
        content: '"';
        font-size: 2.5rem;
        color: rgba(217, 154, 40, 0.3);
        position: absolute;
        top: -10px;
        left: -15px;
        font-family: serif;
        line-height: 1;
    }

.voye_pws_testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.voye_pws_author-profile {
    flex-shrink: 0;
    position: relative;
}

.voye_pws_author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #020035;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 0, 53, 0.2);
}

    .voye_pws_author-photo:hover {
        border-color: #d99a28;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(217, 154, 40, 0.4);
    }

.voye_pws_author-profile::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d99a28, #020035, #d99a28);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voye_pws_author-profile:hover::after {
    opacity: 1;
}

.voye_pws_author-details {
    flex: 1;
}

.voye_pws_testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
}

.voye_pws_testimonial-property {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 400;
}

.voye_pws_testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 12px;
}

    .voye_pws_testimonial-rating i {
        font-size: 0.9rem;
    }

    .voye_pws_testimonial-rating .voye_pws_fas {
        color: #ffd700;
    }

    .voye_pws_testimonial-rating .voye_pws_far {
        color: #ddd;
    }

    .voye_pws_testimonial-rating .voye_pws_fa-star-half-alt {
        color: #ffd700;
    }

/* Navigation Arrows */
.voye_pws_testimonial-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #020035;
    border: 1px solid rgba(2, 0, 53, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(2, 0, 53, 0.2);
}

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

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

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

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

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

.voye_pws_testimonial-nav:hover i {
    color: white;
}

/* Dots Indicator */
.voye_pws_testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

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

    .voye_pws_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_pws_testimonial-dot:hover {
        background: #d99a28;
        transform: scale(1.1);
    }

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

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

.voye_pws_reviews .voye_pws_section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

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

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

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

.voye_pws_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_pws_review-image-wrapper {
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

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

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

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

.voye_pws_guest-details {
    flex: 1;
}

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

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

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

    .voye_pws_review-rating .fas,
    .voye_pws_review-rating .far,
    .voye_pws_review-rating i,
    .voye_pws_review-rating i.fa-star {
        color: #FFD700 !important;
        font-size: 0.9em;
    }

/* Review Navigation */
.voye_pws_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_pws_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_pws_review-nav-prev {
    left: 10px;
}

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

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

.voye_pws_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_pws_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_pws_review-dot:hover {
        background: #d99a28;
        transform: scale(1.1);
    }

/* Clamp review quotes to 5 lines */
.voye_pws_review-quote {
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    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_pws_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;
    }

/* Mobile Responsive */
@media (max-width: 768px) {

    /* Reduce all section header font sizes for mobile to match Case Study page */
    .voye_pws_section-header h2,
    .voye_pws_reviews .voye_pws_section-header h2,
    .voye_pws_testimonials .voye_pws_section-header h2 {
        font-size: 1.8rem !important;
    }

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

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

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


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

    .voye_pws_testimonials {
        padding: 60px 0;
    }

    .voye_pws_testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
        min-height: auto;
    }

    .voye_pws_testimonial-image-wrapper {
        width: 250px;
        height: 200px;
        margin: 0 auto;
    }

    .voye_pws_testimonial-content {
        padding: 20px 0 0 0;
    }

    .voye_pws_testimonial-quote {
        font-size: 0.95rem;
    }

    .voye_pws_testimonial-nav {
        display: flex;
    }

    .voye_pws_testimonial-dots {
        margin-top: 30px;
    }
}

/* Service Card Hover Details */
.voye_pws_service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.voye_pws_service-details {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 25px 25px 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.voye_pws_service-card:hover .voye_pws_service-details {
    opacity: 1;
    transform: translateY(0);
}

.voye_pws_service-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 20;
}

.voye_pws_service-details p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.voye_pws_service-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    flex: 1;
}

.voye_pws_service-details li {
    font-size: 0.8rem;
    color: #5a5a5a;
    padding: 3px 0;
    position: relative;
    padding-left: 18px;
}

    .voye_pws_service-details li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #d99a28;
        font-weight: bold;
    }

/* Enhance card visibility on hover */
.voye_pws_service-card:hover .voye_pws_service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(217, 154, 40, 0.5);
}

.voye_pws_service-card:hover h3 {
    color: #020035;
    font-weight: 700;
}

/* Read More Button Styles */
.voye_pws_read-more-btn {
    background: linear-gradient(45deg, #020035, #d99a28);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(2, 0, 53, 0.2);
    flex-shrink: 0;
}

    .voye_pws_read-more-btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(217, 154, 40, 0.4);
        background: linear-gradient(45deg, #d99a28, #020035);
    }

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

    .voye_pws_read-more-btn:hover i {
        transform: translateX(3px);
    }

/* Mobile: normalize icon sizes between Listing and "Property Management Across Channels" */
@media (max-width: 768px) {

    /* Platform logos (OTA grid) */
    .voye_pws_platform-card img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    /* Service icons (font-awesome inside service cards) and larger service modal icon */
    .voye_pws_service-icon,
    .voye_pws_service-icon i,
    .voye_pws_service-icon-large,
    .voye_pws_service-icon-large i,
    .voye_pws_service-modal-icon i,
    .voye_pws_achievement-icon i,
    .voye_pws_feature-item i {
        width: 48px;
        height: 48px;
        font-size: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Avoid shrinking guest/profile and brand images unintentionally */
    .voye_pws_guest-photo,
    .voye_pws_brand-card img {
        width: auto;
        height: auto;
    }
}

/* Platform/Listing grid: force layout that produces 4 cards, 4 cards, then 3 cards (for 11 items).
   We use auto-fit with a min width that causes at most 4 columns at large widths and center the grid so
   the final row (3 items) appears centered. Cards are slightly larger and logos get a smooth hover transition. */
.voye_pws_platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    align-items: center;
    justify-content: center;
    /* center rows so last row centers */
    max-width: 880px;
    /* caps the grid width so auto-fit won't create 5+ columns */
    margin: 0 auto;
    padding: 10px 0;
}

/* Larger card styling and logo transitions */
.voye_pws_platform-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-radius: 14px;
    background: #ffffff;
    min-height: 120px;
    box-sizing: border-box;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

    .voye_pws_platform-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 36px rgba(2, 0, 53, 0.08);
    }

    .voye_pws_platform-card img {
        max-width: 70%;
        max-height: 70%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        transition: transform 0.35s ease, filter 0.35s ease;
        will-change: transform;
    }

    .voye_pws_platform-card:hover img {
        transform: scale(1.06);
        filter: saturate(1.05);
    }

    /* Target specific platform cards to make their logos larger */
    .voye_pws_platform-card.voye_pws_platform-agoda img,
    .voye_pws_platform-card.voye_pws_platform-goibibo img,
    .voye_pws_platform-card.voye_pws_platform-cleartrip img,
    .voye_pws_platform-card.voye_pws_platform-yatra img,
    .voye_pws_platform-card.voye_pws_platform-easemytrip img {
        max-width: 88%;
        max-height: 88%;
    }

/* platform cards HTML lives in the body (below). */

/* Responsive sizing tweaks */
@media (max-width: 1024px) {
    .voye_pws_platform-card {
        min-height: 72px;
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .voye_pws_platform-card {
        min-height: 56px;
        padding: 10px;
    }

        .voye_pws_platform-card img {
            max-height: 48px;
        }

    .voye_pws_brand-card img {
        max-height: 56px;
    }
}


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

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

    .voye_pws_review-carousel {
        /* allow some breathing room between slides */
        padding: 10px 0;
    }

    .voye_pws_review-slide {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .voye_pws_review-card {
        padding: 20px;
        margin: 0;
        height: auto;
        /* let content define height */
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

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

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

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

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

    .voye_pws_review-nav {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

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

/* Touch devices: ensure service card details are visible and scrollable (hover doesn't exist) */
@media (hover: none) and (max-width: 768px) {
    .voye_pws_service-details {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: none;
        padding: 14px 18px;
        opacity: 1;
        transform: none;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        z-index: 1;
        overflow-y: auto;
        max-height: 240px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    /* Disable hover transforms on touch devices so layout doesn't shift unexpectedly */
    .voye_pws_service-card {
        transform: none !important;
    }

        .voye_pws_service-card:hover .voye_pws_service-details {
            opacity: 1;
            transform: none;
        }

        .voye_pws_service-card h3 {
            margin-bottom: 8px;
        }

    .voye_pws_service-details p {
        margin-bottom: 8px;
        padding-right: 6px;
    }

    .voye_pws_read-more-btn {
        margin-top: 8px;
    }
}

/* Page override: aggressively reduce the vertical gap between "Listing and Property Management" and "What Property Owners Say" */
/* Uses !important to override other theme rules and tightens header margins as well. */
.voye_pws_platform-management {
    padding-top: 48px !important;
    /* reduced from large global value */
    padding-bottom: 12px !important;
    /* minimize bottom space so reviews sit closer */
    margin-bottom: 0 !important;
}

    .voye_pws_platform-management .voye_pws_section-header {
        margin-bottom: 12px !important;
        /* reduce header gap inside the section */
    }

.voye_pws_platforms-grid {
    margin-bottom: 8px !important;
    /* tighten grid-to-section bottom spacing */
    padding-bottom: 6px !important;
}

/* Pull the following reviews section up */
.voye_pws_reviews {
    padding-top: 12px !important;
    /* minimal top padding */
    padding-bottom: 48px !important;
    /* keep a comfortable bottom gap */
    margin-top: 0 !important;
}


    .voye_pws_reviews .voye_pws_section-header {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }

/* Adjacent sections: ensure no extra gap remains between them */
section.platform-management + section.voye_pws_reviews {
    margin-top: 0 !important;
    padding-top: 12px !important;
}

/* Mobile adjustments to keep sections compact on small screens */
@media (max-width: 768px) {
    .voye_pws_platform-management {
        padding: 24px 0 !important;
    }

    .voye_pws_platforms-grid {
        margin-bottom: 6px !important;
    }

    .voye_pws_reviews {
        padding: 18px 0 !important;
    }

        .voye_pws_platform-management .voye_pws_section-header,
        .voye_pws_reviews .voye_pws_section-header {
            margin-bottom: 8px !important;
        }
}

/* Page-specific hero/banner overrides to make the banner image responsive */
.voye_pws_hero-banner {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 420px;
    max-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

    .voye_pws_hero-banner .voye_pws_hero-image img,
    .voye_pws_hero-image img {
        width: 100%;
        height: auto;
        max-height: 520px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

/* Center hero text and CTA when space allows; on smaller screens keep stacked and centered */
.voye_pws_hero-content {
    text-align: center;
}

    .voye_pws_hero-content .voye_pws_container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

/* CTA: ensure label is visible and not clipped. We remove overflow clipping and provide
   a reasonable min-width per breakpoint so the full label displays. Keep nowrap so label
   stays on one line, and let the button naturally size (width:auto). */
.voye_pws_cta-button {
    white-space: nowrap;
    overflow: visible;
    /* avoid clipping text */
    text-overflow: clip;
    max-width: none;
    /* let button size to its content */
    min-width: 160px;
    /* enough room for "List Your Home" on desktop */
    padding: 12px 26px;
    font-size: 1rem;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

/* Ensure inner span doesn't wrap separately from the icon */
.cta-button > span {
    display: inline-block;
}

.voye_pws_cta-button i {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .voye_pws_hero-banner {
        min-height: 360px;
        max-height: 560px;
        padding: 36px 0;
    }

        .voye_pws_hero-banner .voye_pws_hero-image img {
            max-height: 420px;
        }

    .voye_pws_cta-button {
        min-width: 140px;
        padding: 12px 22px;
        font-size: 0.98rem;
    }
}

@media (max-width: 768px) {
    .voye_pws_hero-banner {
        min-height: auto;
        max-height: none;
        padding: 28px 12px;
    }

    .voye_pws_hero-content .voye_pws_container {
        display: block;
        padding: 0 12px;
    }

    .voye_pws_hero-title {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .voye_pws_hero-subtitle {
        font-size: 0.8rem;
    }

    .voye_pws_hero-banner .voye_pws_hero-image img {
        max-height: 240px;
        border-radius: 12px;
    }

    .voye_pws_cta-button {
        min-width: 130px;
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .voye_pws_hero-title {
        font-size: 1.4rem;
    }

    .voye_pws_hero-subtitle {
        font-size: 0.8rem;
    }

    .voye_pws_hero-banner .voye_pws_hero-image img {
        max-height: 160px;
    }

    .voye_pws_cta-button {
        min-width: 120px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* Slightly reduce hero spacing to keep things compact */
    .voye_pws_hero-content .voye_pws_container {
        padding: 0 8px;
    }
}

/* Alternative layout: place review arrows just outside the card horizontally (centered vertically).
   Make the carousel wrapper overflow visible so arrows can sit outside without being clipped. */
@media (max-width: 480px) {
    .voye_pws_review-carousel-wrapper {
        overflow: visible !important;
        /* allow arrows to be visible outside the rounded card */
    }

    /* Smaller arrow size on mobile while preserving look on larger screens */
    .voye_pws_review-nav {
        position: absolute !important;
        top: 25% !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_pws_review-nav i {
            font-size: 14px !important;
        }

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

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

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

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

/* Replace the hard white edge masks with soft gradient fades to remove the visible line.
   Also force consistent card sizing on small screens. */
@media (max-width: 480px) {
    .voye_pws_review-carousel-wrapper {
        position: relative;
        /* ensure pseudo elements position correctly */
        overflow: hidden !important;
        /* hide adjacent slide peek without masks */
    }

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

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

    /* Fix image wrapper height to make all cards consistent */
    .voye_pws_review-image-wrapper {
        height: 160px !important;
        flex-shrink: 0 !important;
    }

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

    /* Position arrows inside the wrapper (no gradient/masks needed) */
    .voye_pws_review-nav-prev {
        left: 8px !important;
    }

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

/* Partner with us page specific: increase FAQ question text size on mobile */
@media (max-width: 768px) {
    .voye_pws_faq-question h3 {
        font-size: 1.1rem !important;
        line-height: 1.5;
    }

    .voye_pws_faq-answer p {
        font-size: 0.8rem !important;
    }
}

/* Partner with us page specific: reduce section spacing for tighter layout */
/* Desktop: reduce from 120px to 60px */
.voye_pws_achievements,
.voye_pws_services,
.voye_pws_brand-partnerships,
.voye_pws_platform-management,
.voye_pws_reviews,
.voye_pws_faq,
.voye_pws_awards,
.voye_pws_contact {
    padding: 60px 0 !important;
}

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

    .voye_pws_achievements,
    .voye_pws_services,
    .voye_pws_brand-partnerships,
    .voye_pws_platform-management,
    .voye_pws_reviews,
    .voye_pws_faq,
    .voye_pws_awards,
    .voye_pws_contact {
        padding: 40px 0 !important;
    }
}

/* Extra small mobile: even more compact */
@media (max-width: 480px) {

    .voye_pws_achievements,
    .voye_pws_services,
    .voye_pws_brand-partnerships,
    .voye_pws_platform-management,
    .voye_pws_reviews,
    .voye_pws_faq,
    .voye_pws_awards,
    .voye_pws_contact {
        padding: 30px 0 !important;
    }
}

/* Truncate review quote to maximum 5 lines and show ellipsis */
.voye_pws_review-quote {
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    max-height: calc(1.6em * 5);
}

/* Ensure consistent truncation on very small screens */
@media (max-width: 420px) {
    .voye_pws_review-quote {
        line-clamp: 5;
        -webkit-line-clamp: 5;
    }
}

/* ========================================
   OTP Verification Styles
   ======================================== */

/* Phone OTP Group Container */
.voye_pws_phone-otp-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Country Code Select Dropdown */
.voye_pws_country-code-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 18px 32px 18px 18px;
    font-size: 1rem;
    font-weight: 500;
    color: white !important;
    cursor: pointer;
    min-width: 115px;
    max-width: 125px;
    flex-shrink: 0;
    margin-right: 10px;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 12px !important;
}

    .voye_pws_country-code-select:hover {
        border-color: rgba(255, 255, 255, 0.7);
        background-color: rgba(255, 255, 255, 0.15) !important;
    }

    .voye_pws_country-code-select:focus {
        outline: none;
        border-color: var(--voye-pws-white);
        background-color: rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    /* Ensure consistent styling after selection */
    .voye_pws_country-code-select:valid,
    .voye_pws_country-code-select:active,
    .voye_pws_country-code-select:not(:placeholder-shown) {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
    }

    .voye_pws_country-code-select option {
        background: var(--voye-pws-midnight-blue-light) !important;
        color: white !important;
        padding: 10px;
        font-size: 1rem;
    }

/* Phone Input Wrapper with Send OTP Link */
.voye_pws_phone-input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100%;
}

    .voye_pws_phone-input-wrapper input[type="tel"] {
        flex: 1 !important;
        padding-right: 90px !important;
    }

/* Send OTP Link - White text inside the field to match form design */
.voye_pws_send-otp-link {
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    z-index: 10 !important;
    text-transform: uppercase;
    background: transparent;
}

    .voye_pws_send-otp-link:hover {
        color: white !important;
        text-decoration: underline;
    }

    .voye_pws_send-otp-link.disabled {
        color: rgba(255, 255, 255, 0.4) !important;
        cursor: not-allowed !important;
        pointer-events: none;
    }

/* Verified Phone Input - Maintain consistent styling with other fields */
.voye_pws_phone-verified-input {
    opacity: 0.85;
    cursor: default !important;
}

/* Modal form verified phone input */
.voye_pws_modal-form .voye_pws_phone-verified-input {
    opacity: 0.85;
    cursor: default !important;
}

/* Phone Verified Badge */
.voye_pws_phone-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #020035;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

    .voye_pws_phone-verified i {
        color: #020035;
        font-size: 1rem;
    }

/* OTP Modal Popup */
.voye_pws_otp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.voye_pws_otp-modal {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

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

.voye_pws_otp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .voye_pws_otp-modal-header h3 {
        margin: 0;
        color: #020035;
        font-size: 1.4rem;
    }

.voye_pws_otp-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

    .voye_pws_otp-modal-close:hover {
        color: #e74c3c;
    }

.voye_pws_otp-modal-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Resend OTP Link */
.voye_pws_resend-otp-link {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 15px;
    display: block;
}

    .voye_pws_resend-otp-link:hover:not(:disabled) {
        text-decoration: underline;
    }

    .voye_pws_resend-otp-link:disabled {
        color: #999;
        cursor: not-allowed;
    }

/* OTP Container */
.voye_pws_otp-container {
    background: rgba(2, 0, 53, 0.03);
    border: 1px solid rgba(2, 0, 53, 0.1);
    border-radius: 12px;
    padding: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* OTP Inputs Container */
.voye_pws_otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

/* Individual OTP Input */
.voye_pws_otp-input {
    width: 50px;
    height: 55px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid rgba(2, 0, 53, 0.2);
    border-radius: 10px;
    background: white;
    color: #020035;
    transition: all 0.3s ease;
    caret-color: #d99a28;
}

    .voye_pws_otp-input:focus {
        outline: none;
        border-color: #d99a28;
        box-shadow: 0 0 0 3px rgba(217, 154, 40, 0.2);
        transform: scale(1.05);
    }

    .voye_pws_otp-input.error {
        border-color: #e74c3c;
        animation: shake 0.3s ease;
    }

    .voye_pws_otp-input.success {
        border-color: #27ae60;
        background: rgba(39, 174, 96, 0.1);
    }

@keyframes shake {

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

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* OTP Actions Container */
.voye_pws_otp-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 12px;
}

/* Verify OTP Button */
.voye_pws_verify-otp-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

    .voye_pws_verify-otp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    }

/* Resend OTP Button */
.voye_pws_resend-otp-btn {
    background: transparent;
    color: #020035;
    border: 2px solid #020035;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .voye_pws_resend-otp-btn:hover:not(:disabled) {
        background: #020035;
        color: white;
    }

    .voye_pws_resend-otp-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* OTP Timer */
.voye_pws_otp-timer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

    .voye_pws_otp-timer.warning {
        color: #e74c3c;
        font-weight: 600;
    }

/* OTP Message */
.voye_pws_otp-message {
    text-align: center;
    font-size: 0.85rem;
    padding: 8px;
    border-radius: 6px;
    margin-top: 8px;
}

    .voye_pws_otp-message.success {
        color: #27ae60;
        background: rgba(39, 174, 96, 0.1);
    }

    .voye_pws_otp-message.error {
        color: #e74c3c;
        background: rgba(231, 76, 60, 0.1);
    }

    .voye_pws_otp-message.info {
        color: #3498db;
        background: rgba(52, 152, 219, 0.1);
    }

/* Phone Verified Badge */
.voye_pws_phone-verified {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(46, 204, 113, 0.15) 100%);
    border: 2px solid #27ae60;
    border-radius: 10px;
    color: #27ae60;
    font-weight: 600;
    animation: fadeInScale 0.4s ease;
}

    .voye_pws_phone-verified i {
        font-size: 1.2rem;
    }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

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

/* Modal Form Send OTP Link Override - Must be after global styles to take precedence */
.voye_pws_modal-overlay .voye_pws_send-otp-link,
.voye_pws_modal-content .voye_pws_send-otp-link,
.voye_pws_modal-form .voye_pws_send-otp-link {
    color: #041257 !important;
}

    .voye_pws_modal-overlay .voye_pws_send-otp-link:hover,
    .voye_pws_modal-content .voye_pws_send-otp-link:hover,
    .voye_pws_modal-form .voye_pws_send-otp-link:hover {
        color: #020035 !important;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .voye_pws_country-code-select {
        min-width: 100px;
        max-width: 110px;
        padding: 12px 28px 12px 12px;
        font-size: 0.95rem;
        margin-right: 8px;
    }
}

/* Mobile screens: stack send OTP below the phone input as a button matching textfield styling */
@media (max-width: 480px) {
    .voye_pws_country-code-select {
        min-width: 85px;
        max-width: 95px;
        padding: 18px 24px 18px 10px;
        font-size: 0.9rem;
        margin-right: 6px;
    }

    .voye_pws_phone-input-wrapper {
        flex-wrap: wrap !important;
    }

        .voye_pws_phone-input-wrapper input[type="tel"] {
            padding-right: 18px !important;
            flex: 1 1 auto;
            min-width: 0;
        }

    /* Send OTP button - styled to match text field */
    .voye_pws_send-otp-link {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        display: block !important;
        text-align: center;
        margin-top: 12px;
        padding: 14px 24px;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 15px;
        font-size: 0.95rem !important;
        font-weight: 500;
        color: white !important;
        cursor: pointer;
        transition: all 0.3s ease;
        right: auto !important;
        box-sizing: border-box;
    }

        .voye_pws_send-otp-link:hover {
            background: rgba(255, 255, 255, 0.2) !important;
            border-color: rgba(255, 255, 255, 0.5) !important;
            text-decoration: none !important;
        }

    /* Modal form specific - styled to match modal textfields (blue/purple tint) */
    .voye_pws_modal-overlay .voye_pws_send-otp-link,
    .voye_pws_modal-content .voye_pws_send-otp-link,
    .voye_pws_modal-form .voye_pws_send-otp-link {
        background: rgba(57, 82, 223, 0.15) !important;
        border: 1px solid rgba(7, 44, 206, 0.2) !important;
        border-radius: 6px !important;
        color: rgb(4, 18, 87) !important;
    }

        .voye_pws_modal-overlay .voye_pws_send-otp-link:hover,
        .voye_pws_modal-content .voye_pws_send-otp-link:hover,
        .voye_pws_modal-form .voye_pws_send-otp-link:hover {
            background: rgba(57, 82, 223, 0.25) !important;
            border-color: rgba(7, 44, 206, 0.4) !important;
        }
}

@media (max-width: 480px) {
    .voye_pws_send-otp-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .voye_pws_otp-input {
        width: 45px;
        height: 50px;
        font-size: 1.3rem;
    }

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

    .voye_pws_verify-otp-btn,
    .voye_pws_resend-otp-btn {
        width: 100%;
    }
}

/* ========================================
   Mobile Fixes: Profile Picture & Platform Cards
   ======================================== */
/* Fix: Ensure profile picture is visible in testimonial author section on mobile */
@media (max-width: 768px) {
    .voye_pws_review-author {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .voye_pws_guest-profile {
        display: block !important;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex-shrink: 0 !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        border: 2px solid #e9ecef !important;
    }

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

    .voye_pws_guest-details {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .voye_pws_guest-name {
        font-size: 1rem !important;
    }

    .voye_pws_guest-location {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .voye_pws_guest-profile {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
    }

    .voye_pws_guest-name {
        font-size: 0.95rem !important;
    }

    .voye_pws_guest-location {
        font-size: 0.8rem !important;
    }
}
/* Fix: Uniform platform card sizes in the OTA channel section on mobile */
@media (max-width: 768px) {
    .voye_pws_platforms-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .voye_pws_platform-card {
        height: 100px !important;
        min-height: 100px !important;
        max-height: 100px !important;
        padding: 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

        .voye_pws_platform-card img {
            width: 80px !important;
            height: 50px !important;
            max-width: 80px !important;
            max-height: 50px !important;
            object-fit: contain !important;
        }
}


@media (max-width: 480px) {
    .voye_pws_platforms-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .voye_pws_platform-card {
        height: 90px !important;
        min-height: 90px !important;
        max-height: 90px !important;
        padding: 12px !important;
    }

        .voye_pws_platform-card img {
            width: 70px !important;
            height: 45px !important;
            max-width: 70px !important;
            max-height: 45px !important;
            object-fit: contain !important;
        }
}



/* =================================================
   GLOBAL SECTION TITLE & SUBTITLE NORMALIZATION
   Applies to ALL pages & ALL section headers
================================================= */

/* Section header wrapper */
/*.voye_pws_section-header {
    text-align: center !important;
    max-width: 720px;*/ /* forces clean 2-line wrap */
/*margin: 0 auto 32px auto !important;
    padding: 0 16px;
}*/

/* Main section title */
/*.voye_pws_section-header h2 {
        font-size: 2.2rem !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        margin: 0 0 16px 0 !important;
        white-space: normal !important;
        word-break: normal !important;
    }*/

/* Section subtitle */
/*.voye_pws_section-header p {
        font-size: 1.05rem;
        line-height: 1.6 !important;
        max-width: 560px;
        margin: 0 auto !important;
    }*/

/* Tablet */
/*@media (max-width: 768px) {
    .voye_pws_section-header {
        max-width: 92%;
        margin-bottom: 24px !important;
    }

        .voye_pws_section-header h2 {
            font-size: 1.8rem !important;
            line-height: 1.4 !important;
            margin-bottom: 14px !important;
        }

        .voye_pws_section-header p {
            font-size: 0.95rem;
        }
}*/

/* Mobile */
/*@media (max-width: 480px) {
    .voye_pws_section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
    }

    .voye_pws_section-header p {
        font-size: 0.9rem;
    }
}*/
