/* ====== GET-IT-Service Hero Styles ====== */
:root {
    --primary-color: #086ad8;
    --primary-dark: #002fa6;
}

.hero-section-get-it {
    background: linear-gradient(135deg, #086ad8 0%, #002fa6 100%);
    color: white;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section-get-it::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: "CerebriSans", Arial, sans-serif;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
    line-height: 1.6;
}

.btn-primary-get-it {
    background-color: white;
    border-color: white;
    color: #086ad8;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "CerebriSans", Arial, sans-serif;
    border: 2px solid white;
    font-size: 1.1rem;
}

.btn-primary-get-it:hover {
    background-color: #086ad8;
    border-color: #086ad8;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(8, 106, 216, 0.3);
}

.btn-primary-get-it i {
    margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section-get-it {
        padding: 80px 0 60px 0;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary-get-it {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section-get-it {
        padding: 60px 0 40px 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Animation */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}