/* ==========================================================================
 * Verslolygis About Page Styles
 * ========================================================================== */

/* Hide Default WordPress Titles on this page */
.page-title, .entry-title, .entry-header {
    display: none !important;
}

/* Reset any default padding to allow edge-to-edge design */
.site-content, .type-page, .entry-content, .ast-container, .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.verslolygis-about-wrapper {
    font-family: 'Inter', sans-serif; /* Fallback, should inherit */
    color: #333;
    width: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.v-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------------------
 * Hero Section
 * ------------------------------------- */
.v-about-hero-section {
    width: 100%;
}

/* Red Banner */
.v-about-hero-banner {
    background: linear-gradient(135deg, var(--v-color-primary, #b50e35) 0%, #8a0b28 100%);
    padding: 90px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 10px 30px rgba(181, 14, 53, 0.15);
}

.v-about-hero-banner-title {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 2-Column Split Content Below Banner */
.v-about-hero-content {
    padding: 100px 0;
    background-color: #ffffff;
}

.v-about-hero-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.v-about-hero-left {
    flex: 1;
    min-width: 40%;
}

.v-about-hero-subtitle {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

.v-about-hero-right {
    flex: 1;
    min-width: 45%;
}

.v-about-hero-desc {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.9;
    margin: 0;
}

/* Red Text Utility */
.v-text-red {
    color: var(--v-color-primary, #b50e35);
}

/* -------------------------------------
 * Split Info Section
 * ------------------------------------- */
.v-about-split-section {
    width: 100%;
    background-color: #f8fafc;
}

.v-about-split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.v-about-split-image-col {
    flex: 1;
    min-width: 50%;
}

.v-about-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v-about-split-content-col {
    flex: 1;
    min-width: 50%;
    display: flex;
    align-items: center;
    padding: 80px 5%;
}

.v-about-split-content-inner {
    max-width: 600px;
}

.v-about-split-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.v-about-split-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.v-about-split-btn {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 50px;
}

.v-about-split-stats {
    display: flex;
    gap: 80px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

.v-about-stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #1e3a5f;
    line-height: 1;
    margin-bottom: 10px;
}

.v-about-stat-lbl {
    display: block;
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* -------------------------------------
 * Services Section
 * ------------------------------------- */
.v-about-services-section {
    width: 100%;
    background-color: #f9f9f9;
    padding: 80px 0;
}

.v-about-services-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.v-about-services-left {
    flex: 1;
    min-width: 40%;
    position: sticky;
    top: 150px; /* Adjust based on header */
}

.v-about-services-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.v-about-services-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
}

.v-about-services-right {
    flex: 1.2;
    min-width: 50%;
}

.v-about-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.v-about-service-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.03);
    
    /* Animation base */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.v-about-service-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.v-about-service-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.v-about-service-num {
    background-color: #fce7eb;
    color: var(--v-color-primary, #b50e35);
    font-weight: 800;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.v-about-service-desc {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.6;
}

.v-about-services-btn {
    display: inline-block;
    padding: 15px 40px;
}

/* -------------------------------------
 * Callout Section
 * ------------------------------------- */
.v-about-callout-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.v-about-callout-inner {
    max-width: 900px;
    margin: 0 auto;
}

.v-about-callout-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.v-about-callout-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #718096;
    font-weight: 400;
}

/* -------------------------------------
 * Testimonial Section
 * ------------------------------------- */
.v-about-testimonial-section {
    width: 100%;
    background-color: #f9f9f9;
    padding: 80px 0;
}

.v-about-testimonial-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.v-about-testi-quote-icon {
    margin-bottom: 25px;
}

.v-about-testi-quote-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.6;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.v-about-testi-author-box {
    display: flex;
    align-items: center;
}

.v-about-testi-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-right: 20px;
}

.v-about-testi-img-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e2e8f0;
    margin-right: 20px;
}

.v-about-testi-name {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

/* -------------------------------------
 * Responsive Rules
 * ------------------------------------- */
@media (max-width: 992px) {
    /* Hero */
    .v-about-hero-banner {
        padding: 50px 0;
    }
    .v-about-hero-banner-title {
        font-size: 2.2rem;
    }
    .v-about-hero-content {
        padding: 50px 0;
    }
    .v-about-hero-split {
        flex-direction: column;
        gap: 30px;
    }
    .v-about-hero-left, .v-about-hero-right {
        min-width: 100%;
    }
    .v-about-hero-subtitle {
        font-size: 1.8rem;
        line-height: 1.35;
    }
    .v-about-hero-desc {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    /* Split Info */
    .v-about-split-layout {
        flex-direction: column;
    }
    .v-about-split-image-col, .v-about-split-content-col {
        min-width: 100%;
    }
    .v-about-split-image-col {
        height: 350px;
    }
    .v-about-split-content-col {
        padding: 50px 20px;
    }
    .v-about-split-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Services */
    .v-about-services-section {
        padding: 60px 0;
    }
    .v-about-services-split {
        flex-direction: column;
        gap: 30px;
    }
    .v-about-services-left, .v-about-services-right {
        min-width: 100%;
    }
    .v-about-services-left {
        position: relative; /* Disable sticky on mobile */
        top: 0;
    }
    .v-about-services-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .v-about-hero-banner-title {
        font-size: 1.7rem;
    }
    .v-about-hero-subtitle {
        font-size: 1.5rem;
    }
    .v-about-hero-desc {
        font-size: 1.05rem;
    }
    .v-about-split-image-col {
        height: 250px; /* Shorter image on small phones */
    }
    .v-about-split-title {
        font-size: 1.8rem;
    }
    .v-about-split-stats {
        flex-direction: row; /* Side by side on small phones if space allows, else stack */
        flex-wrap: wrap;
        gap: 40px;
    }
    .v-about-service-item {
        padding: 15px;
    }
    .v-about-service-num {
        margin-right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    /* Callout */
    .v-about-callout-section {
        padding: 60px 20px;
    }
    .v-about-callout-title {
        font-size: 1.6rem;
    }
    .v-about-callout-text {
        font-size: 1.05rem;
    }

    /* Testimonial */
    .v-about-testimonial-section {
        padding: 60px 0;
    }
    .v-about-testi-quote-text {
        font-size: 1.3rem;
    }
}
