/* 
   Valorpoint - Mockup-specific components
   These styles complement the existing modern-style.css
*/

/* Service showcase with expandable details */
.service-showcase-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-showcase-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-short-desc {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-detailed-desc {
    display: none;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-detailed-desc.show {
    display: block;
}

.service-detailed-desc ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.service-detailed-desc li {
    margin-bottom: 0.5rem;
}

.show-more-btn {
    background: transparent;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.show-more-btn:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Angled section dividers and background patterns */
.section-angle {
    position: relative;
    padding-bottom: 4rem; /* Space for the angle effect */
}

.section-angle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Height of the angle */
    background: inherit;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
}

.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='currentColor' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Credentials Showcase Section */
.credentials-showcase {
    background: var(--light-gray-alt);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.credentials-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(38, 128, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.credential-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.credential-item i {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
}

.credential-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.credential-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Enhanced Partners Section */
.enhanced-partners {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.enhanced-partners::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(38, 128, 235, 0.03) 100%);
    pointer-events: none;
}

.enhanced-partners::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(38, 128, 235, 0) 0%, 
        rgba(38, 128, 235, 0.2) 50%, 
        rgba(38, 128, 235, 0) 100%);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.client-logo {
    background: white;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.08);
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.client-logo i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    opacity: 0.7;
}

/* Stats Section */
.stats-section {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--light-gray-alt);
    padding: 6rem 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232680eb' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.why-choose-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: rgba(38, 128, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--secondary-blue);
}

.why-choose-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-choose-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .service-showcase,
    .why-choose-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mockup-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mockup-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .cyber-visual {
        width: 350px;
        height: 280px;
    }
    
    .service-showcase,
    .why-choose-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
