/* =============================================
   BACK OFFICE PAGE STYLES
   ============================================= */

/* =============================================
   ANIMATION DEFINITIONS
   ============================================= */

/* Fade Up Animation */
@keyframes boFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
@keyframes boFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Scale In Animation */
@keyframes boScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Left */
@keyframes boSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right */
@keyframes boSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Circle Expand */
@keyframes boCircleExpand {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Glow Pulse */
@keyframes boGlowPulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -30%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -30%) scale(1);
    }
}

/* Hero Section */
.bo-hero-section {
    position: relative;
    background-image: url('/assets/backoffice/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    min-height: 426px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.bo-hero-section .container {
    position: relative;
    z-index: 2;
}

.bo-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Animation Initial States */
.bo-hero-subtitle,
.bo-hero-title,
.bo-hero-description,
.bo-hero-btn {
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Animation Active States */
.bo-hero-section.animate .bo-hero-subtitle {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

.bo-hero-section.animate .bo-hero-title {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.25s;
}

.bo-hero-section.animate .bo-hero-description {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.bo-hero-section.animate .bo-hero-btn {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.55s;
}

.bo-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    line-height: 1.21;
    margin-bottom: 0.5rem;
}

.bo-hero-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    line-height: 1.21;
    margin-bottom: 1.5rem;
}

.bo-hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
    line-height: 1.21;
    margin-bottom: 2rem;
}

.bo-hero-btn {
    display: inline-block;
    background: #2194F3;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bo-hero-btn:hover {
    background: #1976D2;
    color: #fff;
    transform: translateY(-2px);
}

/* Jump Navigation */
.bo-jump-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Jump Nav Animation Initial States */
.bo-jump-label,
.bo-jump-arrow,
.bo-jump-link {
    opacity: 0;
    transform: translateY(20px);
}

/* Jump Nav Animation Active States */
.bo-hero-section.animate .bo-jump-label {
    animation: boFadeUp 0.6s ease-out forwards;
    animation-delay: 0.7s;
}

.bo-hero-section.animate .bo-jump-arrow {
    animation: boFadeUp 0.6s ease-out forwards;
    animation-delay: 0.8s;
}

.bo-hero-section.animate .bo-jump-link:nth-child(3) {
    animation: boFadeUp 0.6s ease-out forwards;
    animation-delay: 0.85s;
}

.bo-hero-section.animate .bo-jump-link:nth-child(4) {
    animation: boFadeUp 0.6s ease-out forwards;
    animation-delay: 0.95s;
}

.bo-hero-section.animate .bo-jump-link:nth-child(5) {
    animation: boFadeUp 0.6s ease-out forwards;
    animation-delay: 1.05s;
}

.bo-hero-section.animate .bo-jump-link:nth-child(6) {
    animation: boFadeUp 0.6s ease-out forwards;
    animation-delay: 1.15s;
}

.bo-jump-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2194F3;
    line-height: 1.67;
}

.bo-jump-arrow {
    width: 24px;
    height: 24px;
    margin-left: 0;
}

.bo-jump-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    line-height: 1.67;
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid rgba(113, 113, 113, 0.5);
    border-radius: 20px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.bo-jump-link:hover {
    background: #2194F3;
    color: #fff;
    border-color: #2194F3;
}

