/* What Is Evisio Styles */

/* CSS Variables */
:root {
    --primary-orange: var(--orange-front);
    --primary-teal: var(--green-front);
}

.what-is {
    color: #4A4A4A;
    line-height: 1.6;
    font-family: var(--font-heading);
}

.what-is .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* Hero Section */
.what-is .hero-section {
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.what-is .hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.what-is .hero-title .teal {
    color: var(--primary-teal);
}

.what-is .hero-title .orange {
    color: var(--primary-orange);
}

.what-is .hero-title .highlight {
    color: var(--green-front);
}

.what-is .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #221F20;
}

.what-is .hero-description {
    font-size: 1.1125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #595757FC;
}

.what-is .hero-emphasis {
    font-size: 1.1125rem;
    font-weight: 500;
    color: #595757FC;
    font-weight: bold;
}

/* Main Dashboard Section */
.what-is .dashboard-container {
    position: relative;
    margin-top: 3rem;
    overflow: visible;
}

.what-is .dashboard-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 2rem;
    overflow: visible;
}

/* Main Dashboard Image */
.what-is .dashboard-main-image {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
}

.what-is .dashboard-bg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2rem;
}

/* Health Rate Overlay (Top Left) */
.what-is .health-rate-overlay {
    position: absolute;
    top: -60px;
    left: -50px;
    z-index: 2;
}

.what-is .health-rate-image {
    width: 216px;
    height: auto;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
}

/* Logo Overlay (Background - Top Right) */
.what-is .logo-overlay {
    position: absolute;
    top: -75px;
    right: -50px;
    z-index: 1;
}

.what-is .logo-image {
    width: 204px;
    height: 192px;
    object-fit: cover;
    border-radius: 50%;
}

/* Floating Icons */
.what-is .floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.what-is .floating-icon.monitor {
    bottom: 50%;
    left: -50px;
    transform: translateY(50%);
}

.what-is .floating-icon.star {
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
}

.what-is .floating-icon.chat {
    bottom: -30px;
    right: -70px;
}

.what-is .icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* CTA Button Section */
.what-is .cta-button-container {
    text-align: center;
    margin-top: 20px;
}

.what-is .cta-button {
    width: 270px;
    margin: auto;
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 270px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.what-is .cta-button:hover {
    background-color: #e65a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.what-is .cta-button:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

.what-is .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .what-is .dashboard-card {
        max-width: 100%;
    }

    .what-is .health-rate-image {
        width: 200px;
        height: auto;
    }

    .what-is .logo-image {
        width: 100px;
        height: 100px;
    }

    .what-is .floating-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .what-is .container {
        padding: 1.5rem;
    }

    .what-is .hero-title {
        font-size: 2.7rem;
    }

    .what-is .hero-subtitle {
        font-size: 1.5rem;
    }

    .what-is .health-rate-overlay {
        top: 10px;
        left: 10px;
    }

    .what-is .health-rate-image {
        width: 100px;
        height: auto;
    }

    .what-is .logo-overlay {
        top: -10px;
        right: -10px;
    }

    .what-is .logo-image {
        width: 80px;
        height: 80px;
    }

    .what-is .floating-icon {
        width: 40px;
        height: 40px;
    }

    .what-is .floating-icon.monitor {
        left: -20px;
    }

    .what-is .floating-icon.star {
        right: -20px;
    }

    .what-is .floating-icon.chat {
        right: -20px;
        bottom: -20px;
    }

    .what-is .cta-button {
        min-width: 240px;
        height: 52px;
        font-size: 1rem;
        padding: 14px 28px;
    }
}

@media (max-width: 575px) {

    .what-is.section-container {
        /* margin-bottom: -300px; */
    }

    .what-is .hero-subtitle {
        font-size: 1.5rem;
    }

    .what-is .health-rate-overlay {
        top: 5px;
        left: 5px;
    }

    .what-is .health-rate-image {
        width: 82px;
        height: auto;
        top: -36px;
        left: -35px;
        position: relative;
    }

    .what-is .dashboard-container {
        margin-top: 0 !important;
    }

    .what-is .logo-overlay {
        top: -5px;
        right: -5px;
    }

    .what-is .logo-image {
        width: 60px;
        height: 60px;
        top: -20px;
        left: 15px;
        position: relative;
    }

    .what-is .floating-icon {
        width: 30px;
        height: 30px;
    }

    .what-is .floating-icon.monitor {
        left: -15px;
    }

    .what-is .floating-icon.star {
        right: -15px;
    }

    .what-is .floating-icon.chat {
        right: -15px;
        bottom: -15px;
    }

    .what-is .cta-button {
        min-width: 200px;
        height: 48px;
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* Accessibility */
.what-is .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states for accessibility */
.what-is .pagination-button:focus,
.what-is .sortable:focus {
    outline: 2px solid var(--green-front);
    outline-offset: 2px;
}

/* Smooth transitions */
.what-is .pagination-button,
.what-is .sortable {
    transition: all 0.2s ease;
}