/* Go Siyaha Page - Modern SaaS Design */

/* Hero Header */
.gosiyaha-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg,
            rgba(111, 100, 237, 0.1) 0%,
            rgba(186, 60, 231, 0.1) 50%,
            rgba(90, 56, 175, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.gosiyaha-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236f64ed' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-bottom: 32px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-regular);
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    font-family: var(--font-semibold);
    color: var(--color-primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--color-text);
    opacity: 0.5;
    padding: 0 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    color: white;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 8px 25px rgba(186, 60, 231, 0.25);
}

/* Go Siyaha Banner */
.go-siyaha-section {
    padding: 5rem 0;
}

.go-siyaha-banner {
    background: linear-gradient(135deg, var(--color-fonce) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.go-siyaha-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.go-siyaha-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.go-siyaha-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.go-siyaha-text {
    flex: 1;
}

.go-siyaha-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-family: var(--font-semibold);
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.go-siyaha-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.btn-gosiyaha {
    background: white;
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-gosiyaha:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(186, 60, 231, 0.25);
    color: var(--color-primary);
    background: white;
}

.go-siyaha-logo {
    flex-shrink: 0;
}

.go-siyaha-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
    .go-siyaha-content {
        flex-direction: column;
        text-align: center;
    }

    .go-siyaha-logo {
        order: -1;
    }

    .go-siyaha-logo img {
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .gosiyaha-hero {
        padding: 120px 0 80px;
    }

    .go-siyaha-section {
        padding: 3.5rem 0;
    }

    .go-siyaha-banner {
        padding: 2rem;
    }
}