/* ========================================
   Family Office Accounting Page Styles
   ======================================== */

/* CSS Variables */
:root {
    --fo-primary: #FF6B35;
    --fo-secondary: #E93C05;
    --fo-light: #FFF4F0;
    --fo-white: #FFFFFF;
    --fo-dark: #1A1A1A;
    --fo-gray: #6C757D;
    --fo-gradient-start: #FF8C61;
    --fo-gradient-end: #FF6B35;
}

/* ========================================
   KEYFRAME ANIMATIONS (7 Required)
   ======================================== */

/* 1. Liquid Morph - Blob morphing animation */
@keyframes fo-liquid-morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1) rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.05) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: scale(1.1) rotate(180deg);
    }
    75% {
        border-radius: 40% 60% 50% 50% / 30% 70% 60% 40%;
        transform: scale(1.05) rotate(270deg);
    }
}

/* 2. Particle Drift - Floating particle animation */
@keyframes fo-particle-drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.6;
    }
    66% {
        transform: translate(-15px, -60px) scale(0.9);
        opacity: 0.4;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

/* 3. Wave Ripple - Wave propagation effect */
@keyframes fo-wave-ripple {
    0% {
        transform: translateX(-100%) scaleY(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(0) scaleY(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateX(100%) scaleY(1);
        opacity: 0.5;
    }
}

/* 4. Spiral Rotate - Rotating spiral motion */
@keyframes fo-spiral-rotate {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* 5. Glow Pulse - Pulsing glow effect */
@keyframes fo-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3),
                    0 0 40px rgba(255, 107, 53, 0.2),
                    0 0 60px rgba(255, 107, 53, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.5),
                    0 0 60px rgba(255, 107, 53, 0.3),
                    0 0 90px rgba(255, 107, 53, 0.2);
        transform: scale(1.05);
    }
}

/* 6. Slide Fade - Slide in with fade */
@keyframes fo-slide-fade {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 7. Bounce Soft - Gentle bouncing motion */
@keyframes fo-bounce-soft {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-7px);
    }
}

/* ========================================
   HERO SECTION WITH CSS ART
   ======================================== */

.fo-hero-section {
    padding: 180px 0 120px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.95) 0%,
        rgba(233, 60, 5, 0.9) 50%,
        rgba(255, 107, 53, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

/* CSS Art: Liquid Blob Shapes */
.fo-liquid-blob {
    position: absolute;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.fo-blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: fo-liquid-morph 20s ease-in-out infinite;
}

.fo-blob-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -80px;
    animation: fo-liquid-morph 25s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.fo-blob-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fo-liquid-morph 30s ease-in-out infinite;
    animation-delay: -10s;
}

/* CSS Art: Particle Network */
.fo-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.fo-particle-1 {
    top: 20%;
    left: 15%;
    animation: fo-particle-drift 8s ease-in-out infinite;
}

.fo-particle-2 {
    top: 40%;
    right: 20%;
    animation: fo-particle-drift 10s ease-in-out infinite;
    animation-delay: -2s;
}

.fo-particle-3 {
    bottom: 30%;
    left: 25%;
    animation: fo-particle-drift 12s ease-in-out infinite;
    animation-delay: -4s;
}

.fo-particle-4 {
    top: 60%;
    right: 15%;
    animation: fo-particle-drift 9s ease-in-out infinite;
    animation-delay: -6s;
}

.fo-particle-5 {
    bottom: 20%;
    right: 30%;
    animation: fo-particle-drift 11s ease-in-out infinite;
    animation-delay: -3s;
}

.fo-particle-6 {
    top: 35%;
    left: 40%;
    animation: fo-particle-drift 13s ease-in-out infinite;
    animation-delay: -7s;
}

