/* assets/css/pages/shopify-partners.css - Premium Global Agency Style */

:root {
    --sh-primary: #008060; /* Shopify Green */
    --sh-primary-dark: #004c3f;
    --sh-dark: #111827; /* Deep Charcoal/Navy */
    --sh-accent: #95BF47; /* Shopify Light Green */
    --sh-bg: #f9fafb; /* Light Gray */
    --sh-surface: #ffffff;
    --sh-text: #4b5563;
    --sh-text-light: #9ca3af;
    --sh-border: #e5e7eb;
}

/* HERO SECTION - Premium Vibe */
.sh-hero {
    background: url('/assets/img/bg/inner-hero-bg.webp') no-repeat center center/cover;
    position: relative;
    padding: 180px 0 120px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.sh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from Deep Navy to Shopify Green */
    background: linear-gradient(135deg, rgba(8, 25, 43, 0.95) 0%, rgba(0, 76, 63, 0.92) 100%);
    z-index: 1;
}

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

.sh-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sh-hero h1 span.accent {
    color: var(--sh-accent);
}

.sh-hero p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: #e2e8f0;
}

.sh-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.sh-badge i {
    margin-right: 10px;
    font-size: 1.2em;
    color: var(--sh-accent);
}

/* Stats Row in Hero */
.sh-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sh-stat-item {
    text-align: center;
}

.sh-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.sh-stat-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* SERVICES GRID - HUB */
.sh-grid-sec {
    padding: 120px 0;
    background-color: var(--sh-bg);
    position: relative;
    z-index: 10;
}

.sh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sh-card {
    background: var(--sh-surface);
    border-radius: 20px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--sh-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sh-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sh-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sh-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.sh-card:hover::after {
    transform: scaleX(1);
}

.sh-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    color: var(--sh-primary);
    transition: all 0.4s ease;
}

.sh-card:hover .sh-icon-box {
    background: var(--sh-primary);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.sh-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sh-dark);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.sh-card p {
    font-size: 1rem;
    color: var(--sh-text);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.sh-link-btn {
    font-weight: 700;
    color: var(--sh-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.sh-card:hover .sh-link-btn {
    gap: 15px;
}

/* CONTENT & LISTS */
.sh-check-list li {
    margin-bottom: 15px;
    color: var(--sh-text);
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.5;
}

.sh-check-list li i {
    color: var(--sh-primary);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.sh-check-list li strong {
    color: var(--sh-dark);
    margin-right: 5px;
}

/* IMAGE WITH GLOW */
.img-glow {
    position: relative;
    border-radius: 20px;
}

.img-glow::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--sh-primary), var(--sh-accent));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(30px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .sh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .sh-hero h1 {
        font-size: 3.5rem;
    }
    .sh-hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sh-grid {
        grid-template-columns: 1fr;
    }
    .sh-hero h1 {
        font-size: 2.8rem;
    }
    .sh-hero {
        padding: 140px 0 80px;
    }
    .sh-stat-num {
        font-size: 2rem;
    }
}