/* 
 * See And Boss Vocens About Widget Styles
 * vocens.cloud
 */

/* General Styles */
.sb-about-section {
    position: relative;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

.sb-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.sb-section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: sb-fadeInDown 1s ease-out;
}

@keyframes sb-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sb-section-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
}

.sb-section-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.sb-section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* About Content */
.sb-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

/* About Image */
.sb-about-image {
    position: relative;
    animation: sb-fadeInLeft 1s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@keyframes sb-fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.sb-about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.sb-about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sb-about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #333;
    color: #fff;
    padding: 20px 30px;
    border-radius: 4px;
    z-index: 2;
}

.sb-about-image-badge h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.sb-about-image-badge p {
    font-size: 14px;
    opacity: 0.9;
}

/* About Text */
.sb-about-text {
    animation: sb-fadeInRight 1s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@keyframes sb-fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.sb-about-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.sb-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sb-about-text p:last-of-type {
    margin-bottom: 35px;
}

/* About Features */
.sb-about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sb-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background: transparent;
}

.sb-feature-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #333;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 18px;
    margin-bottom: 15px;
}

.sb-feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.sb-feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* CTA Button */
.sb-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #505050 0%, #2a2a2a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(80, 80, 80, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.sb-about-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sb-about-cta:hover::before {
    width: 300px;
    height: 300px;
}

.sb-about-cta:hover {
    box-shadow: 0 15px 40px rgba(80, 80, 80, 0.6);
    transform: translateY(-3px);
}

.sb-about-cta span {
    position: relative;
    z-index: 1;
}

.sb-about-cta i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sb-about-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sb-about-container {
        padding: 0 30px;
    }

    .sb-section-title {
        font-size: 40px;
    }

    .sb-about-content {
        gap: 50px;
    }

    .sb-about-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .sb-about-section {
        padding: 60px 0;
    }

    .sb-about-container {
        padding: 0 20px;
    }

    .sb-section-header {
        margin-bottom: 50px;
    }

    .sb-section-title {
        font-size: 32px;
    }

    .sb-section-description {
        font-size: 16px;
    }

    .sb-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sb-about-text h2 {
        font-size: 28px;
    }

    .sb-about-text p {
        font-size: 15px;
    }

    .sb-about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sb-about-image-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .sb-about-image-badge h3 {
        font-size: 28px;
    }

    .sb-about-image-badge p {
        font-size: 12px;
    }

    .sb-feature-item {
        padding: 15px;
    }

    .sb-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
        margin-right: 15px;
    }

    .sb-feature-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sb-section-title {
        font-size: 28px;
    }

    .sb-section-description {
        font-size: 15px;
    }

    .sb-about-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .sb-about-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .sb-about-features {
        gap: 25px;
    }

    .sb-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .sb-feature-content h4 {
        font-size: 15px;
    }

    .sb-feature-content p {
        font-size: 13px;
    }

    .sb-about-cta {
        padding: 14px 30px;
        font-size: 14px;
    }
}