/* CSS Art: Wave Pattern */
.fo-wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    animation: fo-wave-ripple 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Hero Pill Badge */
.fo-hero-pill {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fo-hero-pill:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Trust Badges */
.fo-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

@media (min-width: 992px) {
    .fo-trust-badges {
        justify-content: flex-start;
    }
}

.fo-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fo-trust-badge i {
    font-size: 18px;
}

.fo-trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Hero Buttons */
.fo-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: white;
    color: var(--fo-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.fo-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fo-btn-primary:hover {
    color: white;
    background: var(--fo-primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.fo-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.fo-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.fo-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    transform: translateY(-5px);
}

/* CSS Art: Wealth Shield Visualization */
.fo-hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fo-wealth-shield {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fo-shield-ring {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: fo-spiral-rotate 15s linear infinite;
}

.fo-ring-1 {
    width: 200px;
    height: 200px;
    animation-duration: 20s;
}

.fo-ring-2 {
    width: 150px;
    height: 150px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.fo-ring-3 {
    width: 100px;
    height: 100px;
    animation-duration: 10s;
}

.fo-shield-center {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    z-index: 2;
    animation: fo-glow-pulse 3s ease-in-out infinite;
}

/* Floating Data Points */
.fo-data-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    animation: fo-bounce-soft 4s ease-in-out infinite;
}

.fo-data-point i {
    font-size: 24px;
}

.fo-point-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.fo-point-2 {
    top: 15%;
    right: 8%;
    animation-delay: -1s;
}

.fo-point-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: -2s;
}

.fo-point-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: -3s;
}

/* ========================================
   SECTION BADGES
   ======================================== */

.fo-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--fo-light);
    color: var(--fo-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

/* ========================================
   INFO SECTION (WHAT IS)
   ======================================== */

.fo-info-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    position: relative;
}

.fo-info-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    animation: fo-liquid-morph 15s ease-in-out infinite;
    transition: all 0.4s ease;
}

.fo-info-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4);
}

.fo-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fo-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--fo-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: fo-slide-fade 0.6s ease forwards;
}

.fo-info-item i {
    font-size: 24px;
    color: var(--fo-primary);
    flex-shrink: 0;
}

.fo-info-item span {
    font-size: 16px;
    color: var(--fo-dark);
    font-weight: 500;
}

