/* Google-Inspired Premium IT Solutions Styles */

/* Base overrides for these pages */
.premium-bg-white {
    background-color: #ffffff !important;
}

.premium-bg-light {
    background-color: #f8f9fa !important;
}

/* Hero Section */
.premium-hero {
    background: #ffffff;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f3f4;
}

/* Optional subtle background grid or shapes in hero */
.premium-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,115,232,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

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

.premium-hero .hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #202124;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.premium-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #5f6368;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Typography elements */
.premium-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #202124;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.premium-section-subtitle {
    color: #5f6368;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Card (Soft UI) */
.premium-card {
    background: #ffffff;
    border: 1px solid #f1f3f4;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    height: 100%;
    position: relative;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06), 0 4px 8px rgba(0,0,0,0.04);
}

.premium-card.image-card {
    padding: 0;
    overflow: hidden;
}

.premium-card.image-card .card-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.premium-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.premium-card.image-card .card-content {
    padding: 2rem;
}

/* Icons */
.premium-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #e8f0fe;
    color: #1a73e8;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

/* Colors for icon boxes to vary them (Google brand colors) */
.icon-blue { background: #e8f0fe; color: #1a73e8; }
.icon-red { background: #fce8e6; color: #d93025; }
.icon-yellow { background: #fef7e0; color: #f9ab00; }
.icon-green { background: #e6f4ea; color: #1e8e3e; }
.icon-purple { background: #f3e8fd; color: #9334e6; }
.icon-teal { background: #e0f2f1; color: #00897b; }

.premium-card h4 {
    font-weight: 600;
    color: #202124;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.premium-card p {
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Features List */
.premium-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.premium-features li {
    padding: 0.5rem 0;
    color: #5f6368;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.premium-features li i {
    color: #1a73e8;
    margin-right: 1rem;
    font-size: 0.85rem;
}

/* Buttons */
.btn-premium {
    background-color: #1a73e8;
    color: #ffffff;
    border-radius: 24px;
    padding: 0.75rem 2.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3);
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-premium:hover {
    background-color: #1557b0;
    color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
}

.btn-premium-outline {
    background-color: transparent;
    color: #1a73e8;
    border: 1px solid #dadce0;
    border-radius: 24px;
    padding: 0.75rem 2.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-premium-outline:hover {
    background-color: #f8f9fa;
    border-color: #1a73e8;
    color: #1557b0;
}

/* Stats */
.premium-stat {
    text-align: center;
}

.premium-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.premium-stat .stat-label {
    color: #5f6368;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
