/* clients.css */

/* Hero Section */
.client-hero {
    padding: 60px 7.5%;
    text-align: left;
}

.client-hero h1 {
    color: #203f50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.client-hero .subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Case Study Section */
.case-study {
    padding: 40px 7.5%;
    margin-bottom: 80px;
}

.case-study-showcase {
    background-color: #0A3C4A;
    /* Deep teal */
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Or visible if we want pop-out */
    color: white;
    gap: 50px;
    background: linear-gradient(135deg, #0f4c5e 0%, #062b36 100%);
}

.app-mockup {
    width: 300px;
    flex-shrink: 0;
    transform: rotate(-5deg);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    /* Attempt to position it nicely */
}

.quote-card {
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-size: 8rem;
    line-height: 0;
    color: rgba(255, 255, 255, 0.2);
    display: block;
    margin-bottom: 30px;
}

.quote-mark.right {
    text-align: right;
    margin-top: 30px;
    margin-bottom: 0;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

.quote-text strong {
    color: #45bcdc;
    /* Light blue highlight */
}

.quote-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

/* App Features Section */
.app-features {
    background-color: #054854;
    /* Darker teal/blue matching design */
    color: white;
    padding: 100px 7.5%;
    position: relative;
    overflow: hidden;
}

/* Angled background effect if needed, or just flat block */
.features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    gap: 50px;
}

.features-text {
    flex: 1;
}

.features-text h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    line-height: 1.3;
}

.features-text strong {
    color: #fff;
    font-weight: 700;
}

.feature-item {
    margin-bottom: 40px;
}

.feature-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 12px;
    backdrop-filter: blur(5px);
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    opacity: 0.9;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.feature-mockup {
    max-width: 100%;
    height: auto;
    /* Phone frame styling */
    border-radius: 30px;
    border: 8px solid #222;
    background: #fff;
}

/* Clients Logos */
.clients-logos {
    padding: 80px 7.5%;
    text-align: center;
}

.clients-logos h3 {
    color: #555;
    margin-bottom: 50px;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.client-logo {
    height: 60px;
    /* Adjust based on actual logos */
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.client-logo.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .case-study-showcase {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .app-mockup {
        width: 100%;
        max-width: 300px;
        transform: rotate(0deg);
    }

    .features-wrapper {
        flex-direction: column;
    }

    .features-text h2 {
        font-size: 1.6rem;
    }

    .quote-mark {
        display: none;
        /* Hide huge marks on mobile to save space */
    }

    .logo-grid {
        gap: 40px;
    }
}