.fo-info-item:hover {
    background: white;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.fo-highlight-text {
    font-size: 18px;
    color: var(--fo-primary);
    font-weight: 600;
    padding: 20px;
    background: var(--fo-light);
    border-radius: 10px;
    border-left: 4px solid var(--fo-primary);
}

/* ========================================
   WHY IT MATTERS SECTION
   ======================================== */

.fo-why-section {
    background: linear-gradient(180deg, var(--fo-light) 0%, white 100%);
}

.fo-why-card {
    padding: 35px 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.fo-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.fo-why-card:hover::before {
    left: 100%;
}

.fo-why-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--fo-primary);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.fo-why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.fo-why-card:hover .fo-why-icon {
    transform: scale(1.15) rotate(360deg);
    animation: fo-glow-pulse 2s ease-in-out infinite;
}

/* ========================================
   WHO NEEDS SECTION
   ======================================== */

.fo-who-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.fo-who-card:hover {
    transform: translateY(-8px);
    border-color: var(--fo-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.12);
}

.fo-who-icon {
    width: 60px;
    height: 60px;
    background: var(--fo-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--fo-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fo-who-card:hover .fo-who-icon {
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    color: white;
    transform: scale(1.1) rotate(-10deg);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.fo-services-section {
    background: white;
}

.fo-service-card {
    position: relative;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.fo-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    transition: width 0.5s ease;
}

.fo-service-card:hover::after {
    width: 100%;
}

.fo-service-card:hover {
    transform: translateY(-12px);
    border-color: var(--fo-primary);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.18);
}

.fo-service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--fo-light);
    color: var(--fo-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.fo-service-card:hover .fo-service-number {
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    color: white;
    transform: scale(1.2) rotate(360deg);
}

.fo-service-content {
    position: relative;
    z-index: 2;
}

.fo-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.fo-service-card:hover .fo-service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.fo-process-card {
    padding: 35px 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.fo-process-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--fo-primary);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.fo-process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 3px solid var(--fo-primary);
    color: var(--fo-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.fo-process-card:hover .fo-process-number {
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    color: white;
    transform: translateX(-50%) scale(1.3) rotate(360deg);
    border-color: var(--fo-secondary);
}

.fo-process-icon {
    width: 80px;
    height: 80px;
    background: var(--fo-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--fo-primary);
    margin: 25px auto 20px;
    transition: all 0.3s ease;
}

.fo-process-card:hover .fo-process-icon {
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    color: white;
    transform: scale(1.1);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.fo-benefits-section {
    background: linear-gradient(180deg, white 0%, var(--fo-light) 100%);
}

.fo-benefit-card {
    padding: 35px 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.fo-benefit-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fo-benefit-card:hover::before {
    width: 400px;
    height: 400px;
}

.fo-benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--fo-primary);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.fo-benefit-icon {
    width: 75px;
    height: 75px;
    background: var(--fo-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--fo-primary);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.fo-benefit-card:hover .fo-benefit-icon {
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    color: white;
    transform: scale(1.15);
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */

.fo-problem-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.fo-problem-item:hover {
    transform: translateY(-8px);
    border-color: var(--fo-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.12);
}

.fo-problem-icon {
    width: 55px;
    height: 55px;
    background: var(--fo-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--fo-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fo-problem-item:hover .fo-problem-icon {
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    color: white;
    transform: scale(1.3) rotate(10deg);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.fo-faq-section {
    background: var(--fo-light);
}

.fo-accordion .accordion-item {
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fo-accordion .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.fo-accordion .accordion-button {
    background: white;
    color: var(--fo-dark);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    font-size: 16px;
}

.fo-accordion .accordion-button:not(.collapsed) {
    background: var(--fo-light);
    color: var(--fo-primary);
    box-shadow: none;
}

.fo-accordion .accordion-button i {
    transition: transform 0.3s ease;
    color: var(--fo-primary);
}

.fo-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.fo-accordion .accordion-body {
    padding: 20px 25px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--fo-gray);
}

/* ========================================
   CTA SECTION
   ======================================== */

.fo-cta-card {
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.fo-cta-blob {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
    animation: fo-liquid-morph 20s ease-in-out infinite;
}

.fo-cta-blob-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.fo-cta-blob-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    animation-delay: -10s;
}

.fo-btn-white {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: white;
    color: var(--fo-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fo-btn-white:hover {
    color: var(--fo-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fo-btn-outline-white {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fo-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    transform: translateY(-5px);
}

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */

.fo-image-placeholder {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    animation: fo-slide-fade 1s ease forwards;
}

.fo-image-placeholder.fo-image-horizontal {
    max-width: 100%;
    margin: 30px 0;
}

.fo-image-frame {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border-radius: 20px;
    border: 3px solid var(--fo-primary);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fo-image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--fo-primary) 0%,
        var(--fo-secondary) 50%,
        var(--fo-primary) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fo-image-placeholder:hover .fo-image-frame::before {
    opacity: 1;
    animation: fo-spiral-rotate 3s linear infinite;
}

.fo-image-placeholder:hover .fo-image-frame {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.25);
    border-color: var(--fo-secondary);
}

.fo-image-content {
    aspect-ratio: 4 / 3;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 20px;
    text-align: center;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fo-image-horizontal .fo-image-content {
    aspect-ratio: 3 / 1;
}

.fo-image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 107, 53, 0.1),
        transparent);
    transition: left 0.8s ease;
}

.fo-image-placeholder:hover .fo-image-content::before {
    left: 100%;
}

.fo-image-content i {
    font-size: 60px;
    color: var(--fo-primary);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.fo-image-placeholder:hover .fo-image-content i {
    opacity: 1;
    transform: scale(1.2);
    animation: fo-glow-pulse 2s ease-in-out infinite;
}

.fo-image-content p {
    font-size: 18px;
    font-weight: 600;
    color: var(--fo-dark);
    margin: 0;
}

.fo-image-content span {
    font-size: 14px;
    color: var(--fo-gray);
    font-style: italic;
}

/* ========================================
   CONSULTATION SECTION
   ======================================== */

.fo-consultation-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 50%,
        rgba(255, 107, 53, 0.03) 100%);
}

.fo-consultation-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fo-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
    animation: fo-slide-fade 0.6s ease forwards;
}

.fo-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.fo-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.fo-feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.fo-feature-item:hover {
    background: var(--fo-light);
    border-color: var(--fo-primary);
    transform: translateX(15px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.fo-feature-item i {
    font-size: 24px;
    color: var(--fo-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fo-feature-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.fo-feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--fo-dark);
}

/* ========================================
   PROCESS SECTION WITH ORANGE BACKGROUND
   ======================================== */

.fo-process-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.05) 0%,
        rgba(233, 60, 5, 0.08) 100%);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .fo-hero-section {
        padding: 140px 0 80px;
    }

    .fo-liquid-blob {
        opacity: 0.5;
    }

    .fo-hero-visual {
        height: 350px;
    }

    .fo-wealth-shield {
        width: 150px;
        height: 150px;
    }

    .fo-shield-ring.fo-ring-1 {
        width: 150px;
        height: 150px;
    }

    .fo-shield-ring.fo-ring-2 {
        width: 120px;
        height: 120px;
    }

    .fo-shield-ring.fo-ring-3 {
        width: 90px;
        height: 90px;
    }

    .fo-shield-center {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .fo-data-point {
        padding: 12px 16px;
        font-size: 12px;
    }

    .fo-info-circle {
        width: 200px;
        height: 200px;
        font-size: 80px;
    }

    .fo-cta-card {
        padding: 60px 40px;
    }

    .fo-image-content i {
        font-size: 50px;
    }

    .fo-image-content p {
        font-size: 16px;
    }

    .fo-image-content span {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .fo-hero-section {
        padding: 120px 0 60px;
    }

    .fo-liquid-blob,
    .fo-particle,
    .fo-wave-pattern {
        display: none;
    }

    .fo-hero-visual {
        height: 300px;
        margin-top: 40px;
    }

    .fo-wealth-shield {
        width: 120px;
        height: 120px;
    }

    .fo-shield-ring.fo-ring-1 {
        width: 120px;
        height: 120px;
    }

    .fo-shield-ring.fo-ring-2 {
        width: 95px;
        height: 95px;
    }

    .fo-shield-ring.fo-ring-3 {
        width: 70px;
        height: 70px;
    }

    .fo-shield-center {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .fo-data-point {
        padding: 10px 14px;
        font-size: 11px;
    }

    .fo-data-point i {
        font-size: 20px;
    }

    .fo-info-visual {
        height: 300px;
    }

    .fo-info-circle {
        width: 180px;
        height: 180px;
        font-size: 70px;
    }

    .fo-section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    h1.display-4 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .fo-btn-primary,
    .fo-btn-outline {
        padding: 14px 24px;
        font-size: 14px;
    }

    .fo-trust-badges {
        justify-content: center;
    }

    .fo-trust-badge {
        padding: 10px 16px;
        font-size: 13px;
    }

    .fo-cta-card {
        padding: 50px 25px;
    }

    .fo-cta-card h2 {
        font-size: 1.5rem;
    }

    .fo-image-placeholder {
        max-width: 100%;
    }

    .fo-image-frame {
        padding: 10px;
    }

    .fo-image-content {
        padding: 30px 15px;
    }

    .fo-image-content i {
        font-size: 40px;
    }

    .fo-image-content p {
        font-size: 14px;
    }

    .fo-image-content span {
        font-size: 12px;
    }

    .fo-feature-item {
        padding: 15px 18px;
    }

    .fo-feature-item span {
        font-size: 14px;
    }
}
