/* Business Plan Page Styles */
.business-hero {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.8)), url('../images/2151691916.jpg');
    background-size: contain;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 20%, rgba(255, 174, 17, 0.2) 50%, transparent 80%);
    animation: diagonal-sweep 5s ease-in-out infinite;
}

@keyframes diagonal-sweep {
    0%, 100% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
}

.business-hero .container {
    position: relative;
    z-index: 2;
}

.business-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffae11;
}

.business-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.business-section {
    padding: 80px 0;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 174, 17, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 174, 17, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 174, 17, 0.06) 0%, transparent 50%);
    animation: radial-pulse 8s ease-in-out infinite;
}

@keyframes radial-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.animated-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 174, 17, 0.15), rgba(255, 174, 17, 0.05));
    border-radius: 50%;
    animation: morph-float 10s ease-in-out infinite;
}

.bg-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.bg-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes morph-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        border-radius: 60% 40% 30% 70%;
    }
    50% {
        transform: translateY(-40px) scale(0.9);
        border-radius: 30% 60% 70% 40%;
    }
    75% {
        transform: translateY(-20px) scale(1.05);
        border-radius: 40% 30% 60% 50%;
    }
}

.plan-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #ffae11;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 174, 17, 0.1), transparent);
    transition: all 0.5s ease;
}

.plan-card:hover::before {
    left: 100%;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 174, 17, 0.4);
    border-color: #ffae11;
}

.plan-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.plan-image:hover img {
    transform: scale(1.1) rotate(2deg);
}

.plan-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 174, 17, 0.3), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.plan-image:hover::after {
    opacity: 1;
}

.plan-card h2 {
    color: #ffae11;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.plan-card h3 {
    color: #ffae11;
    font-size: 22px;
    margin-bottom: 20px;
}

.plan-card p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    color: #ccc;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before {
    content: '✓';
    color: #ffae11;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-table {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #ffae11;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.package-table table {
    width: 100%;
    margin: 0;
}

.package-table th {
    background: #ffae11;
    color: #000;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.package-table td {
    padding: 15px;
    color: #ccc;
    text-align: center;
    border-bottom: 1px solid #333;
}

.package-table tr:last-child td {
    border-bottom: none;
}

.crypto-stats {
    background: #111;
    padding: 60px 0;
}

.crypto-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.crypto-card h4 {
    color: #ffae11;
    margin-bottom: 10px;
    font-size: 16px;
}

.crypto-card .market-cap {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.crypto-card .percentage {
    font-size: 14px;
    color: #888;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 1200px) {
    .business-hero h1 {
        font-size: 42px;
    }

    .business-hero p {
        font-size: 16px;
    }

    .plan-card {
        padding: 35px 25px;
        margin-bottom: 60px;
    }

    .plan-image {
        height: 250px;
        margin-bottom: -40px;
    }

    .plan-card h2 {
        font-size: 26px;
    }

    .plan-card h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .business-hero {
        height: 70vh;
        padding: 20px 0;
    }

    .business-hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .business-hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .business-section {
        padding: 60px 0;
    }

    .plan-card {
        padding: 30px 20px;
        margin-bottom: 50px;
        overflow: hidden;
    }

    .plan-image {
        height: 200px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        transform: none;
    }

    .plan-card h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .plan-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .plan-card p {
        margin-bottom: 15px;
    }

    .benefits-list li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .package-table {
        margin-bottom: 30px;
    }

    .package-table th,
    .package-table td {
        padding: 12px;
        font-size: 14px;
    }

    .crypto-stats {
        padding: 40px 0;
    }

    .crypto-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .crypto-card h4 {
        font-size: 14px;
    }

    .crypto-card .market-cap {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .business-hero {
        height: 60vh;
    }

    .business-hero h1 {
        font-size: 28px;
    }

    .business-hero p {
        font-size: 13px;
    }

    .business-section {
        padding: 40px 0;
    }

    .plan-card {
        padding: 25px 15px;
        margin-bottom: 40px;
    }

    .plan-image {
        height: 160px;
        margin-bottom: 15px;
    }

    .plan-card h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .plan-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .plan-card p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .benefits-list li {
        font-size: 13px;
        margin-bottom: 8px;
        padding-left: 20px;
    }

    .package-table th,
    .package-table td {
        padding: 8px;
        font-size: 12px;
    }

    .crypto-card {
        padding: 15px;
    }

    .crypto-card h4 {
        font-size: 13px;
    }

    .crypto-card .market-cap {
        font-size: 14px;
    }

    /* Disable complex animations on mobile */
    .animated-bg-shapes,
    .bg-shape,
    .business-section::before,
    .plan-card::before {
        display: none;
    }

    .plan-card:hover {
        transform: translateY(-5px);
    }

    .plan-image:hover img {
        transform: scale(1.05);
    }
}
