/* =========================================
   KRİPTO ALT HİZMET SAYFALARI - CSS
   ========================================= */
:root {
    --kah-bg-dark: #090e17;
    --kah-card-bg: #131b26;
    --kah-border: rgba(255, 255, 255, 0.05);
    --kah-text-primary: #ffffff;
    --kah-text-secondary: #8b9ab3;
    --kah-accent: #6c5ce7;
    --kah-accent-glow: rgba(108, 92, 231, 0.4);
}

body {
    background-color: var(--kah-bg-dark);
}

/* Hero Section */
.kripto-sub-hero {
    padding: 140px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kripto-sub-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--kah-accent-glow) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.sub-hero-content {
    position: relative;
    z-index: 1;
}

.sub-hero-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(108, 92, 231, 0.1);
    padding: 20px;
    border-radius: 50%;
    border: 1px solid var(--kah-border);
}

.sub-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--kah-text-primary);
    margin-bottom: 20px;
}

.sub-hero-desc {
    font-size: 1.15rem;
    color: var(--kah-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Grid/Features Section */
.kripto-content-section {
    padding: 60px 0;
}

.feature-box {
    background-color: var(--kah-card-bg);
    border: 1px solid var(--kah-border);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
}

.feature-box h4 {
    color: var(--kah-text-primary);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--kah-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Call to Action Row */
.kripto-cta-box {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(20, 25, 35, 0.9));
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 50px;
}

.kripto-cta-box h3 {
    color: #fff;
    margin-bottom: 15px;
}

.kripto-cta-box p {
    color: var(--kah-text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sub-hero-title {
        font-size: 2rem;
    }

    .sub-hero-icon {
        font-size: 2.5rem;
        padding: 15px;
    }

    .kripto-sub-hero {
        padding: 110px 15px 50px 15px;
    }

    .feature-box {
        margin-bottom: 20px;
    }
}