﻿/* ============================================
   UNIVERSAL RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   REVA INFO PAGE STYLES
   ============================================ */

/* Body & Container */
.reva-info-body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #1a1a2e;
    line-height: 1.7;
    min-height: 100vh;
    padding: 60px 0;
}

.reva-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Modern & Clean */
.reva-hero-section {
    background: linear-gradient(135deg, #d9e3f5, #b0c7ee);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    color: #1a1a2e;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

    .reva-hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
        background-size: 40px 40px;
        animation: drift 30s linear infinite;
        opacity: 0.6;
    }

@keyframes drift {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.reva-hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    color: #1a1a2e;
}

.reva-hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.reva-hero-tagline {
    font-size: 1.15rem;
    font-weight: 500;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* Image Section - Clean Grid */
.reva-images-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.reva-image-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .reva-image-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .reva-image-card img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Content Section - Clean & Professional */
.reva-content-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

/* Section Spacing */
.reva-section {
    margin-bottom: 50px;
}

    .reva-section:last-of-type {
        margin-bottom: 0;
    }

/* Typography - Clean Hierarchy */
.reva-section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 16px;
}

    .reva-section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background: #667eea;
        border-radius: 2px;
    }

.reva-content-section p {
    font-size: 1.06rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 20px;
}

    .reva-content-section p strong {
        color: #1a1a2e;
        font-weight: 600;
    }

.reva-content-section ul,
.reva-content-section ol {
    margin-left: 28px;
    margin-bottom: 24px;
}

.reva-content-section li {
    font-size: 1.06rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 12px;
    padding-left: 8px;
}

/* Highlight Box - Subtle & Modern */
.reva-highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-left: 4px solid #667eea;
    padding: 32px;
    margin: 32px 0;
    border-radius: 12px;
}

    .reva-highlight-box ol {
        margin-left: 20px;
    }

    .reva-highlight-box li {
        margin-bottom: 16px;
    }

    .reva-highlight-box strong {
        color: #667eea;
        font-weight: 600;
    }

/* CTA Section - Horizontal Layout with Image */
.reva-cta-section {
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, #fdf6e3 0%, #fdeee7 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .reva-cta-section:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    }

/* CTA Image - Left Side */
.reva-cta-image {
    flex: 0 0 280px;
    width: 280px;
}

    .reva-cta-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

/* CTA Content - Right Side */
.reva-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .reva-cta-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 16px;
        color: #1a1a2e;
        letter-spacing: -0.5px;
        line-height: 1.3;
    }

    .reva-cta-content p {
        font-size: 1.2rem;
        margin-bottom: 32px;
        line-height: 1.6;
        color: #444;
        opacity: 0.9;
    }

/* Button - Exact Same Design */
.reva-cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #f5576c;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    white-space: nowrap;
    margin-top: 30px;
}

    .reva-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        background: #1a1a2e;
        color: white;
        text-decoration: none;
    }

/* ============================================
   STEPPER COMPONENT
   ============================================ */

.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}

    .step.active {
        opacity: 1;
    }

    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 25px;
        left: calc(50% + 25px);
        width: calc(100% - 50px);
        height: 3px;
        background: var(--border-color);
        z-index: 0;
    }

    .step.active:not(:last-child)::after {
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    }

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.step.active .step-circle {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.step-label {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.step.active .step-label {
    color: var(--text-medium);
}

/* ============================================
   INVESTMENT OPPORTUNITIES PAGE STYLES
   ============================================ */

/* Container Styles */
.investment-opportunities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #e0e0e0;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 400;
}

/* Opportunities List */
.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Opportunity Card */
.opportunity-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e8e8;
}

    .opportunity-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    }

/* Card Number */
.card-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 2px;
}

/* Card Content */
.card-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Card Header Section */
.card-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.valuation-badge {
    display: inline-block;
    float: right;
    /*background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);*/
    background:green;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.valuation-badge-inactive {
    display: inline-block;
    float: right;
    /*background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);*/
    background: red;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}


.company-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

    .company-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/* Card Body Section */
.card-body-section {
    flex: 1;
    margin-bottom: 20px;
}

.company-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.company-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: justify;
}

    .company-description strong {
        color: #2c3e50;
        font-weight: 600;
    }