/* What We Offer Section */
.bo-what-we-offer-section {
    background: var(--light-blue-grey);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* What We Offer Animation Initial States */
.bo-what-we-offer-section .bo-decorative-circle {
    opacity: 0;
    transform: scale(0);
}

.bo-what-we-offer-section .bo-offer-image-wrapper {
    opacity: 0;
    transform: translateX(-60px);
}

.bo-what-we-offer-section .bo-offer-title {
    opacity: 0;
    transform: translateY(30px);
}

.bo-what-we-offer-section .bo-offer-description {
    opacity: 0;
    transform: translateY(30px);
}

.bo-what-we-offer-section .bo-offer-feature {
    opacity: 0;
    transform: translateX(30px);
}

/* What We Offer Animation Active States */
.bo-what-we-offer-section.animate .bo-decorative-circle {
    animation: boCircleExpand 0.8s ease-out forwards;
}

.bo-what-we-offer-section.animate .bo-circle-top-right {
    animation-delay: 0.2s;
}

.bo-what-we-offer-section.animate .bo-circle-bottom-left {
    animation-delay: 0.4s;
}

.bo-what-we-offer-section.animate .bo-offer-image-wrapper {
    animation: boSlideInLeft 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.bo-what-we-offer-section.animate .bo-offer-title {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.bo-what-we-offer-section.animate .bo-offer-description {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.55s;
}

.bo-what-we-offer-section.animate .bo-offer-feature:nth-child(1) {
    animation: boSlideInRight 0.6s ease-out forwards;
    animation-delay: 0.7s;
}

.bo-what-we-offer-section.animate .bo-offer-feature:nth-child(2) {
    animation: boSlideInRight 0.6s ease-out forwards;
    animation-delay: 0.85s;
}

.bo-decorative-circle {
    position: absolute;
    width: 202px;
    height: 194px;
    background: #2194F3;
    border-radius: 50%;
}

.bo-circle-top-right {
    top: -42px;
    right: -57px;
}

.bo-circle-bottom-left {
    bottom: -49px;
    left: -19px;
}

.bo-offer-image-wrapper {
    position: relative;
}

.bo-offer-image {
    width: 100%;
    max-width: 306px;
    height: auto;
    border-radius: 20px;
}

.bo-offer-content {
    padding-left: 40px;
}

.bo-offer-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2194F3;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.bo-offer-description {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.67;
    margin-bottom: 2rem;
}

.bo-offer-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bo-offer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.67;
}

.bo-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Key Benefits Section */
.bo-key-benefits-section {
    background: #EBEBEB;
}

.bo-benefit-block {
    padding: 30px 0;
}

/* Key Benefits Animation Initial States */
.bo-benefit-block .bo-benefit-title {
    opacity: 0;
    transform: translateY(30px);
}

.bo-benefit-block .bo-benefit-item {
    opacity: 0;
    transform: translateY(30px);
}

.bo-benefit-block .bo-benefit-image-wrapper {
    opacity: 0;
}

.bo-benefit-white .bo-benefit-image-wrapper {
    transform: translateX(60px);
}

.bo-benefit-gray .bo-benefit-image-wrapper {
    transform: translateX(-60px);
}

/* Key Benefits Animation Active States */
.bo-benefit-block.animate .bo-benefit-title {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.bo-benefit-block.animate .bo-benefit-item:nth-child(1) {
    animation: boFadeUp 0.7s ease-out forwards;
    animation-delay: 0.4s;
}

.bo-benefit-block.animate .bo-benefit-item:nth-child(2) {
    animation: boFadeUp 0.7s ease-out forwards;
    animation-delay: 0.6s;
}

.bo-benefit-white.animate .bo-benefit-image-wrapper {
    animation: boSlideInRight 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.bo-benefit-gray.animate .bo-benefit-image-wrapper {
    animation: boSlideInLeft 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.bo-benefit-white {
    background: #fff;
}

.bo-benefit-gray {
    background: #E6EBF4;
}

.bo-benefit-content {
    padding: 0 20px;
}

.bo-benefit-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2194F3;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.bo-benefit-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bo-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bo-benefit-text {
    flex: 1;
}

.bo-benefit-text h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    line-height: 1.21;
    margin-bottom: 0.5rem;
}

.bo-benefit-text p {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    line-height: 1.21;
    margin: 0;
}

.bo-benefit-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bo-benefit-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
}

.bo-benefit-white .bo-benefit-image {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.bo-website-img {
    max-width: 450px;
}

/* How It Works Section */
.bo-how-it-works-section {
    background: #1E2024;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* How It Works Animation Initial States */
.bo-how-it-works-section .bo-glow-circle {
    opacity: 0;
    transform: translate(-50%, -30%) scale(0);
}

.bo-how-it-works-section .bo-section-title {
    opacity: 0;
    transform: translateY(30px);
}

.bo-how-it-works-section .bo-section-description {
    opacity: 0;
    transform: translateY(30px);
}

.bo-how-it-works-section .bo-works-image-wrapper {
    opacity: 0;
    transform: scale(0.8);
}

.bo-how-it-works-section .bo-works-subtitle {
    opacity: 0;
    transform: translateY(20px);
}

/* How It Works Animation Active States */
.bo-how-it-works-section.animate .bo-glow-circle {
    animation: boGlowPulse 1s ease-out forwards;
    animation-delay: 0.2s;
}

.bo-how-it-works-section.animate .bo-section-title {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.bo-how-it-works-section.animate .bo-section-description {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.bo-how-it-works-section.animate .bo-works-image-wrapper {
    animation: boScaleIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.bo-how-it-works-section.animate .bo-works-subtitle {
    animation: boFadeUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

.bo-glow-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(250px);
    z-index: 1;
}

.bo-how-it-works-section .container {
    position: relative;
    z-index: 2;
}

.bo-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.21;
    margin-bottom: 1.5rem;
}

.bo-section-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.21;
    max-width: 721px;
    margin: 0 auto 3rem;
}

.bo-works-image-wrapper {
    margin-bottom: 3rem;
    display: flex;
    width: 100%;
    justify-content: center;
}

.bo-works-image {
    width: 100%;
    max-width: 584px;
    height: auto;
    border-radius: 8px;
}

.bo-works-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.21;
    margin: 0;
}


/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 991px) {
    .bo-hero-section {
        padding: 100px 0 50px;
    }
    
    .bo-hero-title {
        font-size: 1.75rem;
    }
    
    .bo-hero-description {
        font-size: 1.125rem;
    }
    
    .bo-jump-nav {
        gap: 8px;
        margin-top: 2rem;
    }
    
    .bo-jump-link {
        padding: 5px 12px;
        font-size: 0.875rem;
        margin-left: 5px;
    }
    
    .bo-what-we-offer-section {
        padding: 60px 0;
    }
    
    .bo-decorative-circle {
        width: 150px;
        height: 144px;
    }
    
    .bo-offer-image-wrapper {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .bo-offer-content {
        padding-left: 0;
    }
    
    .bo-offer-title,
    .bo-benefit-title {
        font-size: 1.75rem;
    }
    
    .bo-benefit-block {
        padding: 25px 0;
    }
    
    .bo-benefit-content {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .bo-benefit-image-wrapper {
        margin-top: 2rem;
    }
    
    .bo-how-it-works-section {
        padding: 60px 0;
    }
    
    .bo-section-title {
        font-size: 2rem;
    }
    
    .bo-section-description {
        font-size: 1.125rem;
    }
    
    .bo-glow-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 767px) {
    .bo-hero-section {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .bo-hero-subtitle {
        font-size: 1rem;
    }
    
    .bo-hero-title {
        font-size: 1.5rem;
    }
    
    .bo-hero-description {
        font-size: 1rem;
    }
    
    .bo-hero-btn {
        padding: 10px 30px;
        font-size: 0.875rem;
    }
    
    .bo-jump-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .bo-jump-label {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .bo-jump-arrow {
        display: none;
    }
    
    .bo-jump-link {
        margin-left: 0;
        font-size: 0.8125rem;
        padding: 4px 10px;
    }
    
    .bo-what-we-offer-section {
        padding: 50px 0;
    }
    
    .bo-decorative-circle {
        width: 100px;
        height: 96px;
    }
    
    .bo-offer-image {
        max-width: 250px;
    }
    
    .bo-offer-title,
    .bo-benefit-title {
        font-size: 1.5rem;
    }
    
    .bo-offer-description,
    .bo-offer-feature,
    .bo-benefit-text h3,
    .bo-benefit-text p {
        font-size: 0.875rem;
    }
    
    .bo-check-icon {
        width: 20px;
        height: 20px;
    }
    
    .bo-benefit-block {
        padding: 20px 0;
    }
    
    .bo-benefit-features {
        gap: 1.5rem;
    }
    
    .bo-benefit-image {
        max-width: 220px;
    }
    
    .bo-website-img {
        max-width: 250px;
    }
    
    .bo-how-it-works-section {
        padding: 50px 0;
    }
    
    .bo-section-title {
        font-size: 1.75rem;
    }
    
    .bo-section-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .bo-works-image {
        max-width: 100%;
    }
    
    .bo-works-subtitle {
        font-size: 1.5rem;
    }
    
    .bo-glow-circle {
        width: 200px;
        height: 200px;
    }
}
