/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.8)), url('../images/golden-bitcoin-coin-keyboard-stock-market-trading-chart-online-candlestick.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 174, 17, 0.15) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) rotate(0deg); }
    50% { transform: translateX(100%) rotate(180deg); }
}

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

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

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

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

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 174, 17, 0.08), transparent);
    animation: wave-flow 6s ease-in-out infinite;
}

@keyframes wave-flow {
    0%, 100% { transform: translateX(-33%); }
    50% { transform: translateX(33%); }
}

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

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 174, 17, 0.2), rgba(255, 174, 17, 0.05));
    animation: float-rotate 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 85%;
    animation-delay: 6s;
}

@keyframes float-rotate {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 174, 17, 0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(0.8); }
    50% { transform: scale(1.2); }
}

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

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

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

.service-image:hover img {
    transform: scale(1.1);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffae11 0%, #e69d00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 36px;
    color: #000 !important;
}

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

.service-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.service-features li {
    color: #ccc;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

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

.btn-service {
    background: linear-gradient(135deg, #ffae11 0%, #e69d00 100%);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: linear-gradient(135deg, #e69d00 0%, #cc8800 100%);
    color: #000;
    transform: translateY(-2px);
}

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

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

.crypto-card h4 {
    color: #ffae11;
    margin-bottom: 15px;
}

.crypto-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

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

.change.positive {
    color: #28a745;
}

.change.negative {
    color: #dc3545;
}

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

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

    .service-card {
        padding: 35px 25px;
    }

    .service-image {
        height: 180px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 32px;
    }
}

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

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

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

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

    .service-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .service-image {
        height: 160px;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .service-card p {
        margin-bottom: 20px;
    }

    .service-features {
        margin: 15px 0;
    }

    .service-features li {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .btn-service {
        padding: 10px 25px;
        font-size: 14px;
    }

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

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

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

    .crypto-card .price {
        font-size: 20px;
    }
}

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

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

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

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

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

    .service-image {
        height: 140px;
        margin-bottom: 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .service-features li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .btn-service {
        padding: 8px 20px;
        font-size: 13px;
    }

    .crypto-card {
        padding: 20px;
    }

    .crypto-card .price {
        font-size: 18px;
    }

    /* Disable complex animations on mobile */
    .floating-elements,
    .floating-circle,
    .services-section::before,
    .service-card::before {
        display: none;
    }

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

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