/* Card Footer Section */
.card-footer-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Proceed Button */
.btn-proceed {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.5px;
}

    .btn-proceed:hover {
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        transform: translateX(5px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        color: #ffffff;
        text-decoration: none;
    }

    .btn-proceed:active {
        transform: translateX(5px) scale(0.98);
    }

.btn-text {
    font-weight: 600;
}

.btn-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn-proceed:hover .btn-icon {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET & DESKTOP
   ============================================ */

@media (max-width: 992px) {
    /* REVA Page Adjustments */
    .reva-cta-section {
        gap: 35px;
        padding: 40px;
    }

    .reva-cta-image {
        flex: 0 0 220px;
        width: 220px;
    }

    .reva-cta-content h2 {
        font-size: 2.2rem;
    }

    .reva-cta-content p {
        font-size: 1.1rem;
    }

    /* Investment Opportunities Adjustments */
    .opportunity-card {
        flex-direction: column;
    }

    .card-number {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        padding: 20px;
        min-width: auto;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .company-name {
        font-size: 1.6rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
    /* REVA Page Mobile */
    .reva-info-body {
        padding: 40px 0;
    }

    .reva-hero-section {
        padding: 40px 30px;
    }

        .reva-hero-section h1 {
            font-size: 2.8rem;
        }

    .reva-hero-subtitle {
        font-size: 1.3rem;
    }

    .reva-hero-tagline {
        font-size: 1rem;
    }

    .reva-images-section {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .reva-content-section {
        padding: 40px 30px;
    }

    .reva-section-title {
        font-size: 1.6rem;
    }

    .reva-cta-section {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
    }

    .reva-cta-image {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .reva-cta-content {
        align-items: center;
    }

        .reva-cta-content h2 {
            font-size: 2rem;
        }

        .reva-cta-content p {
            font-size: 1.05rem;
        }

    .reva-cta-button {
        align-self: center;
        font-size: 1.15rem;
        padding: 16px 40px;
    }

    .reva-highlight-box {
        padding: 24px;
    }

    /* Stepper Mobile */
    .header-section h1 {
        font-size: 1.8rem;
    }

    .stepper {
        padding: 20px 10px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step:not(:last-child)::after {
        top: 20px;
        left: calc(50% + 20px);
        width: calc(100% - 40px);
        height: 2px;
    }

    .step-label {
        font-size: 0.75rem;
        margin-top: 8px;
    }

    .page-card {
        padding: 20px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    /* Investment Opportunities Mobile */
    .investment-opportunities-container {
        padding: 20px 15px;
    }

    .card-header-section {
        flex-direction: column;
        gap: 15px;
    }

    .company-logo {
        margin-left: 0;
        width: 100px;
        height: 50px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .company-name {
        font-size: 1.4rem;
    }

    .company-tagline {
        font-size: 1.1rem;
    }

    .company-description {
        font-size: 0.95rem;
    }

    .btn-proceed {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - EXTRA SMALL DEVICES
   ============================================ */

@media (max-width: 480px) {
    /* REVA Page Extra Small */
    .reva-hero-section h1 {
        font-size: 2.2rem;
    }

    .reva-content-section {
        padding: 30px 20px;
    }

    .reva-cta-section {
        padding: 30px 20px;
    }

    .reva-cta-content h2 {
        font-size: 1.75rem;
    }

    /* Stepper Extra Small */
    .stepper {
        padding: 15px 5px;
    }

    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step:not(:last-child)::after {
        top: 17.5px;
        left: calc(50% + 17.5px);
        width: calc(100% - 35px);
        height: 2px;
    }

    .step-label {
        font-size: 0.7rem;
        margin-top: 6px;
    }

    .page-card {
        padding: 15px;
    }

    /* Investment Opportunities Extra Small */
    .card-content {
        padding: 20px;
    }

    .card-number {
        font-size: 2rem;
        padding: 15px;
    }

    .valuation-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .investment-opportunities-container {
        background: #ffffff;
    }

    .opportunity-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .btn-proceed {
        display: none;
    }
}

.reva-hero-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.reva-hero-image {
    flex: 0 0 400px;
}

    .reva-hero-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

.reva-hero-text {
    flex: 1;
}

/* Content Row Layouts */
.reva-content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

    .reva-content-row.reverse {
        flex-direction: row-reverse;
    }

.reva-content-image {
    flex: 0 0 45%;
}

    .reva-content-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

.reva-content-text {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .reva-hero-with-image {
        flex-direction: column;
    }

    .reva-hero-image {
        flex: 0 0 100%;
    }

    .reva-content-row,
    .reva-content-row.reverse {
        flex-direction: column;
    }

    .reva-content-image {
        flex: 0 0 100%;
    }
}

/* Hero logo image – reduce space usage */
.reva-hero-section img {
    max-width: 200px; /* reduce logo size */
    height: auto;
    margin: 0 auto 10px; /* less bottom gap */
    display: block;
}


.hero-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Left content */
.hero-text {
    flex: 1;
}

/* Right logo */
.hero-logo img {
    max-width: 220px;
    height: auto;
}


@media (max-width: 768px) {
    .hero-inline {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo {
        order: -1; /* bring logo to top */
        margin-bottom: 15px;
    }

        .hero-logo img {
            max-width: 120px; /* keep logo compact */
        }
}

/* ============================================
   INVESTMENT OPPORTUNITIES - UPDATED LAYOUT
   ============================================ */

/* Hide the card number section */
.investment-opportunities-container .card-number {
    display: none;
}

/* Update card layout without the numbered section */
.investment-opportunities-container .opportunity-card {
    display: block;
}

/* Restructure header to have logo on left, content on right */
.investment-opportunities-container .card-header-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    justify-content: flex-start; /* Left align */
}

/* Logo positioned on the left with circular shape */
.investment-opportunities-container .company-logo {
    order: -1; /* Move logo to the left */
    width: 220px;
    height: 220px;
    min-width: 100px; /* Prevent shrinking */
    border-radius: 50%; /* Circular shape */
    overflow: hidden;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 3px solid #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

    .investment-opportunities-container .company-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Fill the circle */
        border-radius: 50%;
    }

/* Company info aligned to the left */
.investment-opportunities-container .company-info {
    flex: 1;
    text-align: left;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .investment-opportunities-container .card-header-section {
        flex-direction: row; /* Keep logo on left even on mobile */
        gap: 15px;
    }

    .investment-opportunities-container .company-logo {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .investment-opportunities-container .company-logo {
        width: 70px;
        height: 70px;
        min-width: 70px;
        border-width: 2px;
    }
}
/* ==========================================
   REVA Select 500 - Professional UI Styles
   ========================================== */

/* Page Container */
.select500-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 60px 0 80px;
}

.select500-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Hero Section
   ========================================== */

.select500-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 60px 70px;
    border-radius: 20px;
    margin-bottom: 70px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.select500-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.select500-hero__text {
    flex: 1;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.select500-hero__text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.select500-hero__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #93c5fd;
    letter-spacing: 0.5px;
}

.select500-hero__tagline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #dbeafe;
    font-weight: 400;
    max-width: 500px;
}

.select500-hero__logo {
    flex-shrink: 0;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

.select500-hero__logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.select500-hero__logo:hover img {
    transform: scale(1.05);
}

/* ==========================================
   Typography
   ========================================== */

.select500-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 70px 0 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3b82f6;
    position: relative;
    letter-spacing: -0.5px;
}

.select500-content h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
}

.select500-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin: 25px 0;
    max-width: 900px;
}

.select500-content > p strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* ==========================================
   Main Page Container
   ========================================== */

.select500-page {
    padding: 40px 0 60px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.select500-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   Introduction Section (Main Heading)
   ========================================== */

.select500-intro {
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2);
}

.select500-intro__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.select500-intro__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.select500-intro__description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

    .select500-intro__description strong {
        color: #ffffff;
        font-weight: 600;
    }

/* ==========================================
   About Section (Redesigned)
   ========================================== */

.select500-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 45px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .select500-about:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-color: #3b82f6;
    }

.select500-about__content {
    flex: 1;
}

.select500-about__header {
    margin-bottom: 25px;
}

    .select500-about__header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 15px;
        letter-spacing: -0.5px;
    }

.select500-about__divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
}

.select500-about__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

    .select500-about__description strong {
        color: #1e3a8a;
        font-weight: 600;
    }

.select500-about__logo {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

    .select500-about__logo img {
        width: 100%;
        max-width: 240px;
        height: auto;
        display: block;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
    }

/* ==========================================
   Cards Container
   ========================================== */

.select500-cards {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

/* ==========================================
   Individual Card
   ========================================== */

.select500-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .select500-card:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }

/* Card Header */
.select500-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 3px solid #3b82f6;
}

.select500-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.select500-card__header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Card Body */
.select500-card__body {
    display: flex;
    gap: 40px;
    padding: 35px;
}

.select500-card__body--reverse {
    flex-direction: row-reverse;
}

.select500-card__image {
    flex: 0 0 40%;
    max-width: 40%;
}

    .select500-card__image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .select500-card__image img:hover {
            transform: scale(1.03);
        }

.select500-card__content {
    flex: 1;
}

    .select500-card__content p {
        font-size: 1.0625rem;
        line-height: 1.8;
        color: #334155;
        margin: 0 0 20px;
    }

        .select500-card__content p:last-child {
            margin-bottom: 0;
        }

    .select500-card__content strong {
        color: #1e3a8a;
        font-weight: 600;
    }

    .select500-card__content ol,
    .select500-card__content ul {
        margin: 15px 0;
        padding-left: 25px;
    }

    .select500-card__content li {
        font-size: 1.0625rem;
        line-height: 1.8;
        color: #334155;
        margin-bottom: 15px;
    }

        .select500-card__content li:last-child {
            margin-bottom: 0;
        }

        .select500-card__content li strong {
            color: #1e3a8a;
            font-weight: 600;
        }

.select500-card__highlight {
    padding: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    margin-top: 20px !important;
}

/* ==========================================
   CTA Section
   ========================================== */

.select500-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 70px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

    .select500-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .select500-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 20px;
        letter-spacing: -0.5px;
        position: relative;
        z-index: 1;
    }

    .select500-cta p {
        font-size: 1.25rem;
        color: #cbd5e1;
        margin: 0 0 40px;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }

.select500-cta__button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

    .select500-cta__button:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
        color: #ffffff;
        text-decoration: none;
    }

    .select500-cta__button:active {
        transform: translateY(-1px);
    }

/* ==========================================
   Responsive Design - Tablets
   ========================================== */

@media (max-width: 992px) {
    .select500-intro {
        padding: 40px 20px;
    }

    .select500-intro__title {
        font-size: 2.75rem;
    }

    .select500-intro__subtitle {
        font-size: 1.25rem;
    }

    .select500-intro__description {
        font-size: 1rem;
    }

    .select500-about {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 35px;
    }

    .select500-about__header h2 {
        font-size: 2rem;
    }

    .select500-about__divider {
        margin: 0 auto;
    }

    .select500-about__description {
        font-size: 1rem;
    }

    .select500-about__logo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
    }

    .select500-card__header {
        padding: 20px 25px;
    }

    .select500-card__number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .select500-card__header h3 {
        font-size: 1.5rem;
    }

    .select500-card__body,
    .select500-card__body--reverse {
        flex-direction: column;
        padding: 30px;
        gap: 25px;
    }

    .select500-card__image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .select500-cta {
        padding: 50px 40px;
    }

        .select500-cta h2 {
            font-size: 2rem;
        }

        .select500-cta p {
            font-size: 1.125rem;
        }
}

/* ==========================================
   Responsive Design - Mobile
   ========================================== */

@media (max-width: 576px) {
    .select500-page {
        padding: 20px 0 40px;
    }

    .select500-intro {
        padding: 30px 15px;
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .select500-intro__title {
        font-size: 2rem;
    }

    .select500-intro__subtitle {
        font-size: 1.125rem;
    }

    .select500-intro__description {
        font-size: 0.9375rem;
    }

    .select500-about {
        padding: 30px 20px;
        margin-bottom: 30px;
        border-radius: 12px;
        gap: 25px;
    }

    .select500-about__header h2 {
        font-size: 1.625rem;
        margin-bottom: 12px;
    }

    .select500-about__divider {
        width: 60px;
        height: 3px;
    }

    .select500-about__description {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .select500-about__logo {
        padding: 15px;
        max-width: 220px;
    }

        .select500-about__logo img {
            max-width: 180px;
        }

    .select500-cards {
        gap: 25px;
    }

    .select500-card {
        border-radius: 12px;
    }

    .select500-card__header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 12px;
    }

    .select500-card__number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .select500-card__header h3 {
        font-size: 1.375rem;
    }

    .select500-card__body,
    .select500-card__body--reverse {
        padding: 20px;
        gap: 20px;
    }

    .select500-card__content p,
    .select500-card__content li {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .select500-card__highlight {
        padding: 15px;
    }

    .select500-cta {
        padding: 40px 20px;
        border-radius: 12px;
    }

        .select500-cta h2 {
            font-size: 1.625rem;
        }

        .select500-cta p {
            font-size: 0.9375rem;
            margin-bottom: 30px;
        }

    .select500-cta__button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    @media (max-width: 576px) {

        .vc-card {
            display: grid;
            grid-template-columns: 24px 36px; /* col1: radio | col2: icon | col3: rest (auto) */
            grid-template-areas:
                "radio icon"
                "content content";
            column-gap: 10px;
            row-gap: 10px;
            align-items: center;
            padding: 14px 12px;
        }

        .vc-radio-dot {
            grid-area: radio;
            margin-top: 0;
            align-self: center;
        }

        .vc-icon-wrap {
            grid-area: icon;
            width: 34px;
            height: 34px;
            font-size: 13px;
            align-self: center;
        }

        .vc-content {
            grid-area: content; /* spans full width — no indent at all */
            margin: 0;
            padding: 0;
            min-width: 0;
        }

        .vc-title {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 4px;
        }

        .vc-desc {
            margin-top: 4px;
        }
    }


    /* ============ MOBILE PERFECT 4 STEP LAYOUT ============ */

    @media (max-width: 768px) {

        .stepper {
            display: flex;
            justify-content: space-between;
            padding: 15px 12px;
            overflow: hidden;
        }

        .step {
            flex: 1;
            min-width: 0;
        }

            .step:not(:last-child)::after {
                left: 55%;
                width: 90%;
                top: 18px;
            }

        .step-circle {
            width: 36px;
            height: 36px;
            font-size: 0.9rem;
        }

        .step-label {
            font-size: 0.75rem;
            white-space: nowrap;
        }
    }

    @media (min-width: 577px) and (max-width: 768px) {
        .step-circle {
            width: 36px;
            height: 36px;
            font-size: 0.9rem;
        }

        .step-label {
            font-size: 0.75rem;
        }

        .cost-table {
            font-size: 13px;
        }
    }

    /* ── MOBILE  ( ≤ 576 px ) ───────────────────────────── */
    @media (max-width: 576px) {

        /* single-column summary grid */
        .summary-grid {
            grid-template-columns: 1fr;
        }
    }

    @keyframes popIn {
        from {
            opacity: 0;
            transform: scale(0.4);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(32px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(32px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @keyframes popIn {
        from {
            opacity: 0;
            transform: scale(0.4);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    @media (max-width: 768px) {

        .info-popup {
            left: 50%;
            right: auto;
            top: auto;
            bottom: calc(100% + 10px);
            transform: translateX(-50%);
            width: 240px;
            max-width: 90vw; /* Mobile safe */
            height: auto;
        }

            .info-popup::before {
                left: 50%;
                right: auto;
                top: 100%;
                bottom: auto;
                transform: translateX(-50%);
                border-width: 6px 6px 0 6px;
                border-color: #1e293b transparent transparent transparent;
            }
    }



}
